How To Install libgluegen2-doc on Debian 11
Introduction
In this tutorial we learn how to install libgluegen2-doc
on Debian 11.
What is libgluegen2-doc
libgluegen2-doc is:
Gluegen reads as input ANSI C header files and separate configuration files which provide control over many aspects of the glue code generation. GlueGen uses a complete ANSI C parser and an internal representation (IR) capable of representing all C types to represent the APIs for which it generates interfaces. It has the ability to perform significant transformations on the IR before glue code emission. GlueGen is currently powerful enough to bind even low-level APIs such as the Java Native Interface (JNI) and the AWT Native Interface (JAWT) back up to the Java programming language.
This package includes the API documentation for Gluegen package.
There are three methods to install libgluegen2-doc
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libgluegen2-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libgluegen2-doc
using apt-get
by running the following command:
sudo apt-get -y install libgluegen2-doc
Install libgluegen2-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libgluegen2-doc
using apt
by running the following command:
sudo apt -y install libgluegen2-doc
Install libgluegen2-doc Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libgluegen2-doc
using aptitude
by running the following command:
sudo aptitude -y install libgluegen2-doc
How To Uninstall libgluegen2-doc on Debian 11
To uninstall only the libgluegen2-doc
package we can use the following command:
sudo apt-get remove libgluegen2-doc
Uninstall libgluegen2-doc And Its Dependencies
To uninstall libgluegen2-doc
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove libgluegen2-doc
Remove libgluegen2-doc Configurations and Data
To remove libgluegen2-doc
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge libgluegen2-doc
Remove libgluegen2-doc configuration, data, and all of its dependencies
We can use the following command to remove libgluegen2-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgluegen2-doc
Dependencies
libgluegen2-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libgluegen2-doc
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.