카테고리 없음
RHCSA 자격증 : YUM 저장소 관리(2일차)
바로퇴장
2021. 9. 4. 17:36
YUM 저장소 관리
명령어 정리
yum repolist : 현재 repo 저장소 확인
yum clean all : 저장소 설정 적용하기
yum verify httpd : httpd 패키지 검증하기
yum install yum-downloadonly : rpm 파일만 다운로드(설치 x)
=>
repo 저장소 추가하기
# vim /etc/yum.repos.d/[아무이름].repo
============================
[myrepo]
name=myrepo
baseurl=http://[주어진 URL]
enabled=1
gpgcheck=0
============================
# yum clean all
[저장소 이름]
name=저장소 표시이름
baseurl=저장소 주소 (Ex] http://url.org/packages/centos/ )
enabled=활성화 여부(0 또는 1)
gpgcheck=gpg 서명키 사용여부(0 또는 1)
gpgkey= (서명키를 사용한다면)서명키 주소 입력
Repository 인증키 불러오기
rpm --import http://centos.mirror.cdnetworks.com/6/os/x86_64/RPM-GPG-KEY-CentOS-6
EPEL 저장소 추가하기
yum install epel-release
EMI 저장소
- OS 버전별 패키지 파일 URL
- CentOS 5: http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
- CentOS 6: http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
- CentOS 7: http://rpms.famillecollet.com/enterprise/remi-release-7.rpm