How To Install libhttp-dav-perl on Kali Linux

In this tutorial we learn how to install libhttp-dav-perl on Kali Linux. libhttp-dav-perl is WebDAV client library for Perl, and dave CLI client

Introduction

In this tutorial we learn how to install libhttp-dav-perl on Kali Linux.

What is libhttp-dav-perl

libhttp-dav-perl is:

HTTP::DAV provides client-side access to a DAV server. DAV is a protocol for remote web-site authoring and management. Now you can LOCK, DELETE and PUT files and much more on a DAV-enabled webserver.

The PerlDAV library consists of:

  • HTTP::DAV - an object-oriented Web-DAV client API.
  • dave - the DAV Explorer, an end-user Unix console program for interacting with WebDAV servers. dave looks and feels like a standard Unix ftp program.

Learn more about WebDAV at http://www.webdav.org/

There are three methods to install libhttp-dav-perl on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libhttp-dav-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libhttp-dav-perl using apt-get by running the following command:

sudo apt-get -y install libhttp-dav-perl

Install libhttp-dav-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libhttp-dav-perl using apt by running the following command:

sudo apt -y install libhttp-dav-perl

Install libhttp-dav-perl Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libhttp-dav-perl using aptitude by running the following command:

sudo aptitude -y install libhttp-dav-perl

How To Uninstall libhttp-dav-perl on Kali Linux

To uninstall only the libhttp-dav-perl package we can use the following command:

sudo apt-get remove libhttp-dav-perl

Uninstall libhttp-dav-perl And Its Dependencies

To uninstall libhttp-dav-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libhttp-dav-perl

Remove libhttp-dav-perl Configurations and Data

To remove libhttp-dav-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libhttp-dav-perl

Remove libhttp-dav-perl configuration, data, and all of its dependencies

We can use the following command to remove libhttp-dav-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libhttp-dav-perl

Dependencies

libhttp-dav-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libhttp-dav-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.