Ubuntu16.04 apt-get 报错:Problem executing scripts APT ……Sub-process returned an error code

virtual box 安装ubuntu16.04 报错:

E:Problem executing scripts APT::Update::Post-Invoke-Success 
'if /usr/bin/test -w /var/cache/app-info -a -e /usr/bin/appstreamcli; 
then appstreamcli refresh > /dev/null; fi', E:Sub-process returned an error code

解决方法:

1.32位的ubuntu系统,直接使用remove libappstream3

    使用以下其中一个命令就行了。

sudo apt-get remove libappstream3

sudo apt remove libappstream3

2.64位 ubuntu的系统,那就通过安装ubuntu系统提供的deb软件包就可以解决问题了。

   按照顺序使用以下三条命令:

sudo pkill -KILL appstreamcli
wget -P /tmp https://launchpad.net/ubuntu/+archive/primary/+files/appstream_0.9.4-1ubuntu1_amd64.deb https://launchpad.net/ubuntu/+archive/primary/+files/libappstream3_0.9.4-1ubuntu1_amd64.deb
sudo dpkg -i /tmp/appstream_0.9.4-1ubuntu1_amd64.deb /tmp/libappstream3_0.9.4-1ubuntu1_amd64.deb

转自:

https://blog.csdn.net/qq_35810476/article/details/81591076

猜你喜欢

转载自blog.csdn.net/guangyacyb/article/details/85808650