Ubuntu – How to alter/customize the GRUB boot menu for Ubuntu 12.10

12.10grub2

I use a shared computer, so I need to make it user friendly for my-less-than-computer-knowledgable friend

currently have Ubuntu 12.10 installed

I would like to change the GRUB menu so that Windows 7 is at the top of the list (thus allowing the automatic timeout to automatically select it on startup) and Ubuntu down below

I've already used the information used at { How do I change the GRUB boot order? } and that didn't work.

Best Answer

You can change the default boot by editing the grub config:

sudo nano /etc/default/grub

Change the line *GRUB_DEFAULT=0* so that it reflects which grub boot line is the one you want to boot off: eg *GRUB_DEFAULT=2* etc.

You will then need to update the grub boot menu so that this change takes effect:

sudo update-grub

Having to select the correct OS from a men is hardly unfriendly, but if you really have to...

Related Question