How To Install libnot-yet-commons-ssl-java on Debian 9

In this tutorial we learn how to install libnot-yet-commons-ssl-java on Debian 9. libnot-yet-commons-ssl-java is Not-yet-commons-SSL is a library to make SSL in Java easier

Introduction

In this tutorial we learn how to install libnot-yet-commons-ssl-java on Debian 9.

What is libnot-yet-commons-ssl-java

libnot-yet-commons-ssl-java is:

This library implements SSL functionality in a way that is easy and flexible. It improves security by checking CRLs by default. It allows options to be set or unset for each SSLSocketFactory. It supports many different formats of PKCS8 and OpenSSL Encrypted Private Keys, and it automatically detects the type of KeyMaterial or TrustMaterial.

It’s called “Not-Yet-Commons-SSL” because of the intention of one day making it an official Apache project. It currently has no affiliation with the Apache Software Foundation.

There are three methods to install libnot-yet-commons-ssl-java on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libnot-yet-commons-ssl-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 libnot-yet-commons-ssl-java using apt-get by running the following command:

sudo apt-get -y install libnot-yet-commons-ssl-java

Install libnot-yet-commons-ssl-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libnot-yet-commons-ssl-java using apt by running the following command:

sudo apt -y install libnot-yet-commons-ssl-java

Install libnot-yet-commons-ssl-java 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 libnot-yet-commons-ssl-java using aptitude by running the following command:

sudo aptitude -y install libnot-yet-commons-ssl-java

How To Uninstall libnot-yet-commons-ssl-java on Debian 9

To uninstall only the libnot-yet-commons-ssl-java package we can use the following command:

sudo apt-get remove libnot-yet-commons-ssl-java

Uninstall libnot-yet-commons-ssl-java And Its Dependencies

To uninstall libnot-yet-commons-ssl-java and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove libnot-yet-commons-ssl-java

Remove libnot-yet-commons-ssl-java Configurations and Data

To remove libnot-yet-commons-ssl-java configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge libnot-yet-commons-ssl-java

Remove libnot-yet-commons-ssl-java configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libnot-yet-commons-ssl-java

Dependencies

libnot-yet-commons-ssl-java have the following dependencies:

References

Summary

In this tutorial we learn how to install libnot-yet-commons-ssl-java package on Debian 9 using different package management tools: apt, apt-get and aptitude.