在Ubuntu linux中有一个deb包安装出了问题,无法安装,也无法卸载,报错如下:
dpkg: error processing package xxx (–purge):
installed xxx package post-removal script subprocess returned error exit status 1
Errors were encountered while processing
尝试如下命令:
sudo dpkg --purge --force-all xxx
sudo apt install -f
这两条命令都执行了,仍然不行。
后来按照如下操作:
sudo vi /var/lib/dpkg/status
# remove all entries about the package and save , then try again. (找到报错的包相关的所有内容,删掉)
sudo apt-get update
问题解决了。
评论区