본문 바로가기
컴퓨터 활용(한글, 오피스 등)/50_2.운영체제_리눅스

apt-get update failed on the latest ubuntu-22.04 image

by 3604 2023. 12. 18.
728x90

ㅁ lock 파일 삭제

$cd /var/lib/apt/lists
$ rm lock

ㅁ 임시 해결방법(Temporary workaround)

$sudo rm -f /etc/apt/sources.list.d/archive_uri-*
$sudo apt-get update

or

$sudo apt-get update || true

출처: https://github.com/actions/runner-images/issues/5656

728x90