How To Install fuse3 on Fedora 34

fuse3 is File System in Userspace (FUSE) v3 utilities

Introduction

In this tutorial we learn how to install fuse3 on Fedora 34.

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 34. In this tutorial we discuss both methods but you only need to choose one of method to install fuse3.

Install fuse3 on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install fuse3 using dnf by running the following command:

sudo dnf -y install fuse3

Install fuse3 on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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 34

To uninstall only the fuse3 package we can use the following command:

sudo dnf remove fuse3

fuse3 Package Contents on Fedora 34

/usr/bin/fusermount3
/usr/lib/.build-id
/usr/lib/.build-id/15
/usr/lib/.build-id/15/c4d8f997e7e314ec872e3c02b19a9e4f94f0fa
/usr/lib/.build-id/53
/usr/lib/.build-id/53/e2b9c0d766d25047b74708dca3169420876a06
/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
/usr/bin/fusermount3
/usr/lib/.build-id
/usr/lib/.build-id/90
/usr/lib/.build-id/90/4ccfe36cc379c3d6a7b3505f4a48590a18ba71
/usr/lib/.build-id/fa
/usr/lib/.build-id/fa/4e76aed042d0518f33e845ea86c8ff2871c1a2
/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 34 using yum and dnf.