리셋 되지 말자

Could not get lock /var/lib/dpkg/lock-frontend 에러 본문

Linux Tips

Could not get lock /var/lib/dpkg/lock-frontend 에러

kyeongjun-dev 2021. 4. 10. 11:04

에러 로그

$ sudo apt-get install git -y
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?

 

해결 방법

kgu0724.tistory.com/71

 

리눅스 에러 Could not get lock /var/lib/dpkg/lock-frontend

이 글은 nodejs 설치시에 발생된 에러들입니다. E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend ..

kgu0724.tistory.com

감사합니다!

 

$ sudo rm /var/lib/apt/lists/lock
$ sudo rm /var/cache/apt/archives/lock 
$ sudo rm /var/lib/dpkg/lock*
$ sudo apt install -y git
Comments