mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
538 B
Plaintext
22 lines
538 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# grub-editenv
|
|
|
|
> Edit GRUB environment variables.
|
|
> More information: <https://www.gnu.org/software/grub/manual/grub/grub.html>.
|
|
|
|
- Set a default boot entry (Assuming the boot entry already exists):
|
|
|
|
`grub-editenv /boot/grub/grubenv set default={{Ubuntu}}`
|
|
|
|
- Display all GRUB environment variables:
|
|
|
|
`grub-editenv /boot/grub/grubenv list`
|
|
|
|
- Reset the `saved_entry` variable to the default:
|
|
|
|
`grub-editenv /boot/grub/grubenv unset saved_entry`
|