sudo: yum: command not found 오류 해결방법입니다. 해당 문구는 ubuntu nginx에 yum 설치가 되어있지 않기 때문에 생긴 오류입니다. 원래는 yum이 아니라 apt-get을 사용하면 되지만..
yum을 쓰는 명령 대신 apt-get으로 대체할 수 있으니 yum을 설치하려고 굳이 노력하지 않아도 됩니다..
그래도 방법은 있었습니다.
작업환경에 yum을 설치해줍니다.
sudo apt-get install yum
아래와 같은 결과가 반환되며 정상적으로 설치되지 않을 경우 /etc/apt/sources.list 파일에 오류가 있을 수 있습니다.
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
위 명령을 줄마다 차례로 입력합니다.
sudo apt install yum
Reading package lists... Done
Building dependency tree
Reading state information... Done
<span class="has-inline-color has-black-color">E: Unable to locate package yum</span>
Code language: HTML, XML (xml)
아래 명령들을 차례로 실행합니다.
sudo apt-get update
sudo apt-get install yum