How To Install libxml-smart-perl on Kali Linux

In this tutorial we learn how to install libxml-smart-perl on Kali Linux. libxml-smart-perl is Perl module for access to parsed XML trees

Introduction

In this tutorial we learn how to install libxml-smart-perl on Kali Linux.

What is libxml-smart-perl

libxml-smart-perl is:

With the XML::Smart module, nodes in an XML tree made with XML::LibXML can be accessed equally conveniently with the Perl syntax for hashes and arrays. It also provides convenience features such as searching for nodes by attribute, selection of an attribute value in each of multiple nodes, change the format of returned data, and so forth.

The module also professes to automatically handle binary data (encoding/decoding to/from base64), CDATA sections (used for text content with unbalanced and so forth), and Unicode. It can be used to create XML files and load XML from the Web (just pasting an URL as a file path). It also provides an easy way to send XML data through sockets, adding the length of the data in the header.

There are three methods to install libxml-smart-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 libxml-smart-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 libxml-smart-perl using apt-get by running the following command:

sudo apt-get -y install libxml-smart-perl

Install libxml-smart-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libxml-smart-perl

Install libxml-smart-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 libxml-smart-perl using aptitude by running the following command:

sudo aptitude -y install libxml-smart-perl

How To Uninstall libxml-smart-perl on Kali Linux

To uninstall only the libxml-smart-perl package we can use the following command:

sudo apt-get remove libxml-smart-perl

Uninstall libxml-smart-perl And Its Dependencies

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

sudo apt-get -y autoremove libxml-smart-perl

Remove libxml-smart-perl Configurations and Data

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

sudo apt-get -y purge libxml-smart-perl

Remove libxml-smart-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libxml-smart-perl

Dependencies

libxml-smart-perl have the following dependencies:

References

Summary

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