How To Install libghc-ldap-dev on Kali Linux

In this tutorial we learn how to install libghc-ldap-dev on Kali Linux. libghc-ldap-dev is LDAP Interface for Haskell

Introduction

In this tutorial we learn how to install libghc-ldap-dev on Kali Linux.

What is libghc-ldap-dev

libghc-ldap-dev is:

This package provides an interface to the C LDAP API for Haskell programmers. With it, you can search, modify, and interrogate LDAP directories. The Haskell binding features automatic memory management and proper handling for binary data, and handles all marshalling into and out of C data structures for you automatically.

This package is built for GHC.

There are three methods to install libghc-ldap-dev 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 libghc-ldap-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libghc-ldap-dev using apt-get by running the following command:

sudo apt-get -y install libghc-ldap-dev

Install libghc-ldap-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libghc-ldap-dev using apt by running the following command:

sudo apt -y install libghc-ldap-dev

Install libghc-ldap-dev 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 libghc-ldap-dev using aptitude by running the following command:

sudo aptitude -y install libghc-ldap-dev

How To Uninstall libghc-ldap-dev on Kali Linux

To uninstall only the libghc-ldap-dev package we can use the following command:

sudo apt-get remove libghc-ldap-dev

Uninstall libghc-ldap-dev And Its Dependencies

To uninstall libghc-ldap-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libghc-ldap-dev

Remove libghc-ldap-dev Configurations and Data

To remove libghc-ldap-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libghc-ldap-dev

Remove libghc-ldap-dev configuration, data, and all of its dependencies

We can use the following command to remove libghc-ldap-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libghc-ldap-dev

Dependencies

libghc-ldap-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libghc-ldap-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.