monitorix command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
monitorix: command not found
or when using sudo you get the following error message
sudo: monitorix: command not found
Solutions to monitorix: command not found
How To Fix monitorix: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu monitorix is provided by monitorix package.
monitorix is:
Monitorix is a lightweight tool that allow you to gather and display system metrics.
It consists mainly of two programs: a collector, called monitorix, which is a Perl daemon that is started automatically like any other system service, and a CGI script called monitorix.cgi. Monitorix includes its own HTTP server built in, so you aren’t forced to install a third-party web server to use it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install monitorix
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install monitorix.
sudo apt -y install monitorix
Or if you have aptitude installed you can use the following command.
sudo aptitude install monitorix
Summary
In this tutorial we learn how to fix monitorix command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.