jeex command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jeex: command not found
or when using sudo you get the following error message
sudo: jeex: command not found
Solutions to jeex: command not found
How To Fix jeex: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jeex is provided by jeex package.
jeex is:
Jeex is a simple hexadecimal editor which allows user to create, open and edit files in hexadecimal, binary, octal and ASCII. The features include insert, delete, copy-and-paste, search and many others.
It also shows several information about the opened file, like file mode bits, ownership, last access and modification timestamps.
To fix this problem, we can install more using the command below.
sudo apt-get -y install jeex
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jeex.
sudo apt -y install jeex
Or if you have aptitude installed you can use the following command.
sudo aptitude install jeex
Summary
In this tutorial we learn how to fix jeex command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.