How To Install ascii on AlmaLinux 8
Introduction
In this tutorial we learn how to install ascii on AlmaLinux 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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ascii.
Install ascii on AlmaLinux 8 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install ascii using dnf by running the following command:
sudo dnf -y install ascii
Install ascii on AlmaLinux 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install ascii using yum by running the following command:
sudo yum -y install ascii
How To Uninstall ascii on AlmaLinux 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 AlmaLinux 8 using yum and dnf.