문제
$ sudo apt install yum
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package yum
yum이 설치가 안된다.
원인
ubuntu에서 package를 다운로드하는 홈페이지 주소가 추가되어 있지 않아서 그렇다.
해결
/etc/apt/source.list에 다음 내용을 추가한다. (혹시 모르니 source.list파일 백업 필수)
deb http://archive.ubuntu.com/ubuntu bionic main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu bionic-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu bionic-updates main restricted universe multiverse
apt-get을 업데이트 한다.
apt-get update
이제 설치가 안되던 yum 패키지가 잘 설치된다.
+) yum은 레드햇 계열 리눅스 파일 관리자라고 한다. 우분투에서는 그냥 apt 쓰면 된다.