How To Install fuse-encfs on Fedora 36

In this tutorial we learn how to install fuse-encfs in Fedora 36. fuse-encfs is Encrypted pass-thru filesystem in userspace

Introduction

In this tutorial we learn how to install fuse-encfs on Fedora 36.

What is fuse-encfs

EncFS implements an encrypted filesystem in userspace using FUSE. FUSE provides a Linux kernel module which allows virtual filesystems to be written in userspace. EncFS encrypts all data and filenames in the filesystem and passes access through to the underlying filesystem. Similar to CFS except that it does not use NFS.

We can use yum or dnf to install fuse-encfs on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install fuse-encfs.

Install fuse-encfs 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 fuse-encfs using dnf by running the following command:

sudo dnf -y install fuse-encfs

Install fuse-encfs 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 fuse-encfs using yum by running the following command:

sudo yum -y install fuse-encfs

How To Uninstall fuse-encfs on Fedora 36

To uninstall only the fuse-encfs package we can use the following command:

sudo dnf remove fuse-encfs

fuse-encfs Package Contents on Fedora 36

/usr/bin/encfs
/usr/bin/encfsctl
/usr/bin/encfssh
/usr/lib/.build-id
/usr/lib/.build-id/29
/usr/lib/.build-id/29/631ec8fe15a78cd27ec041cea9879a63fcb084
/usr/lib/.build-id/5d
/usr/lib/.build-id/5d/62f5c092549d49016b08d70e210cc18ab04a79
/usr/lib/.build-id/ca
/usr/lib/.build-id/ca/66a8e0da74c06ef13a351fea7c76e8617fac96
/usr/lib/libencfs.so.1.9
/usr/lib/libencfs.so.1.9.5
/usr/share/doc/fuse-encfs
/usr/share/doc/fuse-encfs/AUTHORS
/usr/share/doc/fuse-encfs/ChangeLog
/usr/share/doc/fuse-encfs/README.md
/usr/share/licenses/fuse-encfs
/usr/share/licenses/fuse-encfs/COPYING
/usr/share/licenses/fuse-encfs/COPYING.GPL
/usr/share/locale/ar/LC_MESSAGES/encfs.mo
/usr/share/locale/be/LC_MESSAGES/encfs.mo
/usr/share/locale/bg/LC_MESSAGES/encfs.mo
/usr/share/locale/bs/LC_MESSAGES/encfs.mo
/usr/share/locale/ca/LC_MESSAGES/encfs.mo
/usr/share/locale/cs/LC_MESSAGES/encfs.mo
/usr/share/locale/da/LC_MESSAGES/encfs.mo
/usr/share/locale/de/LC_MESSAGES/encfs.mo
/usr/share/locale/de_AT/LC_MESSAGES/encfs.mo
/usr/share/locale/de_CH/LC_MESSAGES/encfs.mo
/usr/share/locale/de_DE/LC_MESSAGES/encfs.mo
/usr/share/locale/el/LC_MESSAGES/encfs.mo
/usr/share/locale/eo/LC_MESSAGES/encfs.mo
/usr/share/locale/es/LC_MESSAGES/encfs.mo
/usr/share/locale/es_ES/LC_MESSAGES/encfs.mo
/usr/share/locale/es_PE/LC_MESSAGES/encfs.mo
/usr/share/locale/et/LC_MESSAGES/encfs.mo
/usr/share/locale/fi/LC_MESSAGES/encfs.mo
/usr/share/locale/fr/LC_MESSAGES/encfs.mo
/usr/share/locale/fr_FR/LC_MESSAGES/encfs.mo
/usr/share/locale/gl/LC_MESSAGES/encfs.mo
/usr/share/locale/he/LC_MESSAGES/encfs.mo
/usr/share/locale/hr/LC_MESSAGES/encfs.mo
/usr/share/locale/hu/LC_MESSAGES/encfs.mo
/usr/share/locale/id/LC_MESSAGES/encfs.mo
/usr/share/locale/it/LC_MESSAGES/encfs.mo
/usr/share/locale/ja/LC_MESSAGES/encfs.mo
/usr/share/locale/ko/LC_MESSAGES/encfs.mo
/usr/share/locale/lv/LC_MESSAGES/encfs.mo
/usr/share/locale/nb/LC_MESSAGES/encfs.mo
/usr/share/locale/nds/LC_MESSAGES/encfs.mo
/usr/share/locale/nl/LC_MESSAGES/encfs.mo
/usr/share/locale/nn/LC_MESSAGES/encfs.mo
/usr/share/locale/oc/LC_MESSAGES/encfs.mo
/usr/share/locale/pl/LC_MESSAGES/encfs.mo
/usr/share/locale/pt/LC_MESSAGES/encfs.mo
/usr/share/locale/pt_BR/LC_MESSAGES/encfs.mo
/usr/share/locale/pt_PT/LC_MESSAGES/encfs.mo
/usr/share/locale/ro/LC_MESSAGES/encfs.mo
/usr/share/locale/ru/LC_MESSAGES/encfs.mo
/usr/share/locale/sk/LC_MESSAGES/encfs.mo
/usr/share/locale/sr/LC_MESSAGES/encfs.mo
/usr/share/locale/sv/LC_MESSAGES/encfs.mo
/usr/share/locale/ta/LC_MESSAGES/encfs.mo
/usr/share/locale/tr/LC_MESSAGES/encfs.mo
/usr/share/locale/uk/LC_MESSAGES/encfs.mo
/usr/share/locale/vi/LC_MESSAGES/encfs.mo
/usr/share/locale/zh_CN/LC_MESSAGES/encfs.mo
/usr/share/locale/zh_HK/LC_MESSAGES/encfs.mo
/usr/share/locale/zh_TW/LC_MESSAGES/encfs.mo
/usr/share/man/man1/encfs.1.gz
/usr/share/man/man1/encfsctl.1.gz
/usr/share/man/man1/encfssh.1.gz

