2

When resuming from hibernate state, my computer waits at the GRUB screen for 30 seconds, which is different from the custom timeout that I have set by editing the grub configuration file.

The custom timeout works properly for normal boot from complete shutdown but waits as stated above while resuming from hibernate state.

How can I set same timeout for resuming from hibernate?

Yaksha
  • 1,740

1 Answers1

2

This can be solved by adding the following line to the Grub configuration file:

GRUB_RECORDFAIL_TIMEOUT=N

Put N=timeout that you want when resuming from hibernate

Answer Source: https://serverfault.com/a/598805/439371 and https://askubuntu.com/a/251920

Complete steps:

  • sudo gedit /etc/default/grub

  • Add this line at the end of the file, save the file and close gedit (Set N to the desired timeout):

    GRUB_RECORDFAIL_TIMEOUT=N.

  • sudo update-grub

Yaksha
  • 1,740