在Ubuntu中使用apt安裝軟件時出現「Unable to lock the administration directory (/var/lib/dpkg/) is another process using it」的錯誤,spa
解決方案之一是殺死全部apt進程:code
使用命令查看apt進程blog
ps -A | grep apt
找到進程ID,殺死進程
sudo kill -9 進程ID
從新運行安裝命令。it