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 update
나 sudo 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
Ubuntu CMake 설치 Ubuntu Install Latest Release CMake (0) | 2021.03.20 |
---|---|
WAMP 웹서버 설치하기 (0) | 2021.02.23 |
[Ubuntu] SW 업데이트 서버 kakao로 변경 (0) | 2021.02.04 |
Ubuntu: chrome is out of date (Ubuntu chrome 업데이트) (0) | 2021.02.04 |
VSCode C++ 설정 (0) | 2021.01.21 |