3

With GRUB 2, you seem to be able to hide the startup menu (unless someone presses a certain button). But unfortunately grub disables this for multi-OS systems, I've looked up a few other pages.

But after one which made me have to re-install Ubuntu, I gave up. Does anyone know how this can be done on Ubuntu 12.04?

Thatcoolguy
  • 37
  • 1
  • 5

2 Answers2

2

I was trying to do the same and I found great help in the Ubuntu Forums, particularly in this thread.

Assuming you did the right thing with /etc/default/grub, correctly setting GRUB_TIMEOUT and #GRUB_HIDDEN_TIMEOUT (I'd say respectively to 0 and 5) and even GRUB_DEFAULT to specify the default image to boot, here's the procedure to have it work the right way.

  1. Add those lines

    GRUB_FORCE_HIDDEN_MENU="true"
    export GRUB_FORCE_HIDDEN_MENU
    

    to the end of /etc/default/grub

  2. Backup your /etc/grub.d/30_os-prober and overwrite it with the version found here.

  3. Run the command: sudo update-grub to update the settings.

  4. Test it! To show the menu you have to hold the SHIFT key at startup.

This problem is related to the multi OS setup and editing the script is one of the way to correct that.

PS: This answer is exatcly the same given to another identical question

Dariopnc
  • 417
0

I provided a new workaround at the original question posted here. Hope it helps.

tux1c
  • 194