Changes between Version 182 and Version 183 of GIS/InstallationGuidelines/Linux
- Timestamp:
- 08/05/13 20:41:25 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GIS/InstallationGuidelines/Linux
v182 v183 43 43 NB PostGIS in Debian Lenny is rather old - recommend using the version in Squeeze or Wheezy 44 44 45 Squeeze docs (for Wheezy replace '8.4' with '9.1'): 45 Wheezy users: 46 {{{ 47 apt-get install -y postgresql-9.1-postgis 48 su postgres 49 createuser -s -P gis 50 51 createdb -O gis -E UTF8 gis -T template0 52 psql -d gis -f /usr/share/postgresql/9.1/contrib/postgis-1.5/postgis.sql 53 psql -d gis -f /usr/share/postgresql/9.1/contrib/postgis-1.5/spatial_ref_sys.sql 54 }}} 55 56 Squeeze users: 46 57 {{{ 47 58 apt-get install -y postgresql-8.4-postgis