关山初度尘未洗,策马扬鞭再奋蹄!这篇文章主要讲述Ubuntu16.04 appstreamcli错误相关的知识,希望能为你提供帮助。
解决方案:https://askubuntu.com/questions/774986/appstreamcli-hanging-with-100-cpu-usage-during-update
搬运过来是:
This is caused by a bug
https://bugs.launchpad.net/ubuntu/+source/appstream/+bug/1579712
The working solution (just tried myself):
First kill
appstreamcli
, either manually or with
sudo kill -KILL $(pgrep appstreamcli)
or
sudo pkill -KILL appstreamcli
Then:
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
【Ubuntu16.04 appstreamcli错误】After this you will be able to proceed with apt-get update as usual
推荐阅读
- 专业又高效的APP外包定制平台
- 解决CMake Error: The source directory "*" does not appear to contain CMakeLists.txt.
- 安卓Adapter去item重复使用的方案!
- 安卓电量优化之WakeLock锁机制全面解析
- Android开发之漫漫长途 X——Android序列化
- android模拟器推荐
- Hadoop源码篇---解读Mapprer源码outPut输出
- android 性能优化 -- 启动过程 冷启动 热启动
- android studio提交到开源git时出现:fatal: refusing to merge unrelated histories的解决办法