How To Install starlink-dpac-java-doc on Kali Linux

In this tutorial we learn how to install starlink-dpac-java-doc on Kali Linux. starlink-dpac-java-doc is Java classes to process GAIA data (Javadoc)

Introduction

In this tutorial we learn how to install starlink-dpac-java-doc on Kali Linux.

starlink-dpac-java-doc is:

This package contains classes to process and display GAIA data with STIL, STILTS, and TOPCAT. GAIA is an ESA satellite with the mission to measure positions and distances of about 1 billion astronomical objects.

This package contains the JavaDoc documentation of the package.

There are three methods to install starlink-dpac-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.

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

sudo apt-get update

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

sudo apt-get -y install starlink-dpac-java-doc

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install starlink-dpac-java-doc

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 starlink-dpac-java-doc using aptitude by running the following command:

sudo aptitude -y install starlink-dpac-java-doc

To uninstall only the starlink-dpac-java-doc package we can use the following command:

sudo apt-get remove starlink-dpac-java-doc

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

sudo apt-get -y autoremove starlink-dpac-java-doc

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

sudo apt-get -y purge starlink-dpac-java-doc

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

sudo apt-get -y autoremove --purge starlink-dpac-java-doc

Dependencies

starlink-dpac-java-doc have the following dependencies:

References

Summary

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