How To Install fuse3 on Fedora 36
Introduction
In this tutorial we learn how to install fuse3
on Fedora 36.
What is fuse3
With FUSE it is possible to implement a fully functional filesystem in a userspace program. This package contains the FUSE v3 userspace tools to mount a FUSE filesystem.
We can use yum
or dnf
to install fuse3
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install fuse3.
Install fuse3 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 fuse3
using dnf
by running the following command:
sudo dnf -y install fuse3
Install fuse3 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 fuse3
using yum
by running the following command:
sudo yum -y install fuse3
How To Uninstall fuse3 on Fedora 36
To uninstall only the fuse3
package we can use the following command:
sudo dnf remove fuse3
fuse3 Package Contents on Fedora 36
/usr/bin/fusermount3
/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/aa51c6fa8347fc28355f4ce82180ece3eee36f
/usr/lib/.build-id/18
/usr/lib/.build-id/18/da34368219ee876e2f60a42aebd59e919a0564
/usr/sbin/mount.fuse3
/usr/share/doc/fuse3
/usr/share/doc/fuse3/AUTHORS
/usr/share/doc/fuse3/ChangeLog.rst
/usr/share/doc/fuse3/README.md
/usr/share/licenses/fuse3
/usr/share/licenses/fuse3/GPL2.txt
/usr/share/licenses/fuse3/LICENSE
/usr/share/man/man1/fusermount3.1.gz
/usr/share/man/man8/mount.fuse3.8.gz
References
Summary
In this tutorial we learn how to install fuse3
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).