mono-fpm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mono-fpm: command not found
or when using sudo you get the following error message
sudo: mono-fpm: command not found
Solutions to mono-fpm: command not found
How To Fix mono-fpm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mono-fpm is provided by mono-fpm-server package.
mono-fpm-server is:
mono-fpm-server contains the backend for FPM. It lets you run ASP.NET web applications via HTTP servers such as Lighttpd or Apache. The FastCGI webserver shouldbe configured to run fastcgi-mono-server to parse and compile the aspx code.
This package requires you to install any FPM webserver, such as Lighttpd or Apache (see libapache2-mod-fastcgi).
To fix this problem, we can install more using the command below.
sudo apt-get -y install mono-fpm-server
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mono-fpm-server.
sudo apt -y install mono-fpm-server
Or if you have aptitude installed you can use the following command.
sudo aptitude install mono-fpm-server
Summary
In this tutorial we learn how to fix mono-fpm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.