How To Install casacore-data on Kali Linux
Introduction
In this tutorial we learn how to install casacore-data on Kali Linux.
What is casacore-data
casacore-data is:
This package will install a basic set of data tables to be used by Common Astronomy Software Applications core library at runtime and test:
- IGRF: International Geomagnetic Reference Field data
- Jet Propulsion Laboratory Development Ephemeris
- Sources: Table of ICRF2 reference source coordinates
- Lines: Table of spectral line frequencies
- Observatories: Table of radio observatory coordinates
- TAI_UTC: Difference table between TAI and UTC
Note that the earth orientation data are not available yet.
There are three methods to install casacore-data 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 casacore-data Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install casacore-data using apt-get by running the following command:
sudo apt-get -y install casacore-dataInstall casacore-data Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install casacore-data using apt by running the following command:
sudo apt -y install casacore-dataInstall casacore-data 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 updateAfter updating apt database, We can install casacore-data using aptitude by running the following command:
sudo aptitude -y install casacore-dataHow To Uninstall casacore-data on Kali Linux
To uninstall only the casacore-data package we can use the following command:
sudo apt-get remove casacore-dataUninstall casacore-data And Its Dependencies
To uninstall casacore-data and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove casacore-dataRemove casacore-data Configurations and Data
To remove casacore-data configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge casacore-dataRemove casacore-data configuration, data, and all of its dependencies
We can use the following command to remove casacore-data configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge casacore-dataDependencies
casacore-data have the following dependencies:
- casacore-data-igrf
- casacore-data-jpl-de200
- casacore-data-jpl-de405
- casacore-data-lines
- casacore-data-observatories
- casacore-data-sources
- casacore-data-tai-utc
References
Summary
In this tutorial we learn how to install casacore-data package on Kali Linux using different package management tools: apt, apt-get and aptitude.