How to enable boot timeout in Grub2

grub

I'm am trying to enable the boot timeout selection in grub2 on Ubuntu 9.10.

I modified /etc/default/grub:

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

and ran update-grub, but I still do not have a boot timeout counter. What else can you do to enable this?

Best Answer

Answer taken from http://ubuntuforums.org/showthread.php?t=1373965

at the end of your /etc/grub.d/00_header file, comment out the if condition except for the regular set timeout line like this:

#if [ \${recordfail} = 1 ]; then
#  set timeout=-1
#else
  set timeout=${GRUB_TIMEOUT}
#fi

run update-grub to regenerate the grub.cfg with the new settings:

sudo update-grub

reboot, now it should always boot the default option after the timeout, even if the previous boot failed.

Related Question