반응형
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?
패키지를 설치하려고 했으나 위와 같은 에러 메시지가 떴습니다
이럴 때 해결방법 정리
1. 실행 중인 프로세스를 끕니다
sudo killall apt apt-get
2. 실행중인 프로세스가 없다고 뜨면, 디렉터리들을 삭제합니다
sudo rm /var/lib/apt/lists/lock
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock*
3. 마무리
sudo dpkg --configure -a
sudo apt update
그러면 설치가 잘 되는군요 :)
반응형
'Linux' 카테고리의 다른 글
[CentOS8] nginx 웹서버(2) - 사용자 디렉터리로 호스팅, 가상호스트, Basic Authentication (0) | 2021.05.05 |
---|---|
[CentOS8] nginx 웹서버(1) - 구축, php설정 (0) | 2021.05.05 |
[CentOS8] 보조 DNS 서버 구축 (0) | 2021.02.09 |
[CentOS8] SAMBA 사용법 (0) | 2021.02.08 |
[CentOS8] ssh 원격접속 명령어 사용법 (비밀번호사용, 전자서명) (0) | 2021.02.02 |