Projekt

Allgemein

Profil

Repo epel » Historie » Version 1

Jeremias Keihsler, 15.03.2024 14:21

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
<pre><code class="bash">
10
dnf install epel-release
11
</code></pre>
12
13
Notes on: CRB
14
15
CRB is "Code Ready Builder" - PowerTools was a carryover from CentOS, which is still the equivalent of CRB in RHEL. crb will be the repository name going forward in Rocky Linux and other derivatives starting with version 9. Rocky Linux 8 matches CentOS's use of PowerTools in order to be as compatible as possible with what users expect from a rebuild of version 8.
16
17
<pre><code class="bash">
18
/usr/bin/crb enable
19
</code></pre>
20
21
h2. Test
22
23
the listing of available repositories should now include @epel@ and eventually @crb@
24
<pre><code class="bash">
25
dnf repolist
26
</code></pre>