[리눅스] CentOS 8 / RHEL 8 외부 Repository 설정
- IT/linux
- 2022. 7. 5. 23:23
외부 DNS 설정 (통신 필요)
command :
# vim /etc/resolv.conf
nameserver 168.126.63.1
CentOS 8, RHEL 8 외부 Repository 설정하기
command :
# cat /etc/yum.repos.d/centos.repo
[AppStream]
name=CentOS-$releasever - AppStream
baseurl=https://vault.centos.org/8.4.2105/AppStream/x86_64/os/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official
[BaseOS]
name=CentOS-$releasever - Base
baseurl=https://vault.centos.org/8.4.2105/BaseOS/x86_64/os/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official
[extras]
name=CentOS-$releasever - Extras
baseurl=https://vault.centos.org/8.4.2105/extras/x86_64/os/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official
GPG-KEY 설정
command :
# cd /etc/pki/rpm-gpg/
# wget https://www.centos.org/keys/RPM-GPG-KEY-CentOS-Official // CentOS GPG-KEY가 원래는 버전마다 있지만, 8부터는 Official 키를 사용하는듯하네요
# ls
RPM-GPG-KEY-CentOS-Official
RPM-GPG-KEY-redhat-release
RPM-GPG-KEY-redhat-beta
업데이트
command :
# yum clean all
# yum update -y
(생략)
installed:
centos-indexhtml-8.0-0.el8.noarch
grub2-tools-efi-1:2.02-99.el8_4.1.x86_64
kernel-4.18.0-305.25.1.el8_4.x86_64
kernel-core-4.18.0-305.25.1.el8_4.x86_64
kernel-devel-4.18.0-305.25.1.el8_4.x86_64
kernel-modules-4.18.0-305.25.1.el8_4.x86_64
Complete!
※. 만약, yum update -y 실행 후 GPG-KEY 인증 오류 시 gpgcheck=0(비활성화)로 설정 및 gpgkey 주석 처리 후 재진행
'IT > linux' 카테고리의 다른 글
[리눅스] rsync 사용법 (파일/디렉토리 복사 및 동기화, 대역폭 제한) (1) | 2022.11.17 |
---|---|
[리눅스] 계정 nologin (계정 잠금) (0) | 2022.11.13 |
[리눅스] sudo 명령어 안될 때 (is not in the sudoers files) (3) | 2021.09.23 |
[리눅스] su: module is unknown 해결 (2) | 2021.09.14 |
[리눅스] scp 명령어 사용법, 이 글 하나면 충분해 (3) | 2021.09.07 |