更新期间 appstreamcli 挂起,CPU 使用率为 100%

更新期间 appstreamcli 挂起,CPU 使用率为 100%

appstreamcli一直使用 100% 的核心,导致笔记本电脑过热。我唯一的解决办法就是关闭它。以下是top

top 的输出显示 appstreamcli 的 CPU 使用率为 100%

我可以使用 或 来终止进程。appstreamcli但是一旦我这样做,进程就会再次返回并挂起更新。如果我随后终止它,我会得到以下输出:sudo kill pidsudo killall appstreamclisudo apt updateappstreamcli

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

这个进程是什么?为什么它占用这么多 CPU?

答案1

这是由错误引起的https://bugs.launchpad.net/ubuntu/+source/appstream/+bug/1579712
可行的解决方案(刚刚自己尝试过):

第一次击杀appstreamcli,手动或使用

sudo kill -KILL $(pgrep appstreamcli)

或者

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

此后,你将能够照常进行 apt-get update

答案2

或者,无论出于什么原因,如果您不想安装 repo 包而只是等待更新,您可以将其完全卸载。

这将删除 KDE:Plasma 上的 Discover,因此我推测它还将删除 Gnome 软件,或您的 Ubuntu Flavor 添加的任何内容。如果是这种情况,您可以在 Kubuntu 上使用 Muon,或在基于 GTK 的 DE 上使用 Synaptic。

在运行此程序之前,请务必检查要删除的软件包,以确保它们没有问题。

你可以通过运行来找出某个东西是什么

apt show appstream

卸载appstream运行

sudo apt remove appstream

相关内容