How To Install php-pgsql on Kali Linux
Introduction
In this tutorial we learn how to install php-pgsql
on Kali Linux.
What is php-pgsql
php-pgsql is:
This package provides a PostgreSQL module for PHP.
PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.
This package is a dependency package, which depends on Debian’s default PHP version (currently 7.4).
There are three methods to install php-pgsql
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 php-pgsql Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install php-pgsql
using apt-get
by running the following command:
Install php-pgsql Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install php-pgsql
using apt
by running the following command:
Install php-pgsql 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.
After updating apt database, We can install php-pgsql
using aptitude
by running the following command:
How To Uninstall php-pgsql on Kali Linux
To uninstall only the php-pgsql
package we can use the following command:
Uninstall php-pgsql And Its Dependencies
To uninstall php-pgsql
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove php-pgsql Configurations and Data
To remove php-pgsql
configuration and data from Kali Linux we can use the following command:
Remove php-pgsql configuration, data, and all of its dependencies
We can use the following command to remove php-pgsql
configurations, data and all of its dependencies, we can use the following command:
Dependencies
php-pgsql have the following dependencies:
References
Summary
In this tutorial we learn how to install php-pgsql
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.