How To Install mallard-rng on Debian 12

Learn how to install mallard-rng on Debian 12 with this tutorial. mallard-rng is Mallard RELAX NG Schemas

Introduction

In this tutorial we learn how to install mallard-rng on Debian 12.

What is mallard-rng

mallard-rng is:

This package provides installable RELAX NG schemas for all Mallard versions and extensions that have been marked final. Schemas are provided in both XML and compact syntax.

The package automatically integrates with your system’s XML catalog.

There are three methods to install mallard-rng on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install mallard-rng Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install mallard-rng

Install mallard-rng Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install mallard-rng

Install mallard-rng 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install mallard-rng using aptitude by running the following command:

sudo aptitude -y install mallard-rng

How To Uninstall mallard-rng on Debian 12

To uninstall only the mallard-rng package we can use the following command:

sudo apt-get remove mallard-rng

Uninstall mallard-rng And Its Dependencies

To uninstall mallard-rng and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove mallard-rng

Remove mallard-rng Configurations and Data

To remove mallard-rng configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge mallard-rng

Remove mallard-rng configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge mallard-rng

Dependencies

mallard-rng have the following dependencies:

References

Summary

In this tutorial we learn how to install mallard-rng package on Debian 12 using different package management tools: apt, apt-get and aptitude.