How To Install libonemind-commons-invoke-java on Kali Linux

In this tutorial we learn how to install libonemind-commons-invoke-java on Kali Linux. libonemind-commons-invoke-java is Java invocation framework library

Introduction

In this tutorial we learn how to install libonemind-commons-invoke-java on Kali Linux.

What is libonemind-commons-invoke-java

libonemind-commons-invoke-java is:

The OneMind commons-invoke framework is a complimentary framework to the reflection. While reflection allow discovery/invocation of the java object through JVM kernel, the invocation framework allows programmatic help for method lookup and invocation.

There are three methods to install libonemind-commons-invoke-java 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 libonemind-commons-invoke-java Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libonemind-commons-invoke-java using apt-get by running the following command:

sudo apt-get -y install libonemind-commons-invoke-java

Install libonemind-commons-invoke-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libonemind-commons-invoke-java using apt by running the following command:

sudo apt -y install libonemind-commons-invoke-java

Install libonemind-commons-invoke-java 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 update

After updating apt database, We can install libonemind-commons-invoke-java using aptitude by running the following command:

sudo aptitude -y install libonemind-commons-invoke-java

How To Uninstall libonemind-commons-invoke-java on Kali Linux

To uninstall only the libonemind-commons-invoke-java package we can use the following command:

sudo apt-get remove libonemind-commons-invoke-java

Uninstall libonemind-commons-invoke-java And Its Dependencies

To uninstall libonemind-commons-invoke-java and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libonemind-commons-invoke-java

Remove libonemind-commons-invoke-java Configurations and Data

To remove libonemind-commons-invoke-java configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libonemind-commons-invoke-java

Remove libonemind-commons-invoke-java configuration, data, and all of its dependencies

We can use the following command to remove libonemind-commons-invoke-java configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libonemind-commons-invoke-java

Dependencies

libonemind-commons-invoke-java have the following dependencies:

References

Summary

In this tutorial we learn how to install libonemind-commons-invoke-java package on Kali Linux using different package management tools: apt, apt-get and aptitude.