The Cookie Machine - Click here to drag window

DUMMY TEXT - Real text set in assets/js/theCookieMachine.js

If you can read me, I'm broken!

Views: 2,105     Votes:  1     ✅ Solution
Tag : grub2  
Link: 🔍 See Original Answer on Ask Ubuntu ⧉ 🔗

URL: https://askubuntu.com/q/1156431
Title: Ubuntu show grub boot menu and do not auto boot?
ID: /2019/07/06/Ubuntu-show-grub-boot-menu-and-do-not-auto-boot_
Created: July 6, 2019    Edited:  July 6, 2019
Upload: April 8, 2024    Layout:  post
TOC: false    Navigation:  false    Copy to clipboard:  false


What you tried:

sudo nano /etc/default/grub
GRUB_TIMEOUT=0

Then run sudo update-grub

Does not work because grub automatically changes a time out of zero to 10. What you need to do is this:

sudo nano /etc/default/grub
GRUB_RECORDFAIL_TIMEOUT=0.1
GRUB_TIMEOUT=0.1

Then run sudo update-grub

⇧ How I can monitor for new files in a directory and drop a mail if files are not added every 30 mins? Run Bash scripts in folder all at the same time  ⇩