afsd.fuse command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
afsd.fuse: command not found
or when using sudo you get the following error message
sudo: afsd.fuse: command not found
Solutions to afsd.fuse: command not found
How To Fix afsd.fuse: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu afsd.fuse is provided by openafs-fuse package.
openafs-fuse is:
AFS is a distributed filesystem allowing cross-platform sharing of files among multiple computers. Facilities are provided for access control, authentication, backup and administrative management.
This package provides an experimental FUSE implementation of the AFS client as afsd.fuse. This currently only provides read-only access to AFS, doesn’t work with all of the normal AFS client programs, and must be started manually, but may be of interest in situations where read-only access is sufficient and the kernel module cannot be built.
To fix this problem, we can install more using the command below.
sudo apt-get -y install openafs-fuse
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install openafs-fuse.
sudo apt -y install openafs-fuse
Or if you have aptitude installed you can use the following command.
sudo aptitude install openafs-fuse
Summary
In this tutorial we learn how to fix afsd.fuse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.