How To Install xqilla on Fedora 34

xqilla is XQuery and XPath 2.0 library, built on top of Xerces-C XQuery and XPath 2.0 library, built on top of Xerces-C

Introduction

In this tutorial we learn how to install xqilla on Fedora 34.

What is xqilla

XQilla is an XQuery and XPath 2.0 implementation written in C++ and based on Xerces-C. It implements the DOM 3 XPath API, as well as having it’s own more powerful API. It conforms to the W3C proposed recommendation of XQuery and XPath 2.0. xqilla 2.3.3 8.fc34 x86_64 1.2 M xqilla-2.3.3-8.fc34.src.rpm fedora XQuery and XPath 2.0 library, built on top of Xerces-C http ASL 2.0 XQilla is an XQuery and XPath 2.0 implementation written in C++ and based on Xerces-C. It implements the DOM 3 XPath API, as well as having it’s own more powerful API. It conforms to the W3C proposed recommendation of XQuery and XPath 2.0.

We can use yum or dnf to install xqilla on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install xqilla.

Install xqilla 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 xqilla using dnf by running the following command:

sudo dnf -y install xqilla

Install xqilla 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 xqilla using yum by running the following command:

sudo yum -y install xqilla

How To Uninstall xqilla on Fedora 34

To uninstall only the xqilla package we can use the following command:

sudo dnf remove xqilla

xqilla Package Contents on Fedora 34

/usr/bin/xqilla
/usr/lib/.build-id
/usr/lib/.build-id/1f
/usr/lib/.build-id/1f/b86ca7ee830a63c7f5482868f7383a938e3e67
/usr/lib/.build-id/42
/usr/lib/.build-id/42/783674d833c26749218de31a5ed686d6bd16bd
/usr/lib64/libxqilla.so.6
/usr/lib64/libxqilla.so.6.0.3
/usr/share/doc/xqilla
/usr/share/doc/xqilla/ChangeLog
/usr/share/licenses/xqilla
/usr/share/licenses/xqilla/LICENSE
/usr/share/man/man1/xqilla.1.gz
/usr/bin/xqilla
/usr/lib/.build-id
/usr/lib/.build-id/87
/usr/lib/.build-id/87/aa0cb62df8782a7253f0356f54b5a23b53125e
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/a6bfc4d54a5feef24e2bb68c232c496ce4ddc5
/usr/lib/libxqilla.so.6
/usr/lib/libxqilla.so.6.0.3
/usr/share/doc/xqilla
/usr/share/doc/xqilla/ChangeLog
/usr/share/licenses/xqilla
/usr/share/licenses/xqilla/LICENSE
/usr/share/man/man1/xqilla.1.gz

References

Summary

In this tutorial we learn how to install xqilla on Fedora 34 using yum and dnf.