1、問題描述:
在ubuntu中有時由於錯誤的操做,而致使在執行 sudo apt-get install xxxx出現以下錯誤:
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
以下圖所示:
2、緣由與解決方案:
1. 緣由
2. 解決方案
2.1 殺掉全部的apt進程
經過下面的命令,查看apt的全部進程
ps -A | grep apt
從圖中,顯然咱們可以看到存在的進程,而後執行下面的命令:ubuntu
sudo kill -SIGKILL processnumber
其中processnumber就是2473,以下圖執行過程,並再次查看便發現沒有存在的進程的,這樣就能夠正常執行apt命令了!spa