gmetric command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gmetric: command not found
or when using sudo you get the following error message
sudo: gmetric: command not found
Solutions to gmetric: command not found
How To Fix gmetric: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gmetric is provided by ganglia-monitor package.
ganglia-monitor is:
Ganglia is a scalable, real-time cluster monitoring environment that collects cluster statistics in an open and well-defined XML format.
This package contains the monitor core program.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ganglia-monitor
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ganglia-monitor.
sudo apt -y install ganglia-monitor
Or if you have aptitude installed you can use the following command.
sudo aptitude install ganglia-monitor
Summary
In this tutorial we learn how to fix gmetric command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.