How To Install perl-URI on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-URI
on Rocky Linux 8.
What is perl-URI
This module implements the URI class. Objects of this class represent “Uniform Resource Identifier references” as specified in RFC 2396 (and updated by RFC 2732).
We can use yum
or dnf
to install perl-URI
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-URI.
Install perl-URI 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-URI
using dnf
by running the following command:
sudo dnf -y install perl-URI
Install perl-URI 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-URI
using yum
by running the following command:
sudo yum -y install perl-URI
How To Uninstall perl-URI on Rocky Linux 8
To uninstall only the perl-URI
package we can use the following command:
sudo dnf remove perl-URI
perl-URI Package Contents on Rocky Linux 8
/usr/share/doc/perl-URI
/usr/share/doc/perl-URI/CONTRIBUTING.md
/usr/share/doc/perl-URI/Changes
/usr/share/doc/perl-URI/uri-test
/usr/share/licenses/perl-URI
/usr/share/licenses/perl-URI/LICENSE
/usr/share/man/man3/URI.3pm.gz
/usr/share/man/man3/URI::Escape.3pm.gz
/usr/share/man/man3/URI::Heuristic.3pm.gz
/usr/share/man/man3/URI::QueryParam.3pm.gz
/usr/share/man/man3/URI::Split.3pm.gz
/usr/share/man/man3/URI::URL.3pm.gz
/usr/share/man/man3/URI::WithBase.3pm.gz
/usr/share/man/man3/URI::_punycode.3pm.gz
/usr/share/man/man3/URI::data.3pm.gz
/usr/share/man/man3/URI::file.3pm.gz
/usr/share/man/man3/URI::ldap.3pm.gz
/usr/share/perl5/URI
/usr/share/perl5/URI.pm
/usr/share/perl5/URI/Escape.pm
/usr/share/perl5/URI/Heuristic.pm
/usr/share/perl5/URI/IRI.pm
/usr/share/perl5/URI/QueryParam.pm
/usr/share/perl5/URI/Split.pm
/usr/share/perl5/URI/URL.pm
/usr/share/perl5/URI/WithBase.pm
/usr/share/perl5/URI/_foreign.pm
/usr/share/perl5/URI/_generic.pm
/usr/share/perl5/URI/_idna.pm
/usr/share/perl5/URI/_ldap.pm
/usr/share/perl5/URI/_login.pm
/usr/share/perl5/URI/_punycode.pm
/usr/share/perl5/URI/_query.pm
/usr/share/perl5/URI/_segment.pm
/usr/share/perl5/URI/_server.pm
/usr/share/perl5/URI/_userpass.pm
/usr/share/perl5/URI/data.pm
/usr/share/perl5/URI/file
/usr/share/perl5/URI/file.pm
/usr/share/perl5/URI/file/Base.pm
/usr/share/perl5/URI/file/FAT.pm
/usr/share/perl5/URI/file/Mac.pm
/usr/share/perl5/URI/file/OS2.pm
/usr/share/perl5/URI/file/QNX.pm
/usr/share/perl5/URI/file/Unix.pm
/usr/share/perl5/URI/file/Win32.pm
/usr/share/perl5/URI/ftp.pm
/usr/share/perl5/URI/gopher.pm
/usr/share/perl5/URI/http.pm
/usr/share/perl5/URI/https.pm
/usr/share/perl5/URI/ldap.pm
/usr/share/perl5/URI/ldapi.pm
/usr/share/perl5/URI/ldaps.pm
/usr/share/perl5/URI/mailto.pm
/usr/share/perl5/URI/mms.pm
/usr/share/perl5/URI/news.pm
/usr/share/perl5/URI/nntp.pm
/usr/share/perl5/URI/pop.pm
/usr/share/perl5/URI/rlogin.pm
/usr/share/perl5/URI/rsync.pm
/usr/share/perl5/URI/rtsp.pm
/usr/share/perl5/URI/rtspu.pm
/usr/share/perl5/URI/sftp.pm
/usr/share/perl5/URI/sip.pm
/usr/share/perl5/URI/sips.pm
/usr/share/perl5/URI/snews.pm
/usr/share/perl5/URI/ssh.pm
/usr/share/perl5/URI/telnet.pm
/usr/share/perl5/URI/tn3270.pm
/usr/share/perl5/URI/urn
/usr/share/perl5/URI/urn.pm
/usr/share/perl5/URI/urn/isbn.pm
/usr/share/perl5/URI/urn/oid.pm
References
Summary
In this tutorial we learn how to install perl-URI
on Rocky Linux 8 using yum and dnf.