ubuntu:solve the problem of 'E:Problem with MergeList /var/lib/apt/lists/'

just run this command: sudo rm /var/lib/apt/lists/* -vfR

it will remove all the software package with the state of ‘apt-get install‘

and no use to leave them, that‘s ok to just r.m.

other conditons can refer to this article:http://blog.csdn.net/gopain/article/details/13291211

ubuntu:solve the problem of 'E:Problem with MergeList /var/lib/apt/lists/'

时间: 2024-10-22 07:51:42

ubuntu:solve the problem of 'E:Problem with MergeList /var/lib/apt/lists/'的相关文章

Ubuntu 16.04错误:正在读取软件包列表... 有错误! E: Encountered a section with no Package: header E: Problem with MergeList /var/lib/apt/lists/ppa.launchpad.net_t-tujikawa_ppa_ubuntu_dists_xenial_main_i18n_Translatio

错误: 正在读取软件包列表... 有错误! E: Encountered a section with no Package: header E: Problem with MergeList /var/lib/apt/lists/ppa.launchpad.net_t-tujikawa_ppa_ubuntu_dists_xenial_main_i18n_Translation-en E: 无法解析或打开软件包的列表或是状态文件. 解决方法: 1.删除上面提示的PPA源,再找到新的源添加.比如直

E:Encountered a section with no Package: header, E:Problem with MergeList /var/lib/apt/lists/******

最近在Ubuntu上安装mysql-server时用命令apt-get install mysql-server出现报错提示: E:Encountered a section with no Package: header, E:Problem with MergeList /var/lib/apt/lists/****** 回想起上一次调用apt-get update时由于update时间太长我直接CTRL+C中止的情形,可能是由于lists中某一个文件没有下载完成,出现解析错误. 可用的解决

W: 无法下载 bzip2:/var/lib/apt/lists/partial/extras.ubuntu.com_ubuntu_dists_trusty_main_source_Sources

1 错误描述 [email protected]:~$ cd 下载 [email protected]:~/下载$ sudo apt-get update 忽略 http://cn.archive.ubuntu.com trusty InRelease 忽略 http://cn.archive.ubuntu.com trusty-updates InRelease 忽略 http://cn.archive.ubuntu.com trusty-backports InRelease 命中 http

Ubuntu遇到apt-get update报错:"E: Could not get lock /var/lib/apt/lists/lock"

sudo apt-get update报错:"E: Could not get lock /var/lib/apt/lists/lock" 出现此问题的原因可能是有另外一个程序在运行,导致资源被加锁,不可用.导致资源被锁的原因可能是上次更新源的操作没有完成! 从上图可以看出,报错的内容是不能获取那个路径下的 lock,咱们就应该删除哪个lock. 删除之后再执行 sudo apt-get update 操作,成功! 原文地址:https://www.cnblogs.com/skzxc/

Ubuntu “无法获得锁”解决方案(E: 无法获得锁 /var/cache/apt/archive

Ubuntu “无法获得锁”解决方案(E: 无法获得锁 /var/cache/apt/archive 现象一: E: 无法获得锁 /var/lib/dpkg/lock - open (11: 资源临时不可用) E: 无法对管理目录(/var/lib/dpkg/)加锁,是不是另一个包管理程序在使用它? 无法执行其他apt-get命令 解决办法: 第一种(比较暴力) 把lock的文件强行删掉,解决问题: sudo rm /var/lib/dpkg/lock 或 sudo rm /var/lib/ap

Ubuntu中针对问题 E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)的解决方案

一.问题描述: 在ubuntu中有时因为错误的操作,而导致在执行 sudo apt-get install xxxx出现如下错误: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)     E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

Ubuntu 安装软件时显示:无法获得锁 /var/lib/dpkg/lock -open(资源暂时不可用)

出错状况:在用 sudo apt-get install 安装软件时,结果终端提示: 无法获得锁 /var/lib/dpkg/lock -open(资源暂时不可用) 无法锁定管理目录(var/lib/dpkg/),是否有其它进程正在占用它? 出错原因:在安装其它软件时,中途退出了终端,但是 apt-get 进程并没有退出. 解决办法: 方法一:终端输入 ps -aux | grep "apt-get", 找到与 apt-get 有关的进程,用 sudo kill PID 杀掉该进程.

(八)ubuntu安装软件提示:Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)

question: [email protected]:/usr/src/Linux-headers-3.5.0-23-generic$ sudo apt-get install cheese [sudo] password for ubuntu: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)E: Unable to lock the administration di

Linux ->> UBuntu ->> Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)

今天在Ubuntu 14.04下用apt-get目录安装SSH的时候发生了这个错误提示.经过一番查找了解可能发生的原因. 首先apt作为一个软件更新机制,每次运行的时候会对apt数据库加锁.当发生上面的错误提示的时候,应该先查找是哪条进程正在运行apt-get或者apt命令,比如系统更新之类. 解决办法其实有很多种. 首先,你确实没找到到底是哪条进程正在使用apt命令,那么你重启机器后应该就没问题了.可以在系统当前的进程中通过关键字查找筛选 ps aux | grep apt kill proc