반응형
CentOS에서 EPEL 저장소를 사용하기
1. EPEL 릴리스 패키지 설치
CentOS 시스템에서 EPEL 저장소를 사용하려면 먼저 EPEL 릴리스 패키지를 설치해야 합니다.
sudo yum install epel-release
2. EPEL 저장소 활성화
EPEL 저장소는 이제 설치되었지만, 기본적으로 비활성화 상태입니다. 활성화하기 위해 EPEL 저장소 구성 파일을 편집합니다.
편집기를 사용하여 파일을 열고 enabled=1로 설정합니다.
sudo vim /etc/yum.repos.d/epel.repo
또는 vim, vi, 또는 다른 원하는 편집기를 사용할 수 있습니다.
EPEL 저장소의 [epel] 섹션을 열어 enabled=1로 설정합니다. 파일은 아래와 비슷한 내용을 가져야 합니다.
[epel]
name=Extra Packages for Enterprise Linux 8 - $basearch
baseurl=https://mirrors.fedoraproject.org/metalink?repo=epel-8&arch=$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
저장소 파일을 수정한 후 저장하고 종료합니다.
3. EPEL 저장소 확인
EPEL 저장소가 제대로 활성화되었는지 확인하려면 다음 명령을 사용합니다.
sudo yum repolist
명령을 실행하면 현재 활성화된 저장소 목록이 표시됩니다. EPEL 저장소가 목록에 나타나야 합니다.
4. EPEL 패키지 설치
이제 EPEL 저장소를 사용하여 추가 패키지를 설치할 수 있습니다. 예를 들어, htop 패키지를 EPEL 저장소에서 설치하려면
sudo yum install htop
EPEL 저장소를 활성화하면 CentOS 시스템에 다양한 추가 패키지를 손쉽게 설치할 수 있습니다. 필요한 패키지를 검색하고 설치할 수 있습니다.
EPEL 저장소 목록
For EL5_32
rpm -Uvh http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
For EL5_64
rpm -Uvh http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
For EL6_32
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
For EL6_64
rpm -Uvh http://ftp.neowiz.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
RHEL/CentOS 7 64 Bit
## RHEL/CentOS 7 64-Bit ##
# wget http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
# rpm -ivh epel-release-7-0.2.noarch.rpm
RHEL/CentOS 6 32-64 Bit
## RHEL/CentOS 6 32-Bit ##
# wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
## RHEL/CentOS 6 64-Bit ##
# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
RHEL/CentOS 5 32-64 Bit
## RHEL/CentOS 5 32-Bit ##
# wget http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
# rpm -ivh epel-release-5-4.noarch.rpm
## RHEL/CentOS 5 64-Bit ##
# wget http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
# rpm -ivh epel-release-5-4.noarch.rpm
RHEL/CentOS 4 32-64 Bit
## RHEL/CentOS 4 32-Bit ##
# wget http://download.fedoraproject.org/pub/epel/4/i386/epel-release-4-10.noarch.rpm
# rpm -ivh epel-release-4-10.noarch.rpm
## RHEL/CentOS 4 64-Bit ##
# wget http://download.fedoraproject.org/pub/epel/4/x86_64/epel-release-4-10.noarch.rpm
# rpm -ivh epel-release-4-10.noarch.rpm
참고URL
- http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
- Fedora Project DOCS : Extra Packages for Enterprise Linux (EPEL)
728x90
반응형
'리눅스' 카테고리의 다른 글
SSL 인증서의 개인키에 설정된 비밀번호를 제거하는 방법 (0) | 2013.06.18 |
---|---|
[리눅스] CentOS에서 mcrypt 설치방법 (2) | 2013.06.18 |
vim 문자 치환 (0) | 2013.06.18 |
wc, sort, split ,uniq, cut 명령어 (0) | 2013.06.18 |
CentOS 6에 VNC를 설치하고 설정하는 방법 (0) | 2013.06.18 |