Ubuntu – How to hide the GRUB menu showing up at the beginning of boot

bootdual-bootgrub2

I stopped dual booting and I don't want to have to choose the OS any more. I want to boot into Ubuntu 12.04 directly without seeing the GRUB menu.

How can I achieve that?

Best Answer

You can just change grub settings.

type in terminal

sudo -H gedit /etc/default/grub

you need to change this

Change GRUB_HIDDEN_TIMEOUT_QUIET=false to

GRUB_HIDDEN_TIMEOUT_QUIET=true

Save the file and exit

Type sudo update-grub

If you don't get the result you want, see this bug.

Related Question