eetpack command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
eetpack: command not found
or when using sudo you get the following error message
sudo: eetpack: command not found
Solutions to eetpack: command not found
How To Fix eetpack: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu eetpack is provided by libeet-bin package.
libeet-bin 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.
This is part of the Enlightenment Foundation Libraries (EFL).
This package contains eet, an utility that allows you to extract, insert, encode and decode config blobs created with libeet.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libeet-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libeet-bin.
sudo apt -y install libeet-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libeet-bin
Summary
In this tutorial we learn how to fix eetpack command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.