How To Install libadminutil-data on Ubuntu 18.04

In this tutorial we learn how to install libadminutil-data on Ubuntu 18.04. libadminutil-data is Utility library for 389ds administration – data files

Introduction

In this tutorial we learn how to install libadminutil-data on Ubuntu 18.04.

What is libadminutil-data

libadminutil-data is:

Libraries of functions used to administer 389 directory servers, usually in conjunction with the admin server.

Adminutil is broken into two libraries - libadminutil contains the basic functionality, and libadmsslutil contains SSL versions and wrappers around the basic functions. The PSET functions allow applications to store their preferences and configuration parameters in LDAP, without having to know anything about LDAP. The configuration is cached in a local file, allowing applications to function even if the LDAP server is down. The other code is typically used by CGI programs used for directory server management, containing GET/POST processing code as well as resource handling (ICU ures API).

This package includes data files for the libraries.

There are three methods to install libadminutil-data 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 libadminutil-data Using apt-get

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

sudo apt-get update

After updating apt database, We can install libadminutil-data using apt-get by running the following command:

sudo apt-get -y install libadminutil-data

Install libadminutil-data Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libadminutil-data

Install libadminutil-data 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 libadminutil-data using aptitude by running the following command:

sudo aptitude -y install libadminutil-data

How To Uninstall libadminutil-data on Ubuntu 18.04

To uninstall only the libadminutil-data package we can use the following command:

sudo apt-get remove libadminutil-data

Uninstall libadminutil-data And Its Dependencies

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

sudo apt-get -y autoremove libadminutil-data

Remove libadminutil-data Configurations and Data

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

sudo apt-get -y purge libadminutil-data

Remove libadminutil-data configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libadminutil-data

References

Summary

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