0

My /etc/default/grub on Ubuntu 18.10 (no dualboot) looks like this:

GRUB_DEFAULT="0"
GRUB_HIDDEN_TIMEOUT="0"
GRUB_HIDDEN_TIMEOUT_QUIET="false"
GRUB_TIMEOUT="0"
GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

I am still seeing the grub menu every time I boot and it stays until I select 'ubuntu' and hit enter. No timeout. I just want the machine to boot the first kernel entry without any delay. What am I missing?

I did change GRUB_HIDDEN_TIMEOUT_QUIET="false" to GRUB_HIDDEN_TIMEOUT_QUIET="true" but I still see the menu.

Christian
  • 1,789
  • 2
  • 22
  • 38

2 Answers2

2

Change

GRUB_HIDDEN_TIMEOUT_QUIET=true

and run

sudo update-grub  
Pilot6
  • 92,041
0

I've been digging a bit deeper and found that this prevents the menu from showing:

GRUB_DEFAULT=0
GRUB_TIMEOUT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
GRUB_DISABLE_OS_PROBER=true
GRUB_RECORDFAIL_TIMEOUT=0
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
Christian
  • 1,789
  • 2
  • 22
  • 38