현재에최선을

[linux] centos 8 단종에 따른 대체 리눅스 선택 ? 본문

[리눅스]

[linux] centos 8 단종에 따른 대체 리눅스 선택 ?

현재에최선을 2022. 4. 27. 18:04

centos 8 단종에 따른 대체 리눅스 선택

참조 : https://feelsogoodcamp.tistory.com/28

 

Centos 2021년 단종에 따른 대체 OS선택, Rocky Linux, Ubuntu

▶ Centos 단종 레드햇은 CentOS 프로젝트에 대해 2020년 12월 8일(현지시간) CentOS 8 버전의 지원을 2021년 말에 종료하는 것을 발표했습니다. 이전 버전인 CentOS 7은 계획대로 2024년까지 계속 되지만, Cent

feelsogoodcamp.tistory.com

 

centos 8 upgrade 방법

1. 미러 사이트 정보 수정

sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

2. repo 추가

1) dnf install epel-release

2) dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm

3. dnf update

4. reboot

5. dnf clean all

6. dnf swap centos-{linux,stream}-repos

7. dnf install centos-release-stream

8. dnf distro-sync -y

9. reboot,   cat /etc/redhat-release로 버전 확인

Comments