How To Install perl-MLDBM on Rocky Linux 8

In this tutorial we learn how to install perl-MLDBM on Rocky Linux 8. perl-MLDBM is Store multi-level hash structure in single level tied hash

Introduction

In this tutorial we learn how to install perl-MLDBM on Rocky Linux 8.

What is perl-MLDBM

This module can serve as a transparent interface to any TIEHASH package that is required to store arbitrary perl data, including nested references. Thus, this module can be used for storing references and other arbitrary data within DBM databases.

We can use yum or dnf to install perl-MLDBM on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-MLDBM.

Install perl-MLDBM 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-MLDBM using dnf by running the following command:

sudo dnf -y install perl-MLDBM

Install perl-MLDBM 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-MLDBM using yum by running the following command:

sudo yum -y install perl-MLDBM

How To Uninstall perl-MLDBM on Rocky Linux 8

To uninstall only the perl-MLDBM package we can use the following command:

sudo dnf remove perl-MLDBM

perl-MLDBM Package Contents on Rocky Linux 8

/usr/share/doc/perl-MLDBM
/usr/share/doc/perl-MLDBM/Changes
/usr/share/doc/perl-MLDBM/README
/usr/share/man/man3/MLDBM.3pm.gz
/usr/share/perl5/vendor_perl/MLDBM
/usr/share/perl5/vendor_perl/MLDBM.pm
/usr/share/perl5/vendor_perl/MLDBM/Serializer
/usr/share/perl5/vendor_perl/MLDBM/Serializer/Data
/usr/share/perl5/vendor_perl/MLDBM/Serializer/Data/Dumper.pm
/usr/share/perl5/vendor_perl/MLDBM/Serializer/FreezeThaw.pm
/usr/share/perl5/vendor_perl/MLDBM/Serializer/Storable.pm

References

Summary

In this tutorial we learn how to install perl-MLDBM on Rocky Linux 8 using yum and dnf.