Install EPEL in 3 easy steps
1.
First, enable the CodeReady Linux Builder repository. You already have access to it; you just need to enable it.
On CentOS Stream:
$ sudo dnf config-manager --set-enabled crb
Plain Text
복사
On RHEL:
$ sudo subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
Plain Text
복사
2.
Next, install the EPEL RPM.
On CentOS Stream:
$ sudo dnf install epel-release epel-next-release
Plain Text
복사
On RHEL:
$ sudo dnf install \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
Plain Text
복사
3.
That's it! There isn't actually a third step, so now you can install software from EPEL. For example, here's how to install inxi, a handy command to gather system stats:
$ sudo dnf install inxi
Plain Text
복사
EPEL for better living
The EPEL repository is a great convenience repo to help you get the software you may not necessarily need but definitely want. The first thing I installed on my RHEL laptop was EPEL, and I love the applications it makes available to me.
Try EPEL out, and if you package applications, consider contributing to the repository, so others can benefit from your hard work!