How To Install libgluegen2-jni on Ubuntu 18.04

In this tutorial we learn how to install libgluegen2-jni on Ubuntu 18.04. libgluegen2-jni is Tool to automatically generate the Java and JNI code

Introduction

In this tutorial we learn how to install libgluegen2-jni on Ubuntu 18.04.

What is libgluegen2-jni

libgluegen2-jni 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 architecture specific java native interface part.

There are three methods to install libgluegen2-jni on Ubuntu 18.04. 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-jni 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-jni using apt-get by running the following command:

sudo apt-get -y install libgluegen2-jni

Install libgluegen2-jni Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgluegen2-jni using apt by running the following command:

sudo apt -y install libgluegen2-jni

Install libgluegen2-jni 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libgluegen2-jni using aptitude by running the following command:

sudo aptitude -y install libgluegen2-jni

How To Uninstall libgluegen2-jni on Ubuntu 18.04

To uninstall only the libgluegen2-jni package we can use the following command:

sudo apt-get remove libgluegen2-jni

Uninstall libgluegen2-jni And Its Dependencies

To uninstall libgluegen2-jni and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libgluegen2-jni

Remove libgluegen2-jni Configurations and Data

To remove libgluegen2-jni configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libgluegen2-jni

Remove libgluegen2-jni configuration, data, and all of its dependencies

We can use the following command to remove libgluegen2-jni configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libgluegen2-jni

References

Summary

In this tutorial we learn how to install libgluegen2-jni package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.