diff --git a/pages/linux/grubby.md b/pages/linux/grubby.md new file mode 100644 index 000000000..0e2639de1 --- /dev/null +++ b/pages/linux/grubby.md @@ -0,0 +1,16 @@ +# grubby + +> Tool for configuring `grub` and `zipl` bootloaders. +> More information: . + +- 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`