터미널을 사용하여 Google을 업데이트하려고 하는데 사용하려고 할 때마다 sudo apt-get install google-chrome-stable
다음 메시지가 나타납니다.
E: Não foi possível obter trava /var/lib/dpkg/lock-frontend - open (11: Recurso temporariamente indisponível)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
를 사용하여 잠글 수 있는 프로세스를 검색했지만 ps aux | grep -i apt
, 중지할 수 있는 프로세스가 있는지 모르겠습니다.
root 2459 0.0 0.0 4636 764 ? Ss 13:22 0:00 /bin/sh/usr/lib/apt/apt.systemd.daily update
root 2470 0.0 0.0 4636 1644 ? S 13:22 0:00 /bin/sh/usr/lib/apt/apt.systemd.daily lock_is_held update
suzana 11440 0.0 0.0 14444 1020 pts/0 S+ 13:35 0:00 grep -i apt
답변1
dpkg
서비스에서 apt
사용하는 경우 명령 출력을 기반으로 각 프로세스를 찾아 종료 apt.systemd.daily
해야 합니다 .ps
sudo kill -9 dpkg-process
sudo kill -9 apt-process
그 다음에:
sudo dpkg --configure -a
sudo apt update
sudo apt install google-chrome-stable