Views:
2,302
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:
September 15, 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