Views:
11,179
Votes: 7
Tags:
boot
dual-boot
grub2
15.04
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1189649
Title:
Grub wait time 10 seconds after editing to "0" in /etc/default/grub?
ID:
/2019/11/18/Grub-wait-time-10-seconds-after-editing-to-_0_-in-_etc_default_grub_
Created:
November 18, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
There is an override in grub for when the timeout is 0 seconds to replace it with 10 seconds. Rather than editing grub scripts as other answers recommend you can simply use:
GRUB_HIDDEN_TIMEOUT="0.0"
GRUB_TIMEOUT="0.0"
This will work because the grub overrides will not find "0"
to be equal to "0.0"
.