HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

grub-reboot — Set the default boot entry for GRUB, for the next boot only. More information: <https://manned.org/g

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandbootcligrub-rebootentrysetdefault
linux

Problem

How to use the grub-reboot command: Set the default boot entry for GRUB, for the next boot only. More information: <https://manned.org/grub-reboot>.

Solution

grub-reboot — Set the default boot entry for GRUB, for the next boot only. More information: <https://manned.org/grub-reboot>.

Set the default boot entry to an entry number, name, or identifier for the next boot:
sudo grub-reboot {{entry_number}}


Set the default boot entry to an entry number, name, or identifier for an alternative boot directory for the next boot:
sudo grub-reboot --boot-directory /{{path/to/boot_directory}} {{entry_number}}

Code Snippets

Set the default boot entry to an entry number, name, or identifier for the next boot

sudo grub-reboot {{entry_number}}

Set the default boot entry to an entry number, name, or identifier for an alternative boot directory for the next boot

sudo grub-reboot --boot-directory /{{path/to/boot_directory}} {{entry_number}}

Context

tldr-pages: linux/grub-reboot

Revisions (0)

No revisions yet.