How To Install starlink-table-java on Kali Linux
Introduction
In this tutorial we learn how to install starlink-table-java
on Kali Linux.
What is starlink-table-java
starlink-table-java is:
STIL is a pure Java library for generic input, output and processing of tabular data. It presents to the application programmer a view of a table which looks the same regardless of whether it came from a FITS file, a VOTable, an ASCII text file, a query on a relational database, or whatever. Thus the application doesn’t have to worry about the storage format of tables either when reading or writing them, it can concentrate on doing processing. STIL’s idea of a table is rich enough to include table and column metadata, and table cells which contain scalar or single- or multi-dimensional array data of numerical, string or other types. This is well suited to astronomical data, though it can be of use in other fields as well.
STIL comes with a range of supported input and output formats (including VOTable, FITS, SQL, ASCII, CSV, CDF, GBIN) and can be extended to cope with others.
There are three methods to install starlink-table-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 starlink-table-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 starlink-table-java
using apt-get
by running the following command:
sudo apt-get -y install starlink-table-java
Install starlink-table-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install starlink-table-java
using apt
by running the following command:
sudo apt -y install starlink-table-java
Install starlink-table-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 starlink-table-java
using aptitude
by running the following command:
sudo aptitude -y install starlink-table-java
How To Uninstall starlink-table-java on Kali Linux
To uninstall only the starlink-table-java
package we can use the following command:
sudo apt-get remove starlink-table-java
Uninstall starlink-table-java And Its Dependencies
To uninstall starlink-table-java
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove starlink-table-java
Remove starlink-table-java Configurations and Data
To remove starlink-table-java
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge starlink-table-java
Remove starlink-table-java configuration, data, and all of its dependencies
We can use the following command to remove starlink-table-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge starlink-table-java
Dependencies
starlink-table-java have the following dependencies:
References
Summary
In this tutorial we learn how to install starlink-table-java
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.