How To Install drgeo-doc on Kali Linux
Introduction
In this tutorial we learn how to install drgeo-doc on Kali Linux.
What is drgeo-doc
drgeo-doc is:
Install this package if you want the on-line help for the Dr. Geo software. The on-line help can be used directly from Dr. Geo. However you may need to instruct Dr. Geo about your preferred browser from the Edit->Preferences menu.
The documentation comes in Dutch, English, French, Italian & Spanish.
Dr. Geo is an interactive geometry software. More information about Dr. Geo can be found at its web site http://www.gnu.org/software/dr_geo/dr_geo.html
There are three methods to install drgeo-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 drgeo-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install drgeo-doc using apt-get by running the following command:
sudo apt-get -y install drgeo-docInstall drgeo-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install drgeo-doc using apt by running the following command:
sudo apt -y install drgeo-docInstall drgeo-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 updateAfter updating apt database, We can install drgeo-doc using aptitude by running the following command:
sudo aptitude -y install drgeo-docHow To Uninstall drgeo-doc on Kali Linux
To uninstall only the drgeo-doc package we can use the following command:
sudo apt-get remove drgeo-docUninstall drgeo-doc And Its Dependencies
To uninstall drgeo-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove drgeo-docRemove drgeo-doc Configurations and Data
To remove drgeo-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge drgeo-docRemove drgeo-doc configuration, data, and all of its dependencies
We can use the following command to remove drgeo-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge drgeo-docDependencies
drgeo-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install drgeo-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.