How To Install perl-HTTP-Message on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-HTTP-Message on Rocky Linux 8.
What is perl-HTTP-Message
The HTTP-Message distribution contains classes useful for representing the messages passed in HTTP style communication. These are classes representing requests, responses and the headers contained within them.
We can use yum or dnf to install perl-HTTP-Message on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-HTTP-Message.
Install perl-HTTP-Message 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-HTTP-Message using dnf by running the following command:
sudo dnf -y install perl-HTTP-Message
Install perl-HTTP-Message 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-HTTP-Message using yum by running the following command:
sudo yum -y install perl-HTTP-Message
How To Uninstall perl-HTTP-Message on Rocky Linux 8
To uninstall only the perl-HTTP-Message package we can use the following command:
sudo dnf remove perl-HTTP-Message
perl-HTTP-Message Package Contents on Rocky Linux 8
/usr/share/doc/perl-HTTP-Message
/usr/share/doc/perl-HTTP-Message/CONTRIBUTING.md
/usr/share/doc/perl-HTTP-Message/Changes
/usr/share/doc/perl-HTTP-Message/README.md
/usr/share/licenses/perl-HTTP-Message
/usr/share/licenses/perl-HTTP-Message/LICENSE
/usr/share/man/man3/HTTP::Config.3pm.gz
/usr/share/man/man3/HTTP::Headers.3pm.gz
/usr/share/man/man3/HTTP::Headers::Auth.3pm.gz
/usr/share/man/man3/HTTP::Headers::ETag.3pm.gz
/usr/share/man/man3/HTTP::Headers::Util.3pm.gz
/usr/share/man/man3/HTTP::Message.3pm.gz
/usr/share/man/man3/HTTP::Request.3pm.gz
/usr/share/man/man3/HTTP::Request::Common.3pm.gz
/usr/share/man/man3/HTTP::Response.3pm.gz
/usr/share/man/man3/HTTP::Status.3pm.gz
/usr/share/perl5/vendor_perl/HTTP
/usr/share/perl5/vendor_perl/HTTP/Config.pm
/usr/share/perl5/vendor_perl/HTTP/Headers
/usr/share/perl5/vendor_perl/HTTP/Headers.pm
/usr/share/perl5/vendor_perl/HTTP/Headers/Auth.pm
/usr/share/perl5/vendor_perl/HTTP/Headers/ETag.pm
/usr/share/perl5/vendor_perl/HTTP/Headers/Util.pm
/usr/share/perl5/vendor_perl/HTTP/Message.pm
/usr/share/perl5/vendor_perl/HTTP/Request
/usr/share/perl5/vendor_perl/HTTP/Request.pm
/usr/share/perl5/vendor_perl/HTTP/Request/Common.pm
/usr/share/perl5/vendor_perl/HTTP/Response.pm
/usr/share/perl5/vendor_perl/HTTP/Status.pm
References
Summary
In this tutorial we learn how to install perl-HTTP-Message on Rocky Linux 8 using yum and dnf.