How To Install libefl-all-dev on Kali Linux

In this tutorial we learn how to install libefl-all-dev on Kali Linux. libefl-all-dev is Enlightenment Foundation Libraries development files

Introduction

In this tutorial we learn how to install libefl-all-dev on Kali Linux.

What is libefl-all-dev

libefl-all-dev is:

The Enlightenment Foundation Libraries (EFL) is a stack of libraries providing a wide degree of functionality. Originally written to support development of the Enlightenment window manager, the libraries have increasingly been used in embedded systems.

This is part of the Enlightenment Foundation Libraries (EFL).

This package provides the development files for all of EFL.

There are three methods to install libefl-all-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 libefl-all-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 libefl-all-dev using apt-get by running the following command:

sudo apt-get -y install libefl-all-dev

Install libefl-all-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libefl-all-dev

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

sudo aptitude -y install libefl-all-dev

How To Uninstall libefl-all-dev on Kali Linux

To uninstall only the libefl-all-dev package we can use the following command:

sudo apt-get remove libefl-all-dev

Uninstall libefl-all-dev And Its Dependencies

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

sudo apt-get -y autoremove libefl-all-dev

Remove libefl-all-dev Configurations and Data

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

sudo apt-get -y purge libefl-all-dev

Remove libefl-all-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libefl-all-dev

Dependencies

libefl-all-dev have the following dependencies:

References

Summary

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