How To Install libell-dev on Debian 12
Introduction
In this tutorial we learn how to install libell-dev
on Debian 12.
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 Debian 12. 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 update
After updating apt database, We can install libell-dev
using apt-get
by running the following command:
sudo apt-get -y install libell-dev
Install libell-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libell-dev
using apt
by running the following command:
sudo apt -y install libell-dev
Install libell-dev Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libell-dev
using aptitude
by running the following command:
sudo aptitude -y install libell-dev
How To Uninstall libell-dev on Debian 12
To uninstall only the libell-dev
package we can use the following command:
sudo apt-get remove libell-dev
Uninstall libell-dev And Its Dependencies
To uninstall libell-dev
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove libell-dev
Remove libell-dev Configurations and Data
To remove libell-dev
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge libell-dev
Remove 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-dev
Dependencies
libell-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libell-dev
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.