码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 报错E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unav E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process us

时间:2019-03-30 21:31:01      阅读:3968      评论:0      收藏:0      [点我收藏+]

标签:列表   xshell   kill -9   The   出现   访问   comm   使用   ifconf   

1、配置xshell,查看虚拟机中ubuntu中网络ip

ifconfig

报错

Command ‘ifconfig‘ not found, but can be installed with:

sudo apt install net-tools

没有这个工具需要安装 net-tools

 

2、安装net-tools,报错

sudo apt install net-tools

注意:ubuntu 高版本,比如18..,都是apt,而不是apt-get

报错信息:

E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

 

3、查资料,知道这是一个进程已经在运行,所以锁住了

查看有哪些进程正在运行

ps -A | grep apt

注意 不是

ps -A | grep apt-get

 

然后出现了进程号以及相关信息

1055 ? 00:00:00 apt.systemd.dai
1085 ? 00:00:00 apt.systemd.dai

目前已经有两个进程,进程号分别为1055,1085

杀掉这两个进程,

sudo kill -9 1055

sudo kill -9 1085

 

4、继续安装net-tools

sudo apt install net-tools

安装成功

 

下面转载一种方法:

2、删除锁定文件

锁定的文件会阻止 Linux 系统中某些文件或者数据的访问,这个概念也存在于 Windows 或者其他的操作系统中。

一旦你运行了 apt-get 或者 apt 命令,锁定文件将会创建于 /var/lib/apt/lists/、/var/lib/dpkg/、/var/cache/apt/archives/ 中。

这有助于运行中的 apt-get 或者 apt 进程能够避免被其它需要使用相同文件的用户或者系统进程所打断。当该进程执行完毕后,锁定文件将会删除。

   当你没有看到 apt-get 或者 apt 进程的情况下在上面两个不同的文件夹中看到了锁定文件,这是因为进程由于某个原因被杀掉了,因此你需要删除锁定文件来避免该错误。

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

$ sudo rm /var/lib/dpkg/lock

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

$ sudo dpkg --configure -a

也可以删除 /var/lib/apt/lists/ 以及缓存文件夹下的锁定文件:

    $ sudo rm /var/lib/apt/lists/lock
    $ sudo rm /var/cache/apt/archives/lock

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

    $ sudo apt update
    或者
    $ sudo apt-get update

总结一下,对于 Ubuntu(以及它的衍生版)用户在使用 apt-get 或者 apt 也叫 aptitude 命令[7]时遇到的问题,我们已经用两种方法来解决了。

ubuntu 报错E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unav E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process us

标签:列表   xshell   kill -9   The   出现   访问   comm   使用   ifconf   

原文地址:https://www.cnblogs.com/hanwenlin/p/10628981.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!