Programming/Server & Database

[Linux] Could not get lock /var/lib/dpkg/lock/frontend/ , Error

BadaGreen_Kim 2020. 6. 25. 11:36

이와같은 에러가 날경우 Node.js 설치할때 발생되는 오류가고 하지만 본인의경우는 가상환경이나 다른 pc에도 우분투를 설치할때 이와같은 에러가 항상 빈번하게 발생됬다.

 

1
2
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? 
cs

그래서 아래와 같이 몇몇 폴더를 삭제하고 재 업데이트를 해주면 대부분 해결되었다.

1
2
3
4
5
6
7
8
9
10
11
12
13
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
cs