Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
linux/bootctl Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# bootctl
> Control EFI firmware boot settings and manage boot loader.
> More information: <https://manned.org/bootctl>.
- Show information about the system firmware and the bootloaders:
`bootctl status`
- Show all available bootloader entries:
`bootctl list`
- Set a flag to boot into the system firmware on the next boot (similar to `sudo systemctl reboot --firmware-setup`):
`sudo bootctl reboot-to-firmware true`
- Specify the path to the EFI system partition (defaults to `/efi/`, `/boot/` or `/boot/efi`):
`bootctl --esp-path={{/path/to/efi_system_partition/}}`
- Install `systemd-boot` into the EFI system partition:
`sudo bootctl install`
- Remove all installed versions of `systemd-boot` from the EFI system partition:
`sudo bootctl remove`