How To Install efibootmgr on Fedora 36
Introduction
In this tutorial we learn how to install efibootmgr
on Fedora 36.
What is efibootmgr
efibootmgr displays and allows the user to edit the Intel Extensible Firmware Interface (EFI) Boot Manager variables. Additional information about EFI can be found at https
We can use yum
or dnf
to install efibootmgr
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install efibootmgr.
Install efibootmgr on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install efibootmgr
using dnf
by running the following command:
sudo dnf -y install efibootmgr
Install efibootmgr on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install efibootmgr
using yum
by running the following command:
sudo yum -y install efibootmgr
How To Uninstall efibootmgr on Fedora 36
To uninstall only the efibootmgr
package we can use the following command:
sudo dnf remove efibootmgr
efibootmgr Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/16
/usr/lib/.build-id/16/738ee295a9f3bf90168af74d435847dc44dd05
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/9cad498c4f7fdc993d0d7d74d2e67eb4f7f050
/usr/sbin/efibootdump
/usr/sbin/efibootmgr
/usr/share/doc/efibootmgr
/usr/share/doc/efibootmgr/README
/usr/share/licenses/efibootmgr
/usr/share/licenses/efibootmgr/COPYING
/usr/share/man/man8/efibootdump.8.gz
/usr/share/man/man8/efibootmgr.8.gz
References
Summary
In this tutorial we learn how to install efibootmgr
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).