How To Install fuse-libs on Rocky Linux 8
Introduction
In this tutorial we learn how to install fuse-libs
on Rocky Linux 8.
What is fuse-libs
Devel With FUSE it is possible to implement a fully functional filesystem in a userspace program. This package contains the FUSE v2 libraries.
We can use yum
or dnf
to install fuse-libs
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install fuse-libs.
Install fuse-libs on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install fuse-libs
using dnf
by running the following command:
sudo dnf -y install fuse-libs
Install fuse-libs on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install fuse-libs
using yum
by running the following command:
sudo yum -y install fuse-libs
How To Uninstall fuse-libs on Rocky Linux 8
To uninstall only the fuse-libs
package we can use the following command:
sudo dnf remove fuse-libs
fuse-libs Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/d6e3f14592dfe67b8cda65d8c6199fe8df1b74
/usr/lib/.build-id/cf
/usr/lib/.build-id/cf/f7e5b3812122293c26518de4a50c9bcc66587f
/usr/lib/libfuse.so.2
/usr/lib/libfuse.so.2.9.7
/usr/lib/libulockmgr.so.1
/usr/lib/libulockmgr.so.1.0.1
/usr/share/licenses/fuse-libs
/usr/share/licenses/fuse-libs/COPYING.LIB
/usr/lib/.build-id
/usr/lib/.build-id/e5
/usr/lib/.build-id/e5/69ca9af73a17d36bf772cb6db83d42c25abe2a
/usr/lib/.build-id/f1
/usr/lib/.build-id/f1/0b99005115c27562261c232982727d7dfbee2f
/usr/lib64/libfuse.so.2
/usr/lib64/libfuse.so.2.9.7
/usr/lib64/libulockmgr.so.1
/usr/lib64/libulockmgr.so.1.0.1
/usr/share/licenses/fuse-libs
/usr/share/licenses/fuse-libs/COPYING.LIB
References
Summary
In this tutorial we learn how to install fuse-libs
on Rocky Linux 8 using yum and dnf.