How To Install libpracticalxml-java on Debian 10
Introduction
In this tutorial we learn how to install libpracticalxml-java
on Debian 10.
What is libpracticalxml-java
libpracticalxml-java is:
The package provides a collection of utility classes for working with the JDK’s built-in XML packages. These are meant to bring the well maintained core routines of the JDK closer to regular applications for handling XML data and their schemata. Priorities in the development where set to meet specific needs in the maintainers’ other professional and personal projects.
There are three methods to install libpracticalxml-java
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libpracticalxml-java Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libpracticalxml-java
using apt-get
by running the following command:
sudo apt-get -y install libpracticalxml-java
Install libpracticalxml-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libpracticalxml-java
using apt
by running the following command:
sudo apt -y install libpracticalxml-java
Install libpracticalxml-java 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 libpracticalxml-java
using aptitude
by running the following command:
sudo aptitude -y install libpracticalxml-java
How To Uninstall libpracticalxml-java on Debian 10
To uninstall only the libpracticalxml-java
package we can use the following command:
sudo apt-get remove libpracticalxml-java
Uninstall libpracticalxml-java And Its Dependencies
To uninstall libpracticalxml-java
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libpracticalxml-java
Remove libpracticalxml-java Configurations and Data
To remove libpracticalxml-java
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libpracticalxml-java
Remove libpracticalxml-java configuration, data, and all of its dependencies
We can use the following command to remove libpracticalxml-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libpracticalxml-java
Dependencies
libpracticalxml-java have the following dependencies:
References
Summary
In this tutorial we learn how to install libpracticalxml-java
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.