How To Install listadmin on Kali Linux
Introduction
In this tutorial we learn how to install listadmin on Kali Linux.
What is listadmin
listadmin is:
listadmin is a command line tool to manipulate the queues of messages held for moderator approval by mailman. It is designed to keep user interaction to a minimum, in theory you could run it from cron to prune the queue. It can use the score from a header added by SpamAssassin to filter, or it can match specific senders, subjects, or reasons.
There are three methods to install listadmin 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 listadmin Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install listadmin using apt-get by running the following command:
sudo apt-get -y install listadminInstall listadmin Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install listadmin using apt by running the following command:
sudo apt -y install listadminInstall listadmin 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 listadmin using aptitude by running the following command:
sudo aptitude -y install listadminHow To Uninstall listadmin on Kali Linux
To uninstall only the listadmin package we can use the following command:
sudo apt-get remove listadminUninstall listadmin And Its Dependencies
To uninstall listadmin and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove listadminRemove listadmin Configurations and Data
To remove listadmin configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge listadminRemove listadmin configuration, data, and all of its dependencies
We can use the following command to remove listadmin configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge listadminDependencies
listadmin have the following dependencies:
References
Summary
In this tutorial we learn how to install listadmin package on Kali Linux using different package management tools: apt, apt-get and aptitude.