fosmount command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fosmount: command not found
or when using sudo you get the following error message
sudo: fosmount: command not found
Solutions to fosmount: command not found
How To Fix fosmount: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fosmount is provided by fosfat package.
fosfat is:
Fosfat is a C library for providing read-only access to a Smaky formatted disk. Currently, only a tool and a FUSE extension that use this library can be used for reading a directory and copying a file.
The Smaky is a line of mostly 8-bit personal computers and accompanying operating system developed at the EPFL (École Polytechnique Federale de Lausanne), in Switzerland, from 1974.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fosfat
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fosfat.
sudo apt -y install fosfat
Or if you have aptitude installed you can use the following command.
sudo aptitude install fosfat
Summary
In this tutorial we learn how to fix fosmount command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.