How to Install and Uninstall libxmlb.src Package on Oracle Linux 8

Last updated: October 05,2024

1. Install "libxmlb.src" package

This is a short guide on how to install libxmlb.src on Oracle Linux 8

$ sudo dnf update $ sudo dnf install libxmlb.src

2. Uninstall "libxmlb.src" package

This is a short guide on how to uninstall libxmlb.src on Oracle Linux 8:

$ sudo dnf remove libxmlb.src $ sudo dnf autoremove

3. Information about the libxmlb.src package on Oracle Linux 8

Last metadata expiration check: 6:42:08 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : libxmlb
Version : 0.1.15
Release : 1.el8
Architecture : src
Size : 82 k
Source : None
Repository : ol8_baseos_latest
Summary : Library for querying compressed XML metadata
URL : https://github.com/hughsie/libxmlb
License : LGPLv2+
Description : XML is slow to parse and strings inside the document cannot be memory mapped as
: they do not have a trailing NUL char. The libxmlb library takes XML source, and
: converts it to a structured binary representation with a deduplicated string
: table -- where the strings have the NULs included.
:
: This allows an application to mmap the binary XML file, do an XPath query and
: return some strings without actually parsing the entire document. This is all
: done using (almost) zero allocations and no actual copying of the binary data.