How To Install libapacheds-kerberos-codec-java on Ubuntu 18.04

In this tutorial we learn how to install libapacheds-kerberos-codec-java on Ubuntu 18.04. libapacheds-kerberos-codec-java is Apache Directory Server (Kerberos Codec)

Introduction

In this tutorial we learn how to install libapacheds-kerberos-codec-java on Ubuntu 18.04.

What is libapacheds-kerberos-codec-java

libapacheds-kerberos-codec-java is:

ApacheDS is an embbedable directory server entirely written in Java, which has been certified LDAPv3 compatible by the Open Group. Besides LDAP it supports Kerberos 5 and the Change Password Protocol. It has been designed to introduce triggers, stored procedures, queues and views to the world of LDAP which has lacked these rich constructs.

This package contains the kerberos-codec module

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

sudo apt-get -y install libapacheds-kerberos-codec-java

Install libapacheds-kerberos-codec-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libapacheds-kerberos-codec-java using apt by running the following command:

sudo apt -y install libapacheds-kerberos-codec-java

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

sudo aptitude update

After updating apt database, We can install libapacheds-kerberos-codec-java using aptitude by running the following command:

sudo aptitude -y install libapacheds-kerberos-codec-java

How To Uninstall libapacheds-kerberos-codec-java on Ubuntu 18.04

To uninstall only the libapacheds-kerberos-codec-java package we can use the following command:

sudo apt-get remove libapacheds-kerberos-codec-java

Uninstall libapacheds-kerberos-codec-java And Its Dependencies

To uninstall libapacheds-kerberos-codec-java and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libapacheds-kerberos-codec-java

Remove libapacheds-kerberos-codec-java Configurations and Data

To remove libapacheds-kerberos-codec-java configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libapacheds-kerberos-codec-java

Remove libapacheds-kerberos-codec-java configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libapacheds-kerberos-codec-java

References

Summary

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