How To Install efifs on CentOS 8
Introduction
In this tutorial we learn how to install efifs
on CentOS 8.
What is efifs
Free software EFI/UEFI standalone file system drivers, based on the GRUB 2.0 read-only drivers exFAT, ext2/ext3/ext4, F2FS (experimental), HFS and HFS+ (Mac OS, including the compression support), ISO9660, JFS (Journaled FileSystem), nilfs2, NTFS (including compression support), ReiserFS, SFS (Amiga Smart FileSystem), UDF, UFS/FFS, UFS2/FFS2, XFS, ZFS and more.
We can use yum
or dnf
to install efifs
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install efifs.
Install efifs on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install efifs
using dnf
by running the following command:
sudo dnf -y install efifs
Install efifs on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install efifs
using yum
by running the following command:
sudo yum -y install efifs
How To Uninstall efifs on CentOS 8
To uninstall only the efifs
package we can use the following command:
sudo dnf remove efifs
efifs Package Contents on CentOS 8
/boot/efi/EFI/efifs
/boot/efi/EFI/efifs/affs.efi
/boot/efi/EFI/efifs/afs.efi
/boot/efi/EFI/efifs/bfs.efi
/boot/efi/EFI/efifs/btrfs.efi
/boot/efi/EFI/efifs/cbfs.efi
/boot/efi/EFI/efifs/cpio.efi
/boot/efi/EFI/efifs/cpio_be.efi
/boot/efi/EFI/efifs/exfat.efi
/boot/efi/EFI/efifs/ext2.efi
/boot/efi/EFI/efifs/f2fs.efi
/boot/efi/EFI/efifs/fat.efi
/boot/efi/EFI/efifs/hfs.efi
/boot/efi/EFI/efifs/hfsplus.efi
/boot/efi/EFI/efifs/iso9660.efi
/boot/efi/EFI/efifs/jfs.efi
/boot/efi/EFI/efifs/minix.efi
/boot/efi/EFI/efifs/minix2.efi
/boot/efi/EFI/efifs/minix2_be.efi
/boot/efi/EFI/efifs/minix3.efi
/boot/efi/EFI/efifs/minix3_be.efi
/boot/efi/EFI/efifs/minix_be.efi
/boot/efi/EFI/efifs/newc.efi
/boot/efi/EFI/efifs/nilfs2.efi
/boot/efi/EFI/efifs/ntfs.efi
/boot/efi/EFI/efifs/odc.efi
/boot/efi/EFI/efifs/procfs.efi
/boot/efi/EFI/efifs/reiserfs.efi
/boot/efi/EFI/efifs/romfs.efi
/boot/efi/EFI/efifs/sfs.efi
/boot/efi/EFI/efifs/squash4.efi
/boot/efi/EFI/efifs/tar.efi
/boot/efi/EFI/efifs/udf.efi
/boot/efi/EFI/efifs/ufs1.efi
/boot/efi/EFI/efifs/ufs1_be.efi
/boot/efi/EFI/efifs/ufs2.efi
/boot/efi/EFI/efifs/xfs.efi
/boot/efi/EFI/efifs/zfs.efi
/usr/share/doc/efifs
/usr/share/doc/efifs/ChangeLog.txt
/usr/share/doc/efifs/README.md
/usr/share/doc/efifs/efifs-enable.sh
/usr/share/licenses/efifs
/usr/share/licenses/efifs/COPYING
/usr/share/licenses/efifs/LICENSE
References
Summary
In this tutorial we learn how to install efifs
on CentOS 8 using yum and dnf.