mailgraph command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mailgraph: command not found
or when using sudo you get the following error message
sudo: mailgraph: command not found
Solutions to mailgraph: command not found
How To Fix mailgraph: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mailgraph is provided by mailgraph package.
mailgraph is:
Mailgraph is a very simple mail statistics RRDtool frontend for Postfix, Sendmail or Exim that produces daily, weekly, monthly and yearly graphs of received/sent and bounced/rejected mail.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mailgraph
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mailgraph.
sudo apt -y install mailgraph
Or if you have aptitude installed you can use the following command.
sudo aptitude install mailgraph
Summary
In this tutorial we learn how to fix mailgraph command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.