From dcdcbf1f01f3bd05b8b8e493861a1212b1419637 Mon Sep 17 00:00:00 2001 From: hau Date: Mon, 28 Sep 2020 22:09:35 +0700 Subject: [PATCH] add efibootmgr --- Applications/System/efibootmgr.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Applications/System/efibootmgr.md diff --git a/Applications/System/efibootmgr.md b/Applications/System/efibootmgr.md new file mode 100644 index 0000000..77ef682 --- /dev/null +++ b/Applications/System/efibootmgr.md @@ -0,0 +1,18 @@ +# [efibootmgr](https://github.com/rhboot/efibootmgr) + +| Distribution | Package | +| ------------ | ------------ | +| Arch Linux | `efibootmgr` | +| Ubuntu | `efibootmgr` | + +Display current Boot Manager settings: + +```sh +efibootmgr +``` + +Delete boot entry 7th: + +```sh +efibootmgr -b 7 -B +```