How To Install ascii on Rocky Linux 8
Introduction
In this tutorial we learn how to install ascii
on Rocky Linux 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 Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ascii.
Install ascii on Rocky Linux 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 Rocky Linux 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 Rocky Linux 8
To uninstall only the ascii
package we can use the following command:
sudo dnf remove ascii
ascii Package Contents on Rocky Linux 8
/usr/bin/ascii
/usr/lib/.build-id
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/127de58e7c8c0b67cbd9d942aca8756f06264b
/usr/share/doc/ascii
/usr/share/doc/ascii/COPYING
/usr/share/doc/ascii/README
/usr/share/man/man1/ascii.1.gz
References
Summary
In this tutorial we learn how to install ascii
on Rocky Linux 8 using yum and dnf.