How To Install bindechexascii on Kali Linux
Introduction
In this tutorial we learn how to install bindechexascii
on Kali Linux.
What is bindechexascii
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.
There are three ways to install bindechexascii
on Kali Linux . We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install bindechexascii Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install bindechexascii
using apt-get
by running the following command:
sudo apt-get -y install bindechexascii
Install bindechexascii Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install bindechexascii
using apt
by running the following command:
sudo apt -y install bindechexascii
Install bindechexascii Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install bindechexascii
using aptitude
by running the following command:
sudo aptitude -y install bindechexascii
How To Uninstall bindechexascii on Kali Linux
To uninstall only the bindechexascii
package we can use the following command:
sudo apt-get remove bindechexascii
Uninstall bindechexascii And Its Dependencies
To uninstall bindechexascii
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove bindechexascii
Remove bindechexascii Configurations and Data
To remove bindechexascii
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge bindechexascii
Remove bindechexascii configuration, data, and all of its dependencies
We can use the following command to remove bindechexascii
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge bindechexascii
References
Summary
In this tutorial we learn how to install bindechexascii
using different package management tools like apt, apt-get and aptitude.