How To Install libxml-rss-simplegen-perl on Kali Linux
Introduction
In this tutorial we learn how to install libxml-rss-simplegen-perl on Kali Linux.
What is libxml-rss-simplegen-perl
libxml-rss-simplegen-perl is:
XML::RSS::SimpleGen is a module is for writing RSS files, simply. It transparently handles all the unpleasant details of RSS, like proper XML escaping, and also has a good number of Do-What-I-Mean features, like not changing the modtime on a written-out RSS file if the file content hasn’t changed, and like automatically removing any HTML tags from content you might pass in.
This module isn’t meant to have the full expressive power of RSS; instead, it provides functions that are most commonly needed by RSS-writing programs.
There are three methods to install libxml-rss-simplegen-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-rss-simplegen-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-rss-simplegen-perl using apt-get by running the following command:
sudo apt-get -y install libxml-rss-simplegen-perlInstall libxml-rss-simplegen-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libxml-rss-simplegen-perl using apt by running the following command:
sudo apt -y install libxml-rss-simplegen-perlInstall libxml-rss-simplegen-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-rss-simplegen-perl using aptitude by running the following command:
sudo aptitude -y install libxml-rss-simplegen-perlHow To Uninstall libxml-rss-simplegen-perl on Kali Linux
To uninstall only the libxml-rss-simplegen-perl package we can use the following command:
sudo apt-get remove libxml-rss-simplegen-perlUninstall libxml-rss-simplegen-perl And Its Dependencies
To uninstall libxml-rss-simplegen-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libxml-rss-simplegen-perlRemove libxml-rss-simplegen-perl Configurations and Data
To remove libxml-rss-simplegen-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libxml-rss-simplegen-perlRemove libxml-rss-simplegen-perl configuration, data, and all of its dependencies
We can use the following command to remove libxml-rss-simplegen-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libxml-rss-simplegen-perlDependencies
libxml-rss-simplegen-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libxml-rss-simplegen-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.