How To Install libcgicc-doc on Kali Linux
Introduction
In this tutorial we learn how to install libcgicc-doc on Kali Linux.
What is libcgicc-doc
libcgicc-doc is:
An ANSI C++ compliant class library that greatly simplifies the creation of CGI applications for the World Wide Web. libcgicc performs the following functions:
- Parses both GET and POST form data transparently.
- Provides string, integer, floating-point and single- and multiple-choice retrieval methods for form data.
- Provides methods for saving and restoring CGI environments to aid in application debugging.
- Provides full on-the-fly HTML generation capabilities, with support for cookies.
- Supports HTTP file upload.
- Compatible with FastCGI.
This package contains documentation on the usage of the library.
There are three methods to install libcgicc-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 libcgicc-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libcgicc-doc using apt-get by running the following command:
sudo apt-get -y install libcgicc-docInstall libcgicc-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libcgicc-doc using apt by running the following command:
sudo apt -y install libcgicc-docInstall libcgicc-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 libcgicc-doc using aptitude by running the following command:
sudo aptitude -y install libcgicc-docHow To Uninstall libcgicc-doc on Kali Linux
To uninstall only the libcgicc-doc package we can use the following command:
sudo apt-get remove libcgicc-docUninstall libcgicc-doc And Its Dependencies
To uninstall libcgicc-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libcgicc-docRemove libcgicc-doc Configurations and Data
To remove libcgicc-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libcgicc-docRemove libcgicc-doc configuration, data, and all of its dependencies
We can use the following command to remove libcgicc-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libcgicc-docDependencies
libcgicc-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libcgicc-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.