E:执行脚本时出现问题 APT::Update::Post-Invoke-Success

E:执行脚本时出现问题 APT::Update::Post-Invoke-Success

我运行时出现以下错误sudo apt update

Aborted (core dumped)
Reading package lists... Done
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

使用 CLI 命令删除 libappstream3

sudo apt-get remove libappstream3

或者

sudo apt remove libappstream3

此后,apt update 应该可以再次正常工作。

来源:https://forum.siduction.org/index.php?topic=6174.0

答案2

(在 Matthias 的评论中)https://bugs.launchpad.net/ubuntu/+source/appstream/+bug/1579712/comments/24在错误#1579712上)对我有用。

/usr/bin/appstreamcli如果您随后安装修复包,则删除是可以的。

要手动安装,请执行以下操作(对于 amd64,调整其他架构的 URL):

cd /tmp && mkdir asfix
cd asfix
wget https://launchpad.net/ubuntu/+archive/primary/+files/appstream_0.9.4-1ubuntu1_amd64.deb
wget https://launchpad.net/ubuntu/+archive/primary/+files/libappstream3_0.9.4-1ubuntu1_amd64.deb
sudo dpkg -i *.deb

这应该可以解决问题。

相关内容