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.
GRUB_HIDDEN_TIMEOUT_QUIET
should be settrue
– Kulfy Jan 31 '19 at 17:15