Tagged: CentOS8

0

[Linux] CentOS 8의 외부 Repository 설정

CentOS 8이 EOS되면서 패키지 업데이트가 안되더라구요. 아래와 같이 repository 설정파일을 수정하면 외부 Repository를 사용해서 패키지 설치 및 업데이트가 가능합니다. [root@centos8 ~]# sed -i ‘s/mirrorlist/#mirrorlist/g’ /etc/yum.repos.d/CentOS-* [root@centos8 ~]# sed -i ‘s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g’ /etc/yum.repos.d/CentOS-* 위 명령어로 repository...

0

[Linux]VirtualBox에 CentOS8 설치하기

VirtualBox(version 7.0.8)에 CentOS 8을 설치하는 방법을 소개합니다. 특히 설치 이후에 PuTTY나 MobaXterm과 같은 유틸리티를 사용해서 쉽게 VM에 접속할 수 있도록 네트워크 어탭터 종류를 “어댑터에 브리지”를 선택하겠습니다(아래 4번 단계). 매우 중요합니다. 먼저 CentOS 8 설치를...