How To Install mrtgutils on Kali Linux
Introduction
In this tutorial we learn how to install mrtgutils on Kali Linux.
What is mrtgutils
mrtgutils is:
MRTGutils is a collection of simple utilities to generate output useful for mrtg. Many of the existing mrtg setups use shell or perl scripts to gather output. On busy systems, these scripts can generate a lot of extra load. These (small) C programs can return the given statistics more efficiently.
This package provides the following binaries that return:
- mrtg-load: the current load average (5-minute average)
- mrtg-ip-acct: the number of IP packets that have traversed an interface
- mrtg-apache: the number of hits to a Apache web site
There are three methods to install mrtgutils on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install mrtgutils Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install mrtgutils using apt-get by running the following command:
sudo apt-get -y install mrtgutilsInstall mrtgutils Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install mrtgutils using apt by running the following command:
sudo apt -y install mrtgutilsInstall mrtgutils Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install mrtgutils using aptitude by running the following command:
sudo aptitude -y install mrtgutilsHow To Uninstall mrtgutils on Kali Linux
To uninstall only the mrtgutils package we can use the following command:
sudo apt-get remove mrtgutilsUninstall mrtgutils And Its Dependencies
To uninstall mrtgutils and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove mrtgutilsRemove mrtgutils Configurations and Data
To remove mrtgutils configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge mrtgutilsRemove mrtgutils configuration, data, and all of its dependencies
We can use the following command to remove mrtgutils configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mrtgutilsDependencies
mrtgutils have the following dependencies:
References
Summary
In this tutorial we learn how to install mrtgutils package on Kali Linux using different package management tools: apt, apt-get and aptitude.