beav command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
beav: command not found
or when using sudo you get the following error message
sudo: beav: command not found
Solutions to beav: command not found
How To Fix beav: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu beav is provided by beav package.
beav is:
beav (Binary Editor And Viewer) is an editor for binary files containing arbitrary data. Text file editors, on the other hand, expect the files they edit to contain textual data, and/or to be formatted in a certain way (e.g. lines of printable characters delimited by newline characters).
With beav, you can edit a file in HEX, ASCII, EBCDIC, OCTAL, DECIMAL, and BINARY. You can display but not edit data in FLOAT mode. You can search or search and replace in any of these modes. Data can be displayed in BYTE, WORD, or DOUBLE WORD formats. While displaying WORDS or DOUBLE WORDS the data can be displayed in INTEL’s or MOTOROLA’s byte ordering. Data of any length can be inserted at any point in the file. The source of this data can be the keyboard, another buffer, or a file. Any data that is being displayed can be sent to a printer in the displayed format. Files that are bigger than memory can be handled.
To fix this problem, we can install more using the command below.
sudo apt-get -y install beav
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install beav.
sudo apt -y install beav
Or if you have aptitude installed you can use the following command.
sudo aptitude install beav
Summary
In this tutorial we learn how to fix beav command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.