How To Install libeet1 on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 413 words
Introduction
In this tutorial we learn how to install libeet1 on Ubuntu.
What is libeet1
libeet1 is:
Eet is a tiny library designed to write an arbitrary set of chunks of data to a file and optionally compress each chunk (very much like a zip file) and allows fast random-access reading of the file later on. It does not do zip as zip itself has more complexity than needed, and it was much simpler to implement this once here.
It’s small, fast, and does a job. It’s heavily commented and fully documented.
This is part of the Enlightenment Foundation Libraries (EFL).
There are three methods to install libeet1 on Ubuntu. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libeet1 Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libeet1 using apt-get by running the following command:
sudo apt-get -y install libeet1
Install libeet1 Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libeet1 using apt by running the following command:
sudo apt -y install libeet1
Install libeet1 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install libeet1 using aptitude by running the following command:
sudo aptitude -y install libeet1
How To Uninstall libeet1 on Ubuntu
To uninstall only the libeet1 package we can use the following command:
sudo apt-get remove libeet1
Uninstall libeet1 And Its Dependencies
To uninstall libeet1 and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libeet1
Remove libeet1 Configurations and Data
To remove libeet1 configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libeet1
Remove libeet1 configuration, data, and all of its dependencies
We can use the following command to remove libeet1 configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libeet1
Dependencies
libeet1 have the following dependencies:
References
Summary
In this tutorial we learn how to install libeet1 package on Ubuntu using different package management tools: apt, apt-get and aptitude.