Unable to acquire the dpkg frontend lock

當運行sudo apt-get install/update/其餘命令時,會出現以下提示:linux

E: 沒法得到鎖 /var/lib/dpkg/lock-frontend - open (11: 資源暫時不可用)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?ubuntu

出現這個問題的緣由多是:frontend

在ubuntu系統的termial下,用apt-get install 安裝軟件的時候,若是在未完成下載的狀況下將terminal close。此時 apt-get進程可能沒有結束。結果,若是再次運行apt-get install 命令安裝軟件時,出現如上錯誤。即有另外一個程序正在佔用apt-get install進程,因爲它在運行時,會佔用軟件源更新時的系統鎖(簡稱‘系統更新鎖’),此時資源被鎖。ui

咱們只須要殺死以前的進程,釋放系統鎖就能夠了:spa

ps -A|grep apt
顯示code

921 ? 00:00:01 apt
而後執行blog

sudo kill 921
————————————————
ps -A 顯示全部進程,進程

grep apt 查找包含字符apt的進程資源

wczlinux@ubuntu:~/test$ sudo apt install gcc
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?
wczlinux@ubuntu:~/test$ ps -A|grep apt
   921 ?        00:00:00 apt.systemd.dai
   961 ?        00:00:00 apt.systemd.dai
wczlinux@ubuntu:~/test$ sudo kill 921
wczlinux@ubuntu:~/test$ sudo kill 961
kill: (961): No such process
wczlinux@ubuntu:~/test$ gcc
相關文章
相關標籤/搜索