Created
May 12, 2014 21:21
-
-
Save adamdilek/b0268c9509983d3719f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install postgres 9.2 | |
vi /etc/apt/sources.list.d/pgdg.list | |
# Add lines below | |
deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main | |
# Run and Install postgres 9.2 | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-9.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment