반응형
Redhat이나 CentOS를 사용하면 yum으로 여러 패키지(프로그램)를 설치할 수 있습니다.
하지만 yum을 사용하려면 우선 시스템에 repository 주소가 등록이 되어있어야 패키지를 설치할 수 있습니다.
이 글에서는 daum에서 제공하는 repository로 등록해 보겠습니다.
1. 먼저, 아래 명령어로 repo 파일을 생성합니다.
$ cd /etc/yum.repos.d/
$ vi CentOS-Base.repo
2. 아래 내용을 입력합니다.
[base]
name=CentOS-$releasever - Base
baseurl=http://ftp.daum.net/centos/7/os/$basearch/
gpgcheck=1
gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-7
[updates]
name=CentOS-$releasever - Updates
baseurl=http://ftp.daum.net/centos/7/updates/$basearch/
gpgcheck=1
gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-7
3. yum을 초기화하고 repository를 등록합니다.
$ yum clean all
$ yum repolist
728x90
반응형
'OS > Linux' 카테고리의 다른 글
[bash] 쉘 스크립트 디렉토리 or 파일 존재 여부 확인하는 법 (0) | 2023.06.15 |
---|---|
[RedHat, CentOS] shell에서 환경변수 설정이 적용되지 않는 문제 해결 방법(do not work source command in shell script) (0) | 2023.05.21 |
CentOS - Could not resolve host error 해결 방법 (0) | 2022.02.27 |
centos(linux) 네트워크 프린터로 출력 (0) | 2021.11.26 |
[yum error] Another app is currently holding the yum lock; waiting for it to exit (0) | 2021.09.23 |