apt-get update失败处理:*** Error in `appstreamcli': double free or corruption (fasttop): 0x00000000015c4bf0 ***

好像只要卸载一个东西就可以了(至少我的是这样):

sudo apt-get purge libappstream3

再重新执行update命令,

sudo apt-get update

参考链接:

1. https://blog.csdn.net/taosera/article/details/78148845

2. http://blog.sina.com.cn/s/blog_3e4774e30102wql2.html

apt-get update失败处理:*** Error in `appstreamcli': double free or corruption (fasttop): 0x00000000015c4bf0 ***

原文地址:https://www.cnblogs.com/lfri/p/11693232.html

时间: 2024-11-07 15:42:29

apt-get update失败处理:*** Error in `appstreamcli': double free or corruption (fasttop): 0x00000000015c4bf0 ***的相关文章

ubuntu apt-get update失败 解决方法

ubuntu apt-get update失败 1.出现错误:E:Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable) 出现这个问题的原因可能是有另外一个程序正在运行,导致资源被锁不可用.而导致资源被锁的原因,可能是上次安装时没正常完成,而导致出现此状况. 解决方法:把 /var/lib/apt/lists 中的文件全部删掉 输入以下命令sudo rm /var/cache

windows更新失败进不了系统解决方法_开机停在 第5阶段(共5个阶段)配置Windows update 失败

WIN7 windows更新失败进不了系统解决方法_开机停在 第5阶段(共5个阶段)配置Windows update 失败解决方法 当您关闭了windows update服务后,使用第三方工具更新补丁,在您重启系统的时候,WIN7会卡在系统自动更新的地方. 要解决这个问题很简单.但是网上一大堆文章并没有解决这个问题.很诧异,大婶们都干毛去呢. 网上很多说要重装系统.... 一种理论上可以解决的方法,进入WINPE,打开注册表,到HEK...MACHINE处,选择文件-->加载配置单元,找到你的系

xtrabackup备份失败(error writing file 'UNOPENED')

xtrabackup备份失败 解决了,是因为limit open files值设置太小了 (3)修改资源限制参数 vi /etc/security/limits.conf nproc:用户创建进程数限制 建议65535 nofile:进程打开文件次数限制 建议65535 stack:存放变量的指针 建议65535 软硬限制(soft/hard,软限制到了阈值会警告,硬限制则就是不能再继续做了),*代表所有用户 * soft nproc 65535 * hard nproc 65535 * sof

python执行安装第三方依赖失败:error: Unable to find vcvarsall.bat

一台计算机上同时安装了python2.7和python3.7. 现在为python2.7安装numpy包. 失败:error: Unable to find vcvarsall.bat ========================= 下载安装 Microsoft Visual C++ Compiler for Python 2.7 https://www.microsoft.com/en-us/download/details.aspx?id=44266 user installations

MySQL Workbench update语句错误Error Code: 1175.

rom:http://www.tuicool.com/articles/NJ3QRz MySQL update error: Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Queri

VM虚拟机中Ubuntu中执行apt-get update失败的解决方法(可能有效)

首先确保虚拟机是连接网络的,可以用ping命令检测一下看是否连通网络.采用nat网络的时候确保服务是开的. 如果之前执行过apt-get update命令但是失败了,执行一下      rm -rf /var/lib/apt/lists/partial/*     和  sudo apt-get clean 命令,之后更换源,网上有很多可以试一下,这里推荐一下这个网址      https://launchpad.net/ubuntu/+archivemirrors,用gedit /etc/ap

ubuntu apt-get update 失败 解决方案

找了好多资料,最终都没有搞定,自己研究吧(当然也要查资料) 失败的主要原因是不能访问到repository,至于为什么访问不到,可能是被强了,也可能是真的老了 1,关闭所以源 (怎么着software sources 自己搜索吧) 2,删除/var/lib/apt/lists 所有文件 3,添加阿里云镜像https://launchpad.net/ubuntu/+mirror/mirrors.aliyun.com-archive(要选择适合自己的版本的ubuntu,没有适合的自己看着办,just

Ubuntu 更新源失败[GPG error]

对于错误 GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B70731143DD9F856 可以通过以下方式解决 sudo apt-get clean sudo mv /var/lib/apt/lists /tmp sudo mkdir -p /v

Ubuntu apt-get update失败

当运行apt-get update后出现如下错误时:E: Some index files failed to download, they have been ignored, or old ones used instead. 解决方案: 1. sudo nano /etc/resolv.conf 2. 在其中加入: nameserver=8.8.8.8 3. 重启网络:sudo /etc/init.d/networking restart 重新执行 apt-get update成功!! 有