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,729
  • GRUB_HIDDEN_TIMEOUT_QUIET should be set true – Kulfy Jan 31 '19 at 17:15
  • This seems like a duplicate but it's a bug. The latest grub2 updated introduces this bug. It has been reported, a fixed has been created, and soon it'll come for everybody. Check out https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1814403 – Felipe Feb 07 '19 at 22:35

2 Answers2

2

Change

GRUB_HIDDEN_TIMEOUT_QUIET=true

and run

sudo update-grub  
Pilot6
  • 90,100
  • 91
  • 213
  • 324
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,729