fcm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fcm: command not found
or when using sudo you get the following error message
sudo: fcm: command not found
Solutions to fcm: command not found
How To Fix fcm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fcm is provided by fcm package.
fcm is:
FCM is a set of tools for managing and building source code. FCM uses Subversion for code management but defines a common process and naming convention to simplify usage. It adds a layer on top of Subversion to provide a more natural and user-friendly interface.
FCM features a powerful build system, mainly aimed at building modern Fortran software applications.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fcm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fcm.
sudo apt -y install fcm
Or if you have aptitude installed you can use the following command.
sudo aptitude install fcm
Summary
In this tutorial we learn how to fix fcm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.