How To Install libjaxp1.3-java on Kali Linux

In this tutorial we learn how to install libjaxp1.3-java on Kali Linux. libjaxp1.3-java is Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX)

Introduction

In this tutorial we learn how to install libjaxp1.3-java on Kali Linux.

What is libjaxp1.3-java

libjaxp1.3-java is:

xml-apis.jar from the Apache XML Commons project is used by the Xerces-J XML parser and Xalan-J XSLT processor and specifies these APIs:

  • Document Object Model (DOM) level 3
  • Simple API for XML (SAX) 2.0.2
  • Java APIs for XML Processing (JAXP) 1.3.04
  • Transformation API for XML (TrAX) 1.3.04
  • Document Object Model (DOM) Level 3 Load and Save
  • JSR 206 Java API for XML Processing 1.3

These classes are also used in Sun’s reference implementation. A GPL’ed implementation of these APIs can be found in the libgnujaxp-java package.

There are three methods to install libjaxp1.3-java on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libjaxp1.3-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 libjaxp1.3-java using apt-get by running the following command:

sudo apt-get -y install libjaxp1.3-java

Install libjaxp1.3-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libjaxp1.3-java using apt by running the following command:

sudo apt -y install libjaxp1.3-java

Install libjaxp1.3-java Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libjaxp1.3-java using aptitude by running the following command:

sudo aptitude -y install libjaxp1.3-java

How To Uninstall libjaxp1.3-java on Kali Linux

To uninstall only the libjaxp1.3-java package we can use the following command:

sudo apt-get remove libjaxp1.3-java

Uninstall libjaxp1.3-java And Its Dependencies

To uninstall libjaxp1.3-java and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libjaxp1.3-java

Remove libjaxp1.3-java Configurations and Data

To remove libjaxp1.3-java configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libjaxp1.3-java

Remove libjaxp1.3-java configuration, data, and all of its dependencies

We can use the following command to remove libjaxp1.3-java configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libjaxp1.3-java

Dependencies

libjaxp1.3-java have the following dependencies:

References

Summary

In this tutorial we learn how to install libjaxp1.3-java package on Kali Linux using different package management tools: apt, apt-get and aptitude.