How To Install tinyxml on Fedora 34
Introduction
In this tutorial we learn how to install tinyxml
on Fedora 34.
What is tinyxml
TinyXML is a simple, small, C++ XML parser that can be easily integrating into other programs. Have you ever found yourself writing a text file parser every time you needed to save human readable data or serialize objects? TinyXML solves the text I/O file once and for all. (Or, as a friend said, ends the Just Another Text File Parser problem.) tinyxml 2.6.2 22.fc34 x86_64 58 k tinyxml-2.6.2-22.fc34.src.rpm fedora A simple, small, C++ XML parser http zlib TinyXML is a simple, small, C++ XML parser that can be easily integrating into other programs. Have you ever found yourself writing a text file parser every time you needed to save human readable data or serialize objects? TinyXML solves the text I/O file once and for all. (Or, as a friend said, ends the Just Another Text File Parser problem.)
We can use yum
or dnf
to install tinyxml
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install tinyxml.
Install tinyxml on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install tinyxml
using dnf
by running the following command:
sudo dnf -y install tinyxml
Install tinyxml on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install tinyxml
using yum
by running the following command:
sudo yum -y install tinyxml
How To Uninstall tinyxml on Fedora 34
To uninstall only the tinyxml
package we can use the following command:
sudo dnf remove tinyxml
tinyxml Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/64
/usr/lib/.build-id/64/64791f4a40adcfcdaa62a806fbd7e02207d8e9
/usr/lib64/libtinyxml.so.0
/usr/lib64/libtinyxml.so.0.2.6.2
/usr/share/doc/tinyxml
/usr/share/doc/tinyxml/changes.txt
/usr/share/doc/tinyxml/readme.txt
/usr/lib/.build-id
/usr/lib/.build-id/96
/usr/lib/.build-id/96/d916610bf8d36d4804b64b5741dddb39580dfa
/usr/lib/libtinyxml.so.0
/usr/lib/libtinyxml.so.0.2.6.2
/usr/share/doc/tinyxml
/usr/share/doc/tinyxml/changes.txt
/usr/share/doc/tinyxml/readme.txt
References
- [tinyxml website](http://www.grinninglizard.com/tinyxml/ http://www.grinninglizard.com/tinyxml/)
Summary
In this tutorial we learn how to install tinyxml
on Fedora 34 using yum and dnf.