How To Install perl-MIME-Base64 on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-MIME-Base64
on Rocky Linux 8.
What is perl-MIME-Base64
This package contains a Base64 encoder/decoder and a quoted-printable encoder/decoder. These encoding methods are specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions).
We can use yum
or dnf
to install perl-MIME-Base64
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-MIME-Base64.
Install perl-MIME-Base64 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-MIME-Base64
using dnf
by running the following command:
sudo dnf -y install perl-MIME-Base64
Install perl-MIME-Base64 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-MIME-Base64
using yum
by running the following command:
sudo yum -y install perl-MIME-Base64
How To Uninstall perl-MIME-Base64 on Rocky Linux 8
To uninstall only the perl-MIME-Base64
package we can use the following command:
sudo dnf remove perl-MIME-Base64
perl-MIME-Base64 Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/92
/usr/lib/.build-id/92/bb05b3a47667a094bccde0e729be51c5ed3470
/usr/lib64/perl5/vendor_perl/MIME
/usr/lib64/perl5/vendor_perl/MIME/Base64.pm
/usr/lib64/perl5/vendor_perl/MIME/QuotedPrint.pm
/usr/lib64/perl5/vendor_perl/auto/MIME
/usr/lib64/perl5/vendor_perl/auto/MIME/Base64
/usr/lib64/perl5/vendor_perl/auto/MIME/Base64/Base64.so
/usr/share/doc/perl-MIME-Base64
/usr/share/doc/perl-MIME-Base64/Changes
/usr/share/doc/perl-MIME-Base64/README
/usr/share/man/man3/MIME::Base64.3pm.gz
/usr/share/man/man3/MIME::QuotedPrint.3pm.gz
References
Summary
In this tutorial we learn how to install perl-MIME-Base64
on Rocky Linux 8 using yum and dnf.