반응형

sudo apt-get update시 404 오류 발생 이슈 해결

cd /etc/apt \
&& sudo cp sources.list sources.list.old \
&& sudo sed -i 's,http://.*ubuntu.com,http://old-releases.ubuntu.com,g' sources.list \
&& sudo sed -i 's,http://.*ftp.daum.net,http://old-releases.ubuntu.com,g' sources.list

sudo apt-get update시 "Hash Sum mismatch" 오류 발생

sudo rm -rf /var/lib/apt/lists/* \
&& sudo apt-get clean \
&& sudo apt-get update

sudo apt-get update 이후에도 특정 패키지가 설치되지 않는 경우

sudo apt-get install software-properties-common \
&& sudo apt-add-repository universe \
&& sudo apt-get update

프로세스 실행이 너무 느릴경우 해결

sudo apt-get install haveged

"E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?" 오류 발생

sudo rm /var/lib/dpkg/lock \
&& sudo rm /var/lib/dpkg/updates/*
반응형

'Development > Linux' 카테고리의 다른 글

[Linux] 설정  (0) 2020.12.29
[Linux] SSH 원격 접속 설정  (0) 2019.05.26
[Linux] 부팅시 자동으로 su 권한 명령어 실행시키기  (0) 2019.03.10
[Linux] 명령어  (0) 2017.01.30
[Linux] 계정  (0) 2017.01.30

+ Recent posts