1 2 3 4 5 6 7 8 9 10 11 12 13
psql notes Backup: $ pg_dump -U {user-name} {source_db} -f {dumpfilename.sql} Restore: $ psql -U {user-name} -d {desintation_db}-f {dumpfilename.sql} Postgres 8.4/geodjango setup on centos: <http://invisibleroads.com/tutorials/postgresql-postgis-install.html>