gfsd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gfsd: command not found
or when using sudo you get the following error message
sudo: gfsd: command not found
Solutions to gfsd: command not found
How To Fix gfsd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gfsd is provided by gfsd package.
gfsd is:
The Gfarm file system is designed to turn commodity PCs into nodes of a distributed storage network, implementing the Grid Datafarm architecture for global petascale data-intensive computing. It solves performance and reliability problems in NFS and AFS by means of multiple file replicas, and not only prevents performance degradation due to access concentration, but also supports fault tolerance and disaster recovery.
This package provides the Gfarm file system daemon, which equips a host to function as a storage node for the network.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gfsd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gfsd.
sudo apt -y install gfsd
Or if you have aptitude installed you can use the following command.
sudo aptitude install gfsd
Summary
In this tutorial we learn how to fix gfsd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.