Install postgresql-client
Installing postgresql-client package on Debian Unstable (Sid) is as easy as running the following command on terminal:
sudo apt-get update sudo apt-get install postgresql-client
postgresql-client package information
distro | Debian Unstable (Sid) |
---|---|
section | Main |
name | postgresql-client |
version | 9.5+173 |
description | front-end programs for PostgreSQL (supported version) |
subsection | database |
maintainer | Debian PostgreSQL Maintainers |
Uninstall postgresql-client
To remove just postgresql-client package itself from Debian Unstable (Sid) execute on terminal:
sudo apt-get remove postgresql-client
Uninstall postgresql-client and it’s dependent packages
To remove the postgresql-client package and any other dependant package which are no longer needed from Debian Sid.
sudo apt-get remove --auto-remove postgresql-client
Purging postgresql-client
If you also want to delete configuration and/or data files of postgresql-client from Debian Sid then this will work:
sudo apt-get purge postgresql-client
To delete configuration and/or data files of postgresql-client and it’s dependencies from Debian Sid then execute:
sudo apt-get purge --auto-remove postgresql-client