bindechexascii command not found

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

Introduction

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

bindechexascii: command not found

or when using sudo you get the following error message

sudo: bindechexascii: command not found

Solutions to bindechexascii: command not found

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

In Ubuntu bindechexascii is provided by bindechexascii package.

bindechexascii is:

The bindechexascii is a program that convert the argument from standard input to the numbering system or character set (ASCII) specified in the option and print the result on the screen. That way you can perform the following conversion: binary to decimal, binary to hex, binary to ASCII, decimal to binary, decimal to hex, decimal to ASCII, hex to binary, hex to decimal, hex to ASCII, ASCII to binary, ASCII to decimal, ASCII to hex.

It’s different from packages like iprint showing all results (binary, hexadecimal,ASCII,octal) for any argument.

To fix this problem, we can install more using the command below.

sudo apt-get -y install bindechexascii

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install bindechexascii.

sudo apt -y install bindechexascii

Or if you have aptitude installed you can use the following command.

sudo aptitude install bindechexascii

Summary

In this tutorial we learn how to fix bindechexascii command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.