Files
cheatsheet-tldr/tldr/linux/grub-editenv
2025-08-01 00:25:01 +00:00

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`