gfm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gfm: command not found
or when using sudo you get the following error message
sudo: gfm: command not found
Solutions to gfm: command not found
How To Fix gfm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gfm is provided by gfm package.
gfm is:
The GFM is an application allowing to manipulate single/group/tigroup files of all Texas Instruments hand-helds. It can create a new file, open an existing file, save file, rename variables, remove variables, create folders, group files into a group/tigroup file, ungroup a group/tigroup file into single files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gfm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gfm.
sudo apt -y install gfm
Or if you have aptitude installed you can use the following command.
sudo aptitude install gfm
Summary
In this tutorial we learn how to fix gfm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.