0

Recently I temporarily had to use F10 to choose between two drives at startup, one Windoze 10, and one Ubuntu 20.04.6. A few days later I had my mechanical switching re-set up, and dispensed with the F10 at boot.

BUT now, without my making any changes, either before or after the use of F10 to select, a screen called GNU-Grub appears, which I wait for until it disappears and normal Ubuntu boot takes place.

Neither Windoze nor any other OS except Ubuntu is on this hard drive, and never has been.

How do I make the system revert to a normal boot WITHOUT the GNU-Grub screen?

Thanks !!!

1 Answers1

0

GNU GRUB[1] is a boot loader used to load Linux(including Ubuntu). While in GRUB menu, you can always hit enter to choose selected OS right away. Or you can update GRUB configuration with the value of GRUB_TIMEOUT set to 0 [2][3]. But keep in mind after changing GRUB configuration, GRUB will boot default choice immediately.

To edit grub configuration file run

sudo su
vim /etc/default/grub # replace vim with your text editor

then set GRUB_TIMEOUT=0. Then save the file and run

update-grub # this will update the changes for GRUB

[1] https://en.wikipedia.org/wiki/GNU_GRUB

[2] How do I set the grub timeout and the grub default boot entry?

[3] https://www.gnu.org/software/grub/manual/grub/html_node/Simple-configuration.html#Simple-configuration

davidt930
  • 197
  • 5