Projekt

Allgemein

Profil

Repo epel » Historie » Version 1

Jeremias Keihsler, 12.01.2017 11:12

1 1 Jeremias Keihsler
h1. Install EPEL repository
2
3
h2. preliminary note
4
5
Extra Packages for Enterprise Linux (or EPEL) is a Fedora Special Interest Group that creates, maintains, and manages a high quality set of additional packages for Enterprise Linux, including, but not limited to, Red Hat Enterprise Linux (RHEL),CentOS and Scientific Linux (SL).
6
 
7
EPEL packages are usually based on their Fedora counterparts and will never conflict with or replace packages in the base Enterprise Linux distributions. EPEL uses much of the same infrastructure as Fedora, including buildsystem, bugzilla instance, updates manager, mirror manager and more.
8
9
h2. Download EPEL release package
10
11
<pre><code class="bash">
12
cd ~
13
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm
14
</code></pre>
15
16
h2. Install Package
17
18
<pre><code class="bash">
19
yum install epel-release-7-8.noarch.rpm
20
</code></pre>
21
This will add a yum repository config file and import the appropriate GPG keys.
22
23
h2. Test
24
25
the listing of available repositories should now include @epel@
26
<pre><code class="bash">
27
yum repolist
28
</code></pre>