How To Install libpgobject-util-dbadmin-perl on Kali Linux

In this tutorial we learn how to install libpgobject-util-dbadmin-perl on Kali Linux. libpgobject-util-dbadmin-perl is PostgreSQL Database Management Facilities for PGObject

Introduction

In this tutorial we learn how to install libpgobject-util-dbadmin-perl on Kali Linux.

What is libpgobject-util-dbadmin-perl

libpgobject-util-dbadmin-perl is:

The PGObject::Util::DBAdmin module provides an interface to the basic Postgres DB manipulation utilities including the following functions: server_version, list_dbs, create, run_file, backup, backup_globals, restore, & drop.

There are three methods to install libpgobject-util-dbadmin-perl 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 libpgobject-util-dbadmin-perl Using apt-get

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

sudo apt-get update

After updating apt database, We can install libpgobject-util-dbadmin-perl using apt-get by running the following command:

sudo apt-get -y install libpgobject-util-dbadmin-perl

Install libpgobject-util-dbadmin-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libpgobject-util-dbadmin-perl using apt by running the following command:

sudo apt -y install libpgobject-util-dbadmin-perl

Install libpgobject-util-dbadmin-perl 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 libpgobject-util-dbadmin-perl using aptitude by running the following command:

sudo aptitude -y install libpgobject-util-dbadmin-perl

How To Uninstall libpgobject-util-dbadmin-perl on Kali Linux

To uninstall only the libpgobject-util-dbadmin-perl package we can use the following command:

sudo apt-get remove libpgobject-util-dbadmin-perl

Uninstall libpgobject-util-dbadmin-perl And Its Dependencies

To uninstall libpgobject-util-dbadmin-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libpgobject-util-dbadmin-perl

Remove libpgobject-util-dbadmin-perl Configurations and Data

To remove libpgobject-util-dbadmin-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libpgobject-util-dbadmin-perl

Remove libpgobject-util-dbadmin-perl configuration, data, and all of its dependencies

We can use the following command to remove libpgobject-util-dbadmin-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libpgobject-util-dbadmin-perl

Dependencies

libpgobject-util-dbadmin-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libpgobject-util-dbadmin-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.