How To Install libxmlb-tests on Ubuntu 20.04

In this tutorial we learn how to install libxmlb-tests on Ubuntu 20.04. libxmlb-tests is Installed tests for libxmlb1 Installed tests for libxmlb1

Introduction

In this tutorial we learn how to install libxmlb-tests on Ubuntu 20.04.

What is libxmlb-tests

libxmlb-tests is:

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.

This package contains the installed tests for libxmlb1.

Package: libxmlb-tests Architecture: amd64 Version: 0.1.15-2 Priority: optional Section: universe/libs Source: libxmlb Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian EFI team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 230 Depends: libxmlb1 (= 0.1.15-2), shared-mime-info, libc6 (>= 2.14), libglib2.0-0 (>= 2.53.2) Filename: pool/universe/libx/libxmlb/libxmlb-tests_0.1.15-2_amd64.deb Size: 71336 MD5sum: cda729913f642019533ddbaeadc018ac SHA1: b862148d9dd3e1407b4ffac6ffec951bd730cf2f SHA256: 2430032dbf6318d099cfc1426f21f674c6bb6f075b8612037392f0c78e23f43f Homepage: https://github.com/hughsie/libxmlb Description-en: Installed tests for libxmlb1 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.

This package contains the installed tests for libxmlb1.

There are three methods to install libxmlb-tests on Ubuntu 20.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 libxmlb-tests Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libxmlb-tests using apt-get by running the following command:

sudo apt-get -y install libxmlb-tests

Install libxmlb-tests Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libxmlb-tests using apt by running the following command:

sudo apt -y install libxmlb-tests

Install libxmlb-tests 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 libxmlb-tests using aptitude by running the following command:

sudo aptitude -y install libxmlb-tests

How To Uninstall libxmlb-tests on Ubuntu 20.04

To uninstall only the libxmlb-tests package we can use the following command:

sudo apt-get remove libxmlb-tests

Uninstall libxmlb-tests And Its Dependencies

To uninstall libxmlb-tests and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libxmlb-tests

Remove libxmlb-tests Configurations and Data

To remove libxmlb-tests configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libxmlb-tests

Remove libxmlb-tests configuration, data, and all of its dependencies

We can use the following command to remove libxmlb-tests configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libxmlb-tests

References

Summary

In this tutorial we learn how to install libxmlb-tests package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.