unable to lock the administration directory (/var/lib/dpkg/) is another process using it

Posted cathy_mu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unable to lock the administration directory (/var/lib/dpkg/) is another process using it相关的知识,希望对你有一定的参考价值。

1、找出并杀掉所有 apt-get 或者 apt 进程

运行下面的命令来生成所有含有 apt 的进程列表,你可以使用 ps 和 grep 命令并用管道组合来得到含有 apt 或者 apt-get 的进程。

  1. $ ps -A | grep apt

技术分享图片

你可以看到上面命令输出的每个 apt-get 或者 apt 进程,使用下面的命令杀掉每个进程

上面截图中的第一列是进程 ID(PID)。

  1. $ sudo kill -9 processnumber
  2. 或者
  3. $ sudo kill -SIGKILL processnumbe

2、 删除锁定的文件

首先运行下面的命令来移除 /var/lib/dpkg/ 文件夹下的锁定文件:

  1. $ sudo rm /var/lib/dpkg/lock

之后像下面这样强制重新配置软件包:

  1. $ sudo dpkg --configure -a

接下来,更新你的软件包源列表:

  1. $ sudo apt update
  2. 或者
  3. $ sudo apt-get update

以上是关于unable to lock the administration directory (/var/lib/dpkg/) is another process using it的主要内容,如果未能解决你的问题,请参考以下文章

unable to lock the administration directory问题解决

E: Unable to lock the administration directory (/var/lib/dpkg/)

E: Could not get lock /var/lib/dpkg/lock E: Unable to lock the administration directory (/var/lib/d

E: Could not get lock /var/lib/dpkg/lock E: Unable to lock the administration directory (/var/lib/d

Unable to lock the administration directory (/var/lib/dpkg/),is another process using it?

修复 Ubuntu 中“Unable to lock the administration directory (/var/lib/dpkg/)”