diffeet command not found

In this troubleshooting guide we learn how to fix diffeet command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

diffeet: command not found

or when using sudo you get the following error message

sudo: diffeet: command not found

Solutions to diffeet: command not found

How To Fix diffeet: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu diffeet 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 diffeet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.