CentOS, Redhat Linux에 EPEL, IUS, Remi 저장소 설치하기. (Install EPEL, IUS, and Remi repositories on CentOS and Red Hat)
기본적으로 CentOS는 패키지관리자(yum)으로 프로그램을 설치하면 오래된 버전의 프로그램들이 설치되고,
When CentOS installs the program as a package manager (yum), older versions of the programs are installed.
최신 프로그램은 없는 경우가 있습니다. 그런 경우 EPEL, IUS, Remi 등의 저장소를 추가해주면 신버전의 프로그램을 설치할 수 있습니다.
And there is no latest program. In that case, you can install new versions of programs by adding repositories such as EPEL, IUS, and Remi.
하지만 별도로 설치하는 저장소의 패키지는 기존 시스템과 맞지 않을 수 있습니다. 제 경우엔 그런 문제는 없었지만.
However, the package of the repository that you install separately may not match the existing system. I did not have that problem in my case.
일반적으로 아래 명령을 실행하면 EPEL저장소를 사용하게 됩니다.
Generally, the following command will use the EPEL repository.
sudo yum install epel-release
하지만 설치가 안되는 경우 아래 명령을 참고하세요.
But if you can not install it please refer to the following command.
- CentOS and Red Hat Enterprise Linux 5.x
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-5.noarch.rpm
- CentOS and Red Hat Enterprise Linux 6.x
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
- CentOS and Red Hat Enterprise Linux 7.x
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
- CentOS 5.x
sudo rpm -Uvh https://centos5.iuscommunity.org/ius-release.rpm
- CentOS 6.x
sudo rpm -Uvh https://centos6.iuscommunity.org/ius-release.rpm
- CentOS 7.x
sudo rpm -Uvh https://centos7.iuscommunity.org/ius-release.rpm
- Redhat 5.x
sudo rpm -Uvh https://rhel5.iuscommunity.org/ius-release.rpm
- Redhat 6.x
sudo rpm -Uvh https://rhel6.iuscommunity.org/ius-release.rpm
- Redhat 7.x
sudo rpm -Uvh https://rhel7.iuscommunity.org/ius-release.rpm
- CentOS and Red Hat Enterprise Linux 5.x
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
- CentOS and Red Hat Enterprise Linux 6.x
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
- CentOS and Red Hat Enterprise Linux 7.x
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
# 패키지 설치시 파라메터로 임시로 활성화
# Temporarily activate as a parameter when installing packages
sudo yum --enablerepo=remi install [패키지명]
# 저장소 파일을 수정하여 영구적으로 활성화
# Modify the repository file to permanently activate it
vi /etc/yum.repos.d/remi.repo
enabled 값을 1로 설정.
Set the enabled value to 1
리눅스에서 MySQL 패킷 캡쳐를 이용한 디버깅 (Debugging with MySQL packet capture on Linux) (0) | 2016.11.16 |
---|---|
리눅스에서 HTTP 패킷 캡쳐를 이용한 디버깅 (Debugging with HTTP packet capture on Linux) (0) | 2016.11.16 |
안드로이드 4.3 업데이트 방법 (0) | 2013.07.25 |
리눅스 프린터서버 세팅문제 (0) | 2013.07.09 |
nc와 tar을 이용해 원격으로 폴더/파일 전체 복사하기 (0) | 2013.06.18 |