How To Install libxml-smart-perl on Kali Linux
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
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 updateAfter updating apt database, We can install libxml-smart-perl using apt-get by running the following command:
sudo apt-get -y install libxml-smart-perlInstall libxml-smart-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libxml-smart-perl using apt by running the following command:
sudo apt -y install libxml-smart-perlInstall 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 updateAfter updating apt database, We can install libxml-smart-perl using aptitude by running the following command:
sudo aptitude -y install libxml-smart-perlHow 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-perlUninstall 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-perlRemove 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-perlRemove 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-perlDependencies
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.