Changes between Initial Version and Version 1 of UsersWikiPostGIS20Fedora16pgdg


Ignore:
Timestamp:
Apr 12, 2012, 3:44:21 AM (12 years ago)
Author:
Mike Taves
Comment:

partially complete

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiPostGIS20Fedora16pgdg

    v1 v1  
     1= How to install PostGIS 2.0 on Fedora 16 (''Verne'') from packages =
     2
     3This installation method uses YUM packages maintained by Devrim GUNDUZ of the PostgreSQL Global Develompent Group (PGDG). For an overview of installing PostgreSQL using this method, see other details at http://wiki.postgresql.org/wiki/YUM_Installation.
     4
     5== Configure YUM ==
     6
     7These instructions will assume your user account has administrative privledges using `sudo`, and/or that you are using a graphical editor `gedit`, however use whatever text utility you are comfortable with. Open a terminal, e.g., click on Applications > System Tools > Terminal.
     8
     9Open the first file for editing:
     10{{{
     11sudo gedit /etc/yum.repos.d/fedora.repo
     12}}}
     13
     14On line 10, at the end of the `[fedora]` section, insert:
     15{{{
     16exclude=postgresql*
     17}}}
     18
     19Save and close the file. Open the second file:
     20{{{
     21sudo gedit /etc/yum.repos.d/fedora-updates.repo
     22}}}
     23
     24On line 9, at the end of the `[updates]` section, insert:
     25{{{
     26exclude=postgresql*
     27}}}
     28Save and close the file.
     29
     30== Download and install PGDG RPM file ==
     31
     32A PGDG RPM file needs to be downloaded for your platform and your PostgreSQL version requirements (you can choose the later). For example, if you have a 32-bit OS and want to install PostgreSQL 9.1:
     33{{{
     34curl -O http://yum.postgresql.org/9.1/fedora/fedora-16-i386/pgdg-fedora91-9.1-4.noarch.rpm
     35sudo rpm -ivh pgdg-fedora91-9.1-4.noarch.rpm
     36}}}
     37
     38== Install PostGIS ==
     39