References

Summary

In this tutorial we learn how to install fuse-encfs on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).


title: “How To Install fuse-encfs on Fedora 36” linkTitle: “fuse-encfs” type: “docs” description: “In this tutorial we learn how to install fuse-encfs in Fedora 36. fuse-encfs is Encrypted pass-thru filesystem in userspace” date: “2022-08-17” lastmod: “2022-08-17” #image: /images/fedora/36/fuse-encfs-featured.png

Introduction

In this tutorial we learn how to install fuse-encfs on Fedora 36.

What is fuse-encfs

EncFS implements an encrypted filesystem in userspace using FUSE. FUSE provides a Linux kernel module which allows virtual filesystems to be written in userspace. EncFS encrypts all data and filenames in the filesystem and passes access through to the underlying filesystem. Similar to CFS except that it does not use NFS.

We can use yum or dnf to install fuse-encfs on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install fuse-encfs.

Install fuse-encfs 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 fuse-encfs using dnf by running the following command:

sudo dnf -y install fuse-encfs

Install fuse-encfs 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 fuse-encfs using yum by running the following command:

sudo yum -y install fuse-encfs

How To Uninstall fuse-encfs on Fedora 36

To uninstall only the fuse-encfs package we can use the following command:

sudo dnf remove fuse-encfs

fuse-encfs Package Contents on Fedora 36

