1

gedit /etc/default/grub output is:

GRUB_DEFAULT=0
GRUB_TIMEOUT=4
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
GRUB_CMDLINE_LINUX=""

Let me know if u need more output. This happens like 1 out of 5 times. But I do not want this to happen anymore. Any help would be appreciated.

Pranav
  • 1,200

1 Answers1

3

It happens on hard reset or forced reboot.

The value of 30 seconds is set in /etc/grub.d/00_header

  set timeout=${GRUB_RECORDFAIL_TIMEOUT:-30}

If you want to change it, you have to specify your own value in /etc/default/grub

sudo editor /etc/default/grub

Add new line:

GRUB_RECORDFAIL_TIMEOUT=4

and update grub:

update-grub2
Comar
  • 1,485
  • thanks. I hope this works. Is there a way to confirm this? – Pranav May 18 '19 at 16:14
  • possibly by holding power button down until PC goes off, but I don't recommend it, since this can mess your hard drive or filesystem – Comar May 18 '19 at 19:11