~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/installing/redhat.rst

  • Committer: Marisa Plumb
  • Date: 2011-03-07 16:15:24 UTC
  • mto: (2227.1.3 build) (2235.2.4 build)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: marisa.plumb@gmail.com-20110307161524-zsd1896d4bwowkpz
modifications to redhat install doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
   The EPEL repository is not required in Fedora.
17
17
 
18
 
To add that repository, run the following command:
 
18
To add the EPEL repository, run one of the following commands (choose from the i386(32-bit) or x86_64(64-bit) EPEL repository package).
 
19
 
 
20
Install EPEL Repository on 32-bit Linux 5.X:
19
21
 
20
22
.. code-block:: bash
21
23
 
22
24
  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
23
25
 
 
26
Install EPEL Repository on 64-bit Linux 5.X:
 
27
 
 
28
.. code-block:: bash
 
29
 
 
30
  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
 
31
 
24
32
To add the repository to your distribution you also need to create a /etc/yum.repos.d/drizzle.repo file with the following content:
25
33
 
26
34
*RedHat*
39
47
   enabled=1
40
48
   gpgcheck=0
41
49
 
 
50
**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture (i386 or x86_64).
 
51
 
42
52
*Fedora*
43
53
 
44
54
.. code-block:: ini
55
65
   enabled=1
56
66
   gpgcheck=0
57
67
 
 
68
**$releasever** uses the Fedora version (currently 13 or 14), and **$basearch** is the architecture (i386 or x86_64).
 
69
 
58
70
You can then use the following shell command:
59
71
 
60
72
.. code-block:: bash