wiki:UsersWikiPostGIS14Ubuntu1004pkg

How to install PostGIS 1.4 on Ubuntu 10.04 LTS (lucid) from packages

ComponentVersion
PostGIS1.4.0
PostgreSQL8.4.11
PROJ4.7.0
GEOS3.1.0

Install everything using:

sudo 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.

sudo -u postgres createdb template_postgis
sudo -u postgres createlang plpgsql template_postgis
sudo -u postgres psql -d template_postgis -f /usr/share/postgresql/8.4/contrib/postgis.sql
sudo -u postgres psql -d template_postgis -f /usr/share/postgresql/8.4/contrib/spatial_ref_sys.sql
sudo -u postgres psql -d template_postgis -f /usr/share/postgresql/8.4/contrib/postgis_comments.sql

See also

Last modified 12 years ago Last modified on Mar 6, 2012, 2:36:44 AM
Note: See TracWiki for help on using the wiki.