APT是一款非常优秀的软件管理工具,Linux系统采用APT来安装和管理各种软件。安装成功Linux系统后,需要及时更新APT软件,否则一些软件可能无法正常安装。更新APT时,需要执行sudo apt-get update命令,发现出现以下错误
7ffeed1eb000-7ffeed1ed000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
Aborted (core dumped)
正在读取软件包列表… 完成
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
解决方案:
sudo apt-get purge libappstream3
或者
sudo apt-get remove libappstream3
执行完后再次执行sudo apt-get update命令就正常了。