이와같은 에러가 날경우 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 |
'Programming > Server & Database' 카테고리의 다른 글
[Ubuntu] rsync로 백업 하기 (0) | 2021.01.29 |
---|---|
[UBUNTU] 화면 잠금, 화면 끄기 해제하기 (0) | 2020.06.25 |
[Database] Mysql Table 생성 (0) | 2020.04.29 |
MariaDB 비밀번호, 권한 설정 (0) | 2020.04.22 |
[Ubuntu] PgAdmin 설치 (0) | 2020.01.29 |