Changes between Initial Version and Version 1 of UsersWikiPostGIS20Ubuntu1210


Ignore:
Timestamp:
Feb 5, 2013, 8:46:29 PM (11 years ago)
Author:
PowerKiKi
Comment:

create page

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiPostGIS20Ubuntu1210

    v1 v1  
     1= How to install PostGIS 2.0 on Ubuntu 12.10 (''quantal'') from packages =
     2
     3== Install ==
     4
     5Add PPA and install packages using:
     6{{{
     7sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
     8sudo apt-get update
     9sudo apt-get install postgis
     10}}}
     11
     12
     13== Spatially enabling a database ==
     14
     15Connect to your database using pgAdmin or psql, and run the following commands. To add postgis with raster support:
     16{{{
     17CREATE EXTENSION postgis;
     18}}}
     19
     20To add topology support, a second extension can be created on the database:
     21{{{
     22CREATE EXTENSION postgis_topology;
     23}}}
     24
     25== See also ==
     26 * https://help.ubuntu.com/community/PostgreSQL