wiki:UsersWikiPostgis15Debian6pkg

Version 2 (modified by Mike Taves, 12 years ago) ( diff )

How to install PostGIS 1.5 on Debian 6.0 (squeeze) from packages

ComponentVersion
PostGIS1.5
PostgreSQL8.4
PROJ4.7
GEOS3.2

Either log-in as root, or use "su - root" from a user account with admin privileges. Install everything using:

apt-get install postgresql-8.4-postgis

Accept and install the approx 12 packages.

Complete a post-install by creating a template, which can be re-used for creating multiple spatially-enabled databases. Or if you just want to make one spatially enabled database, you can modify the commands for your needs.

Log-in as postgres from root using "su - postgres", and use the following commands:

createdb template_postgis
createlang plpgsql template_postgis
psql -d template_postgis -f /usr/share/postgresql/8.4/contrib/postgis-1.5/postgis.sql
psql -d template_postgis -f /usr/share/postgresql/8.4/contrib/postgis-1.5/spatial_ref_sys.sql
psql -d template_postgis -f /usr/share/postgresql/8.4/contrib/postgis_comments.sql
Note: See TracWiki for help on using the wiki.