How To Install perl-HTTP-DAV on Rocky Linux 8

In this tutorial we learn how to install perl-HTTP-DAV on Rocky Linux 8. perl-HTTP-DAV is WebDAV client library for Perl5

Introduction

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

What is perl-HTTP-DAV

HTTP web servers using the WebDAV protocol. Now you can LOCK, DELETE and PUT files and much more on a DAV-enabled web server.

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

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

sudo dnf -y install perl-HTTP-DAV

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

sudo yum -y install perl-HTTP-DAV

How To Uninstall perl-HTTP-DAV on Rocky Linux 8

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

sudo dnf remove perl-HTTP-DAV

perl-HTTP-DAV Package Contents on Rocky Linux 8

/usr/bin/dave
/usr/share/doc/perl-HTTP-DAV
/usr/share/doc/perl-HTTP-DAV/Changes
/usr/share/doc/perl-HTTP-DAV/README
/usr/share/doc/perl-HTTP-DAV/TODO
/usr/share/man/man1/dave.1.gz
/usr/share/man/man3/HTTP::DAV.3pm.gz
/usr/share/man/man3/HTTP::DAV::Changes.3pm.gz
/usr/share/man/man3/HTTP::DAV::Lock.3pm.gz
/usr/share/man/man3/HTTP::DAV::Resource.3pm.gz
/usr/share/man/man3/HTTP::DAV::Response.3pm.gz
/usr/share/perl5/vendor_perl/HTTP
/usr/share/perl5/vendor_perl/HTTP/DAV
/usr/share/perl5/vendor_perl/HTTP/DAV.pm
/usr/share/perl5/vendor_perl/HTTP/DAV/Changes.pod
/usr/share/perl5/vendor_perl/HTTP/DAV/Comms.pm
/usr/share/perl5/vendor_perl/HTTP/DAV/Lock.pm
/usr/share/perl5/vendor_perl/HTTP/DAV/Resource.pm
/usr/share/perl5/vendor_perl/HTTP/DAV/ResourceList.pm
/usr/share/perl5/vendor_perl/HTTP/DAV/Response.pm
/usr/share/perl5/vendor_perl/HTTP/DAV/Utils.pm

References

Summary

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