How To Install starplot on Kali Linux
Introduction
In this tutorial we learn how to install starplot on Kali Linux.
What is starplot
starplot is:
StarPlot is a GTK+ based program that can be used interactively to view three-dimensional perspective charts of stars. Charts can be re-centered, rotated, or zoomed in or out with a mouse click (this can also, of course, be done via dialog boxes for more precision). Stars may be viewed (or ignored) by spectral class and absolute magnitude.
StarPlot is packaged with starconvert, a utility that converts line-oriented stellar data records to StarPlot format. Most star data files available on the Internet can be converted this way if a short file describing the original file format is provided to starconvert.
There are three methods to install starplot 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 starplot Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install starplot using apt-get by running the following command:
sudo apt-get -y install starplotInstall starplot Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install starplot using apt by running the following command:
sudo apt -y install starplotInstall starplot 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 starplot using aptitude by running the following command:
sudo aptitude -y install starplotHow To Uninstall starplot on Kali Linux
To uninstall only the starplot package we can use the following command:
sudo apt-get remove starplotUninstall starplot And Its Dependencies
To uninstall starplot and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove starplotRemove starplot Configurations and Data
To remove starplot configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge starplotRemove starplot configuration, data, and all of its dependencies
We can use the following command to remove starplot configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge starplotDependencies
starplot have the following dependencies:
References
Summary
In this tutorial we learn how to install starplot package on Kali Linux using different package management tools: apt, apt-get and aptitude.