How To Install opengl-4-html-doc on Kali Linux
Introduction
In this tutorial we learn how to install opengl-4-html-doc on Kali Linux.
What is opengl-4-html-doc
opengl-4-html-doc is:
This is the OpenGL API man pages.
The ARB Ecosystem TSG maintains an up-to-date version of the OpenGL man pages.
The documentation is exactly what is available from: http://www.opengl.org/sdk/docs/man4/xhtml/
There are three methods to install opengl-4-html-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 opengl-4-html-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install opengl-4-html-doc using apt-get by running the following command:
sudo apt-get -y install opengl-4-html-docInstall opengl-4-html-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install opengl-4-html-doc using apt by running the following command:
sudo apt -y install opengl-4-html-docInstall opengl-4-html-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 opengl-4-html-doc using aptitude by running the following command:
sudo aptitude -y install opengl-4-html-docHow To Uninstall opengl-4-html-doc on Kali Linux
To uninstall only the opengl-4-html-doc package we can use the following command:
sudo apt-get remove opengl-4-html-docUninstall opengl-4-html-doc And Its Dependencies
To uninstall opengl-4-html-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove opengl-4-html-docRemove opengl-4-html-doc Configurations and Data
To remove opengl-4-html-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge opengl-4-html-docRemove opengl-4-html-doc configuration, data, and all of its dependencies
We can use the following command to remove opengl-4-html-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge opengl-4-html-docDependencies
opengl-4-html-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install opengl-4-html-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.