/usr/bin/encfs
/usr/bin/encfsctl
/usr/bin/encfssh
/usr/lib/.build-id
/usr/lib/.build-id/58
/usr/lib/.build-id/58/b265f4ab4039046a584805d011929798c0bc82
/usr/lib/.build-id/e2
/usr/lib/.build-id/e2/eef96d894dab6a24b382e18d1c7ac72208fef4
/usr/lib/.build-id/f3
/usr/lib/.build-id/f3/3a327a8c094472598a84d9bf6dfeb1d8188ab5
/usr/lib64/libencfs.so.1.9
/usr/lib64/libencfs.so.1.9.5
/usr/share/doc/fuse-encfs
/usr/share/doc/fuse-encfs/AUTHORS
/usr/share/doc/fuse-encfs/ChangeLog
/usr/share/doc/fuse-encfs/README.md
/usr/share/licenses/fuse-encfs
/usr/share/licenses/fuse-encfs/COPYING
/usr/share/licenses/fuse-encfs/COPYING.GPL
/usr/share/locale/ar/LC_MESSAGES/encfs.mo
/usr/share/locale/be/LC_MESSAGES/encfs.mo
/usr/share/locale/bg/LC_MESSAGES/encfs.mo
/usr/share/locale/bs/LC_MESSAGES/encfs.mo
/usr/share/locale/ca/LC_MESSAGES/encfs.mo
/usr/share/locale/cs/LC_MESSAGES/encfs.mo
/usr/share/locale/da/LC_MESSAGES/encfs.mo
/usr/share/locale/de/LC_MESSAGES/encfs.mo
/usr/share/locale/de_AT/LC_MESSAGES/encfs.mo
/usr/share/locale/de_CH/LC_MESSAGES/encfs.mo
/usr/share/locale/de_DE/LC_MESSAGES/encfs.mo
/usr/share/locale/el/LC_MESSAGES/encfs.mo
/usr/share/locale/eo/LC_MESSAGES/encfs.mo
/usr/share/locale/es/LC_MESSAGES/encfs.mo
/usr/share/locale/es_ES/LC_MESSAGES/encfs.mo
/usr/share/locale/es_PE/LC_MESSAGES/encfs.mo
/usr/share/locale/et/LC_MESSAGES/encfs.mo
/usr/share/locale/fi/LC_MESSAGES/encfs.mo
/usr/share/locale/fr/LC_MESSAGES/encfs.mo
/usr/share/locale/fr_FR/LC_MESSAGES/encfs.mo
/usr/share/locale/gl/LC_MESSAGES/encfs.mo
/usr/share/locale/he/LC_MESSAGES/encfs.mo
/usr/share/locale/hr/LC_MESSAGES/encfs.mo
/usr/share/locale/hu/LC_MESSAGES/encfs.mo
/usr/share/locale/id/LC_MESSAGES/encfs.mo
/usr/share/locale/it/LC_MESSAGES/encfs.mo
/usr/share/locale/ja/LC_MESSAGES/encfs.mo
/usr/share/locale/ko/LC_MESSAGES/encfs.mo
/usr/share/locale/lv/LC_MESSAGES/encfs.mo
/usr/share/locale/nb/LC_MESSAGES/encfs.mo
/usr/share/locale/nds/LC_MESSAGES/encfs.mo
/usr/share/locale/nl/LC_MESSAGES/encfs.mo
/usr/share/locale/nn/LC_MESSAGES/encfs.mo
/usr/share/locale/oc/LC_MESSAGES/encfs.mo
/usr/share/locale/pl/LC_MESSAGES/encfs.mo
/usr/share/locale/pt/LC_MESSAGES/encfs.mo
/usr/share/locale/pt_BR/LC_MESSAGES/encfs.mo
/usr/share/locale/pt_PT/LC_MESSAGES/encfs.mo
/usr/share/locale/ro/LC_MESSAGES/encfs.mo
/usr/share/locale/ru/LC_MESSAGES/encfs.mo
/usr/share/locale/sk/LC_MESSAGES/encfs.mo
/usr/share/locale/sr/LC_MESSAGES/encfs.mo
/usr/share/locale/sv/LC_MESSAGES/encfs.mo
/usr/share/locale/ta/LC_MESSAGES/encfs.mo
/usr/share/locale/tr/LC_MESSAGES/encfs.mo
/usr/share/locale/uk/LC_MESSAGES/encfs.mo
/usr/share/locale/vi/LC_MESSAGES/encfs.mo
/usr/share/locale/zh_CN/LC_MESSAGES/encfs.mo
/usr/share/locale/zh_HK/LC_MESSAGES/encfs.mo
/usr/share/locale/zh_TW/LC_MESSAGES/encfs.mo
/usr/share/man/man1/encfs.1.gz
/usr/share/man/man1/encfsctl.1.gz
/usr/share/man/man1/encfssh.1.gz

References

Summary

In this tutorial we learn how to install fuse-encfs on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).