상세 컨텐츠

본문 제목

E: Could not get lock /var/lib/dpkg/lock-frontend 해결

TOOLS/TIPS

by koharin 2021. 2. 5. 23:02

본문

728x90
반응형

E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

 

  • 위와 같은 오류를 리눅스에서 sudo apt-get update와 같은 과정에서 만날 때, 다음과 같이 해결할 수 있다.
  • sudo apt-get updatesudo apt update 과정에서 위의 오류를 생각보다 자주 만나게 되어 정리해본다.

 

#!/bin/bash 

sudo killall apt apt-get
sudo rm /var/lib/apt/lists/lock
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock*

sudo dpkg --configure -a
sudo apt update
  • vi lock-frontend_err.sh (sh 파일 이름은 상관없음)으로 vi 편집기를 열고, 위의 쉘스크립트 코드를 적어 :wq로 저장한다.

 

chmod +x lock-frontend_err.sh
./lock-frontend_err.sh
  • 위의 과정으로 sh 파일에 실행 권한을 준 후, 파일을 실행시키면 해결할 수 있다.
728x90
반응형

관련글 더보기