How To Install perl-Data-HexDump on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-Data-HexDump
on Rocky Linux 8.
What is perl-Data-HexDump
Dump in hexadecimal the content of a scalar. The result is returned in a string. Each line of the result consists of the offset in the source in the leftmost column of each line, followed by one or more columns of data from the source in hexadecimal. The rightmost column of each line shows the printable characters (all others are shown as single dots).
We can use yum
or dnf
to install perl-Data-HexDump
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Data-HexDump.
Install perl-Data-HexDump 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 perl-Data-HexDump
using dnf
by running the following command:
sudo dnf -y install perl-Data-HexDump
Install perl-Data-HexDump 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 perl-Data-HexDump
using yum
by running the following command:
sudo yum -y install perl-Data-HexDump
How To Uninstall perl-Data-HexDump on Rocky Linux 8
To uninstall only the perl-Data-HexDump
package we can use the following command:
sudo dnf remove perl-Data-HexDump
perl-Data-HexDump Package Contents on Rocky Linux 8
/usr/bin/hexdump.pl
/usr/share/doc/perl-Data-HexDump
/usr/share/doc/perl-Data-HexDump/README
/usr/share/man/man3/Data::HexDump.3pm.gz
/usr/share/perl5/vendor_perl/Data
/usr/share/perl5/vendor_perl/Data/HexDump.pm
References
Summary
In this tutorial we learn how to install perl-Data-HexDump
on Rocky Linux 8 using yum and dnf.