1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 04:06:04 +02:00
tldr/pages/linux/efibootmgr.md
marchersimon dac4a71077
multiple pages: replace all die.net links (#5528)
Most of the links were replaced by manned.org,
except when there are more up-to-date sources (like `ifup`)
or first-party sources (like `sftp`).
2021-04-16 15:42:14 +01:00

24 lines
495 B
Markdown

# efibootmgr
> Manipulate the UEFI Boot Manager (the Bootoptions).
> More information: <https://manned.org/efibootmgr>.
- List the current settings / bootnums:
`efibootmgr`
- List the filepaths:
`efibootmgr -v`
- Add UEFI Shell v2 as a boot option:
`sudo efibootmgr -c -d {{/dev/sda1}} -l {{\EFI\tools\Shell.efi}} -L "{{UEFI Shell}}"`
- Change the current boot order:
`sudo efibootmgr -o {{0002,0008,0001,0005}}`
- Delete a boot option:
`sudo efibootmgr -b {{0008}} --delete-bootnum`