How To Install exim4-config on Kali Linux
Introduction
In this tutorial we learn how to install exim4-config
on Kali Linux.
What is exim4-config
exim4-config is:
Exim (v4) is a mail transport agent. exim4-config provides the configuration for the exim4 daemon packages. The configuration framework has been split off the main package to allow sites to replace the configuration scheme with their own without having to change the actual exim4 packages.
Sites with special configuration needs (having a lot of identically configured machines for example) can use this to distribute their own custom configuration via the packaging system, using the magic available with dpkg’s conffile handling, without having to do local changes on all of these machines.
The Debian exim4 packages have their own web page, http://wiki.debian.org/PkgExim4. There is also a Debian-specific FAQ list. Information about the way the Debian packages are configured can be found in /usr/share/doc/exim4-base/README.Debian.gz, which additionally contains information about the way the Debian binary packages are built. The very extensive upstream documentation is shipped in /usr/share/doc/exim4-base/spec.txt.gz. To repeat the debconf-driven configuration process in a standard setup, invoke dpkg-reconfigure exim4-config. There is a Debian-centered mailing list, [email protected]. Please ask Debian-specific questions there, and only write to the upstream exim-users mailing list if you are sure that your question is not Debian-specific. You can find the subscription web page on http://lists.alioth.debian.org/mailman/listinfo/pkg-exim4-users
There are three methods to install exim4-config
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 exim4-config Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install exim4-config
using apt-get
by running the following command:
sudo apt-get -y install exim4-config
Install exim4-config Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install exim4-config
using apt
by running the following command:
sudo apt -y install exim4-config
Install exim4-config 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 update
After updating apt database, We can install exim4-config
using aptitude
by running the following command:
sudo aptitude -y install exim4-config
How To Uninstall exim4-config on Kali Linux
To uninstall only the exim4-config
package we can use the following command:
sudo apt-get remove exim4-config
Uninstall exim4-config And Its Dependencies
To uninstall exim4-config
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove exim4-config
Remove exim4-config Configurations and Data
To remove exim4-config
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge exim4-config
Remove exim4-config configuration, data, and all of its dependencies
We can use the following command to remove exim4-config
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge exim4-config
Dependencies
exim4-config have the following dependencies:
References
Summary
In this tutorial we learn how to install exim4-config
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.