How To Install libcds-savot-java-doc on Kali Linux

In this tutorial we learn how to install libcds-savot-java-doc on Kali Linux. libcds-savot-java-doc is Simple Access to VOTable (SAVOT) library for Virtual Observatory documentation

Introduction

In this tutorial we learn how to install libcds-savot-java-doc on Kali Linux.

What is libcds-savot-java-doc

libcds-savot-java-doc is:

SAVOT (Simple Access to VOTable) is a library which can be used to access VOTables. The VOTable format developed within the framework of the Virtual Observatory (VO) is an XML standard for the interchange of data represented as a set of tables. VOTable is derived from the “Astrores” format, itself modeled on the “FITS Table” format.

SAVOT aims at providing Java VOTable parsers based on different parsing models and at providing small Java VOTable parsers which can be included in applets.

This package contains the Javadoc API.

There are three methods to install libcds-savot-java-doc 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 libcds-savot-java-doc Using apt-get

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

sudo apt-get update

After updating apt database, We can install libcds-savot-java-doc using apt-get by running the following command:

sudo apt-get -y install libcds-savot-java-doc

Install libcds-savot-java-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libcds-savot-java-doc using apt by running the following command:

sudo apt -y install libcds-savot-java-doc

Install libcds-savot-java-doc 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 libcds-savot-java-doc using aptitude by running the following command:

sudo aptitude -y install libcds-savot-java-doc

How To Uninstall libcds-savot-java-doc on Kali Linux

To uninstall only the libcds-savot-java-doc package we can use the following command:

sudo apt-get remove libcds-savot-java-doc

Uninstall libcds-savot-java-doc And Its Dependencies

To uninstall libcds-savot-java-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libcds-savot-java-doc

Remove libcds-savot-java-doc Configurations and Data

To remove libcds-savot-java-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libcds-savot-java-doc

Remove libcds-savot-java-doc configuration, data, and all of its dependencies

We can use the following command to remove libcds-savot-java-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libcds-savot-java-doc

Dependencies

libcds-savot-java-doc have the following dependencies:

References

Summary

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