How To Install logapp on Kali Linux
Introduction
In this tutorial we learn how to install logapp on Kali Linux.
What is logapp
logapp is:
Logapp is a wrapper utility that helps supervise the execution of applications that produce heavy console output (e.g. make, CVS and Subversion). It does this by logging, trimming, and coloring each line of the output before displaying it. It can be called instead of the executable that should be monitored; it then starts the application and logs all of its console output to a file. The output shown in the terminal is preprocessed, e.g. to limit the length of printed lines and to show the stderr output in a different color. It is also possible to automatically highlight lines that match a certain regular expression. The output is therefore reduced to the necessary amount, and all important lines are easy to identify.
There are three methods to install logapp 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 logapp Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install logapp using apt-get by running the following command:
sudo apt-get -y install logappInstall logapp Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install logapp using apt by running the following command:
sudo apt -y install logappInstall logapp 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 logapp using aptitude by running the following command:
sudo aptitude -y install logappHow To Uninstall logapp on Kali Linux
To uninstall only the logapp package we can use the following command:
sudo apt-get remove logappUninstall logapp And Its Dependencies
To uninstall logapp and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove logappRemove logapp Configurations and Data
To remove logapp configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge logappRemove logapp configuration, data, and all of its dependencies
We can use the following command to remove logapp configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge logappDependencies
logapp have the following dependencies:
References
Summary
In this tutorial we learn how to install logapp package on Kali Linux using different package management tools: apt, apt-get and aptitude.