How To Install perl-Pod-Parser on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-Pod-Parser
on Rocky Linux 8.
What is perl-Pod-Parser
This software distribution contains the packages for using Perl5 POD (Plain Old Documentation). See the “perlpod” and “perlsyn” manual pages from your Perl5 distribution for more information about POD.
We can use yum
or dnf
to install perl-Pod-Parser
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Pod-Parser.
Install perl-Pod-Parser 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-Pod-Parser
using dnf
by running the following command:
sudo dnf -y install perl-Pod-Parser
Install perl-Pod-Parser 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-Pod-Parser
using yum
by running the following command:
sudo yum -y install perl-Pod-Parser
How To Uninstall perl-Pod-Parser on Rocky Linux 8
To uninstall only the perl-Pod-Parser
package we can use the following command:
sudo dnf remove perl-Pod-Parser
perl-Pod-Parser Package Contents on Rocky Linux 8
/usr/bin/podselect
/usr/share/doc/perl-Pod-Parser
/usr/share/doc/perl-Pod-Parser/ANNOUNCE
/usr/share/doc/perl-Pod-Parser/CHANGES
/usr/share/doc/perl-Pod-Parser/README
/usr/share/doc/perl-Pod-Parser/TODO
/usr/share/man/man1/podselect.1.gz
/usr/share/man/man3/Pod::Find.3pm.gz
/usr/share/man/man3/Pod::InputObjects.3pm.gz
/usr/share/man/man3/Pod::ParseUtils.3pm.gz
/usr/share/man/man3/Pod::Parser.3pm.gz
/usr/share/man/man3/Pod::PlainText.3pm.gz
/usr/share/man/man3/Pod::Select.3pm.gz
/usr/share/perl5/vendor_perl/Pod
/usr/share/perl5/vendor_perl/Pod/Find.pm
/usr/share/perl5/vendor_perl/Pod/InputObjects.pm
/usr/share/perl5/vendor_perl/Pod/ParseUtils.pm
/usr/share/perl5/vendor_perl/Pod/Parser.pm
/usr/share/perl5/vendor_perl/Pod/PlainText.pm
/usr/share/perl5/vendor_perl/Pod/Select.pm
References
Summary
In this tutorial we learn how to install perl-Pod-Parser
on Rocky Linux 8 using yum and dnf.