Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. Open the file /etc/default/grub with sudo permission.

     sudo vim /etc/default/grub
  2. Update the value assigned to GRUB_TIMEOUT to a smaller one (e.g., 3). Notice that the time unit is second.

     :::text
     GRUB_TIMEOUT=3
  3. Update the value assigned to GRUB_RECORDFAIL_TIMEOUT to $GRUB_TIMEOUT.

     :::bash
     GRUB_RECORDFAIL_TIMEOUT=$GRUB_TIMEOUT
  4. Update the GRUB.

     :::bash
     sudo update-grub

References