Saya memiliki 2 system operasi yaitu WIndows 8 dan Linux pepermint 6 dan ketika booting default booting yang terinstall oleh grub linux adalah pilihan pertama di linux pepermint, nah karena rasanya lebih mudah dan familiar menggunakan windows 8, maka saya ingin merubah urutan booting grub supaya windows 8 ada di urutan pertama sebagai default. Caranya adalah sebagai berikut :
1. Buka terminal window di menu
2. Ketik " gksudo gedit /boot/grub/grub.cfg "
3. Setelah terbuka file grub.cfg kemudian cari kata "Windows " untuk menemukan entry booting windows.
4. Blok command menu list windows ini :
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-BC35-627D' {
insmod part_gpt
insmod fat
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 BC35-627D
else
search --no-floppy --fs-uuid --set=root BC35-627D
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
5. Cari command booting Linux
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
.
.
.
.
.
Sampai ketemu command :
### END /etc/grub.d/10_linux ###
6. Copy pastekan command booting windows diatas command list booting linux
7. Tutup dan simpan Grub.cfg
8. Jalankan command " sudo update-grub " untuk update grub.cfg
9. Restart Komputer/Laptop anda