gfarm2fs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gfarm2fs: command not found
or when using sudo you get the following error message
sudo: gfarm2fs: command not found
Solutions to gfarm2fs: command not found
How To Fix gfarm2fs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gfarm2fs is provided by gfarm2fs package.
gfarm2fs is:
gfarm2fs is a FUSE client to provide access to the Gfarm file system.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gfarm2fs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gfarm2fs.
sudo apt -y install gfarm2fs
Or if you have aptitude installed you can use the following command.
sudo aptitude install gfarm2fs
Summary
In this tutorial we learn how to fix gfarm2fs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.