hexcurse command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hexcurse: command not found
or when using sudo you get the following error message
sudo: hexcurse: command not found
Solutions to hexcurse: command not found
How To Fix hexcurse: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hexcurse is provided by hexcurse package.
hexcurse is:
HexCurse is a versatile ncurses-based hex editor written in C that provides the user with many features. It currently supports searching, hex, and decimal address output, jumping to specified locations in a file, and quick keyboard shortcuts to commands.
To fix this problem, we can install more using the command below.
sudo apt-get -y install hexcurse
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install hexcurse.
sudo apt -y install hexcurse
Or if you have aptitude installed you can use the following command.
sudo aptitude install hexcurse
Summary
In this tutorial we learn how to fix hexcurse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.