How to increase grub timeout (UEFI)?

Hi,
I want to increase the timeout in the grub boot-menu (on an UEFI machine with several OSs).
I’m used to grub-customizer on Ubuntu, but I’ve read that is deprecated in Manjaro, because it somehow conflicts with the system’s boot-configuration.

How do I do that in a way that

  1. it doesn’t conflict with the Manjaro boot configuration?
  2. it doesn’t get overwritten later by Manjaro?

Greetings
Peter

Just edit the file /etc/default/grub:

These are first few lines:

GRUB_DEFAULT=saved
GRUB_TIMEOUT=5
GRUB_TIMEOUT_STYLE=show
GRUB_DISTRIBUTOR="Manjaro"
GRUB_CMDLINE_LINUX_DEFAULT="quiet udev.log_priority=3"
GRUB_CMDLINE_LINUX=""

Set GRUB_TIMEOUT to the desired value.

Thanks. That did help me to find a way to configure grub.

But unfortunately only editing this file didn’t change the boot menu. I think I must envoke some command like grub-install or similar. But I’m afraid to do that because this is not a Legacy BIOS PC, it’s UEFI!

You have to run update-grub after changing the file.

2 Likes

Thanks to both of you. That did work!

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.