Skip to content

Instantly share code, notes, and snippets.

@socketbox
Created July 6, 2021 16:43
Show Gist options
  • Save socketbox/516b1f3d0ebd40c43dea4d8701027e2c to your computer and use it in GitHub Desktop.
Save socketbox/516b1f3d0ebd40c43dea4d8701027e2c to your computer and use it in GitHub Desktop.
Install postgresql-client-13 on Debian Buster
apt update
apt -y install gnupg2
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list
apt update
apt -y install postgresql-client-13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment