其他分享
首页 > 其他分享> > E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using

E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using

作者:互联网

问题由来:
原本就是想简单下个jupyter
apt-get install jupyter
结果手贱按了ctrl+z把这个任务stop了。(本来想ctrl+c的,,)
然后再次apt-get install jupyter就发现题目的错误了。
那其实很简单,stopped进程占着这个地方,再次apt-get显然是有锁的。
那要么kill掉之前的那次apt-get,要么让上次的继续
我选择继续

ps aux | grep -i apt

出现

root        58  0.5  0.0 121332 66804 pts/0    T    15:44   0:01 apt-get install jupyter
_apt        63  0.0  0.0  84516  8360 pts/0    T    15:44   0:00 /usr/lib/apt/methods/http
root       108  0.0  0.0  11516  1136 pts/1    S+   15:50   0:00 grep --color=auto -i apt
kill -CONT 上次apt-get的进程号(此处是58)

再次apt-get就可以了。

标签:frontend,get,0.0,apt,15,lock,jupyter,pts,dpkg
来源: https://blog.csdn.net/Yonggie/article/details/121081890