How To Install fuse-common on AlmaLinux 8
In this tutorial we learn how to install fuse-common in AlmaLinux 8. fuse-common is Common files for File System in Userspace (FUSE) v2 and v3
Introduction
In this tutorial we learn how to install fuse-common
on AlmaLinux 8.
What is fuse-common
Common files for FUSE v2 and FUSE v3.
We can use yum
or dnf
to install fuse-common
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install fuse-common.
Install fuse-common on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install fuse-common
using dnf
by running the following command:
sudo dnf -y install fuse-common
Install fuse-common on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install fuse-common
using yum
by running the following command:
sudo yum -y install fuse-common
How To Uninstall fuse-common on AlmaLinux 8
To uninstall only the fuse-common
package we can use the following command:
sudo dnf remove fuse-common
References
Summary
In this tutorial we learn how to install fuse-common
on AlmaLinux 8 using yum and dnf.