Introduction
In this tutorial we learn how to install libxml-rss-feed-perl
on Ubuntu 18.04.
What is libxml-rss-feed-perl
libxml-rss-feed-perl is:
This module is a framework for persistent XML RSS (RDF Site Summary)
Encapsulation. This module provides a framework for watching multiple
RSS sources. The magic is in the late_breaking_news method that returns
only headlines it hasn’t seen.
If you want a non-blocking way to watch multiple RSS sources with one
process use POE::Component::RSSAggregator (libpoe-component-rssaggregator)
Homepage: http://search.cpan.org/~jbisbee/XML-RSS-Feed/
There are three methods to install libxml-rss-feed-perl
on Ubuntu 18.04. 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-feed-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-rss-feed-perl
using apt-get
by running the following command:
sudo apt-get -y install libxml-rss-feed-perl
Install libxml-rss-feed-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libxml-rss-feed-perl
using apt
by running the following command:
sudo apt -y install libxml-rss-feed-perl
Install libxml-rss-feed-perl Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libxml-rss-feed-perl
using aptitude
by running the following command:
sudo aptitude -y install libxml-rss-feed-perl
How To Uninstall libxml-rss-feed-perl on Ubuntu 18.04
To uninstall only the libxml-rss-feed-perl
package we can use the following command:
sudo apt-get remove libxml-rss-feed-perl
Uninstall libxml-rss-feed-perl And Its Dependencies
To uninstall libxml-rss-feed-perl
and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove libxml-rss-feed-perl
Remove libxml-rss-feed-perl Configurations and Data
To remove libxml-rss-feed-perl
configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge libxml-rss-feed-perl
Remove libxml-rss-feed-perl configuration, data, and all of its dependencies
We can use the following command to remove libxml-rss-feed-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libxml-rss-feed-perl
References
Summary
In this tutorial we learn how to install libxml-rss-feed-perl
package on Ubuntu 18.04 using different package management tools: apt
, apt-get
and aptitude
.