How To Install ascii on CentOS 8
Introduction
In this tutorial we learn how to install ascii on CentOS 8.
What is ascii
The ascii utility provides easy conversion between various byte representations and the American Standard Code for Information Interchange (ASCII) character table. It knows about a wide variety of hex, binary, octal, Teletype mnemonic, ISO/ECMA code point, slang names, XML entity names, and other representations. Given any one on the command line, it will try to display all others. Called with no arguments it displays a handy small ASCII chart.
We can use yum or dnf to install ascii on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install ascii.
Install ascii on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install ascii using yum by running the following command:
sudo yum -y install ascii
Install ascii on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install ascii using dnf by running the following command:
sudo dnf -y install ascii
How To Uninstall ascii on CentOS 8
To uninstall only the ascii package we can use the following command:
sudo dnf remove ascii
References
Summary
In this tutorial we learn how to install ascii on CentOS 8 using yum and dnf.