How To Install libapache-authznetldap-perl on Kali Linux
Introduction
In this tutorial we learn how to install libapache-authznetldap-perl on Kali Linux.
What is libapache-authznetldap-perl
libapache-authznetldap-perl is:
After you have authenticated a user (perhaps with Apache::AuthNetLDAP ;) you can use Apache::AuthzNetLDAP to determine whether they are authorized to access the Web resource under this modules control.
You can control authorization via one of four methods. The first two are the pretty standard user and valid-user require, the second two are group or ldap-url which are unique to LDAP.
There are three methods to install libapache-authznetldap-perl 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 libapache-authznetldap-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libapache-authznetldap-perl using apt-get by running the following command:
sudo apt-get -y install libapache-authznetldap-perlInstall libapache-authznetldap-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libapache-authznetldap-perl using apt by running the following command:
sudo apt -y install libapache-authznetldap-perlInstall libapache-authznetldap-perl 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 libapache-authznetldap-perl using aptitude by running the following command:
sudo aptitude -y install libapache-authznetldap-perlHow To Uninstall libapache-authznetldap-perl on Kali Linux
To uninstall only the libapache-authznetldap-perl package we can use the following command:
sudo apt-get remove libapache-authznetldap-perlUninstall libapache-authznetldap-perl And Its Dependencies
To uninstall libapache-authznetldap-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libapache-authznetldap-perlRemove libapache-authznetldap-perl Configurations and Data
To remove libapache-authznetldap-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libapache-authznetldap-perlRemove libapache-authznetldap-perl configuration, data, and all of its dependencies
We can use the following command to remove libapache-authznetldap-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libapache-authznetldap-perlDependencies
libapache-authznetldap-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libapache-authznetldap-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.