Skip to content

Instantly share code, notes, and snippets.

@tarampampam
Last active January 9, 2024 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarampampam/2ffd2a85661d693aee0ad83fa9d2df4f to your computer and use it in GitHub Desktop.
Save tarampampam/2ffd2a85661d693aee0ad83fa9d2df4f to your computer and use it in GitHub Desktop.
Disabling grub timeout (Linux Mint 20.x and older)

Edit file:

$ sudo nano /etc/default/grub

Set (update) next values:

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISABLE_OS_PROBER=true

And execute:

$ sudo update-grub

Plus you may need to edit the /etc/default/grub.d/50_linuxmint.cfg file:

-GRUB_DISABLE_OS_PROBER=false
+#GRUB_DISABLE_OS_PROBER=false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment