Files
cheatsheet-tldr/tldr/linux/grubby
2024-09-19 00:16:36 +00:00

22 lines
522 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# grubby
> Tool for configuring `grub` and `zipl` bootloaders.
> More information: <https://manned.org/grubby.8>.
- Add kernel boot arguments to all kernel menu entries:
`sudo grubby --update-kernel=ALL --args '{{quiet console=ttyS0}}'`
- Remove existing arguments from the entry for the default kernel:
`sudo grubby --update-kernel=DEFAULT --remove-args {{quiet}}`
- List all kernel menu entries:
`sudo grubby --info=ALL`