How To Install perl-XML-Stream on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-XML-Stream
on Rocky Linux 8.
What is perl-XML-Stream
This module provides the user with methods to connect to a remote server, send a stream of XML to the server, and receive/parse an XML stream from the server. It is primarily based work for the Etherx XML router developed by the Jabber Development Team. For more information about this project visit http XML will be used to handle the tags received from the server. These tags are passed in the format defined at instantiation time. the closing tag of an object is seen, the tree is finished and passed to the call back function. What the user does with it from there is up to them. For a detailed description of how this module works, and about the data structure that it returns, please view the source of Stream.pm and look at the detailed description at the end of the file.
We can use yum
or dnf
to install perl-XML-Stream
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-XML-Stream.
Install perl-XML-Stream on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-XML-Stream
using dnf
by running the following command:
sudo dnf -y install perl-XML-Stream
Install perl-XML-Stream on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-XML-Stream
using yum
by running the following command:
sudo yum -y install perl-XML-Stream
How To Uninstall perl-XML-Stream on Rocky Linux 8
To uninstall only the perl-XML-Stream
package we can use the following command:
sudo dnf remove perl-XML-Stream
perl-XML-Stream Package Contents on Rocky Linux 8
/usr/share/doc/perl-XML-Stream
/usr/share/doc/perl-XML-Stream/CHANGES
/usr/share/doc/perl-XML-Stream/INFO
/usr/share/doc/perl-XML-Stream/README
/usr/share/licenses/perl-XML-Stream
/usr/share/licenses/perl-XML-Stream/LICENSE
/usr/share/licenses/perl-XML-Stream/LICENSING.correspondance
/usr/share/man/man3/XML::Stream.3pm.gz
/usr/share/man/man3/XML::Stream::IO::Select::Win32.3pm.gz
/usr/share/man/man3/XML::Stream::Namespace.3pm.gz
/usr/share/man/man3/XML::Stream::Node.3pm.gz
/usr/share/man/man3/XML::Stream::Parser.3pm.gz
/usr/share/man/man3/XML::Stream::Parser::DTD.3pm.gz
/usr/share/man/man3/XML::Stream::Tree.3pm.gz
/usr/share/perl5/vendor_perl/XML
/usr/share/perl5/vendor_perl/XML/Stream
/usr/share/perl5/vendor_perl/XML/Stream.pm
/usr/share/perl5/vendor_perl/XML/Stream/IO
/usr/share/perl5/vendor_perl/XML/Stream/IO/Select
/usr/share/perl5/vendor_perl/XML/Stream/IO/Select/Win32.pm
/usr/share/perl5/vendor_perl/XML/Stream/Namespace.pm
/usr/share/perl5/vendor_perl/XML/Stream/Node.pm
/usr/share/perl5/vendor_perl/XML/Stream/Parser
/usr/share/perl5/vendor_perl/XML/Stream/Parser.pm
/usr/share/perl5/vendor_perl/XML/Stream/Parser/DTD.pm
/usr/share/perl5/vendor_perl/XML/Stream/Tools.pm
/usr/share/perl5/vendor_perl/XML/Stream/Tree.pm
/usr/share/perl5/vendor_perl/XML/Stream/XPath
/usr/share/perl5/vendor_perl/XML/Stream/XPath.pm
/usr/share/perl5/vendor_perl/XML/Stream/XPath/Op.pm
/usr/share/perl5/vendor_perl/XML/Stream/XPath/Query.pm
/usr/share/perl5/vendor_perl/XML/Stream/XPath/Value.pm
References
Summary
In this tutorial we learn how to install perl-XML-Stream
on Rocky Linux 8 using yum and dnf.