How To Install libell-dev on Kali Linux
Introduction
In this tutorial we learn how to install libell-dev on Kali Linux.
What is libell-dev
libell-dev is:
The Embedded Linux library (aka. ell) provides table, queues, ring buffers, cryptographic, and some functions for Embedded Devices.
This package contains what you need for compiling sources that use this library in your own code.
There are three methods to install libell-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 libell-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libell-dev using apt-get by running the following command:
sudo apt-get -y install libell-devInstall libell-dev Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libell-dev using apt by running the following command:
sudo apt -y install libell-devInstall libell-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 updateAfter updating apt database, We can install libell-dev using aptitude by running the following command:
sudo aptitude -y install libell-devHow To Uninstall libell-dev on Kali Linux
To uninstall only the libell-dev package we can use the following command:
sudo apt-get remove libell-devUninstall libell-dev And Its Dependencies
To uninstall libell-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libell-devRemove libell-dev Configurations and Data
To remove libell-dev configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libell-devRemove libell-dev configuration, data, and all of its dependencies
We can use the following command to remove libell-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libell-devDependencies
libell-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libell-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.