How To Install libmatthew-io-java on Kali Linux

In this tutorial we learn how to install libmatthew-io-java on Kali Linux. libmatthew-io-java is Extra IO library for Java

Introduction

In this tutorial we learn how to install libmatthew-io-java on Kali Linux.

What is libmatthew-io-java

libmatthew-io-java is:

This library provides extensions to the Java I/O subsystem. Firstly, there is a class which will connect any InputStream with an OutputStream and copies data between them.

Secondly there are two classes for inserting into an Input or OutputStream pipe a command line command, so that everything is piped through that command.

Thirdly there are a pair of classes for splitting streams in two. This can either be to two OuputStreams, or to an OutputStream and a file. Equivelent to the UNIX tool tee in UNIX pipes.

There are three methods to install libmatthew-io-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 libmatthew-io-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 libmatthew-io-java using apt-get by running the following command:

sudo apt-get -y install libmatthew-io-java

Install libmatthew-io-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmatthew-io-java using apt by running the following command:

sudo apt -y install libmatthew-io-java

Install libmatthew-io-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 libmatthew-io-java using aptitude by running the following command:

sudo aptitude -y install libmatthew-io-java

How To Uninstall libmatthew-io-java on Kali Linux

To uninstall only the libmatthew-io-java package we can use the following command:

sudo apt-get remove libmatthew-io-java

Uninstall libmatthew-io-java And Its Dependencies

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

sudo apt-get -y autoremove libmatthew-io-java

Remove libmatthew-io-java Configurations and Data

To remove libmatthew-io-java configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libmatthew-io-java

Remove libmatthew-io-java configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libmatthew-io-java

Dependencies

libmatthew-io-java have the following dependencies:

References

Summary

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