软件中心下载安装软件进度条卡住了,这时候解决方法为:
先解锁:
sudo rm -rf /var/lib/dpkg/lock
如果此时开启软件中心,发现进度还在, 那么我们需要找到相关的进程关闭他,使用命令:
ps -af | grep dpkg
会看到类似如下的两个进程:
root 1979 1976 0 08:28 pts/1 00:00:00 /bin/sh /var/lib/dpkg/info/update-notifier-common.postinst configure 0.119ubuntu8.4
jeff 2292 2107 0 08:44 pts/2 00:00:00 grep --color=auto dpkg
其中root使用的1979的进程就是要关闭的,我们看到两个数字“1979”,“1976”,不用管只需要关掉1979:
sudo kill -9 1979
搞定,再检查软件中心,卡住的进度条消失了。