Ubuntu E: Unable to obtain lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)

Ubuntu E: Unable to obtain lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)

Ubuntu 18.04, other versions of Ubuntu

question:

When running sudo apt-get install/update/or other commands, the following prompt may appear for various unclear reasons:

E: Unable to obtain 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?

Ubuntu E: Unable to get lock /var/lib/dpkg/lock-frontend - open

This problem may be caused by:

In the Ubuntu system terminal, when using apt-get install to install software, if the terminal is forcibly closed before the download is completed. The apt-get process may not be finished at this time. As a result, if you run the apt-get install command again to install the software, the above error will appear. That is, another program is occupying the apt-get install process. Because it is running, it will occupy the system lock for software source updates (referred to as 'system update lock'), and the resources are locked at this time.

So, in the first method , we just need to kill the previous process and release the system lock:

ps -e|grep apt-get

show

5873 ? 00:00:01 apt-get

Then execute

sudo kill 5873

The second method is to force unlock

linuxidc@linuxidc:~$ sudo rm /var/cache/apt/archives/lock
[sudo] linuxidc's password: 
linuxidc@linuxidc:~$ sudo rm /var/lib/dpkg/lock 

Ubuntu E: Unable to get lock /var/lib/dpkg/lock-frontend - open

Summarize

The above is what I introduced to you about Ubuntu E: Unable to get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable). I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of several domestic update sources for Ubuntu 16.04
  • How to change Alibaba source in Ubuntu 14.04 and Ubuntu 16.04
  • How to configure Ubuntu 17.04 to change the domestic source
  • How to install Python 3.6.0 from source code in Ubuntu 16.04 LTS
  • Solution to Hash Sum mismatch error when using domestic source in Ubuntu
  • How to create local source in Ubuntu
  • Shell script to automatically detect and modify the fastest Ubuntu software source
  • How to change the domestic source of Ubuntu 20.04 apt
  • Share the problem of Ubuntu 19 not being able to install docker source
  • How to modify Ubuntu's source list (source list) detailed explanation

<<:  MySQL 8.0 download and installation configuration graphic tutorial under Windows 10

>>:  JavaScript operation element examples

Recommend

Detailed example of MySQL (5.6 and below) parsing JSON

MySQL (5.6 and below) parses json #json parsing f...

How to Develop a Progressive Web App (PWA)

Table of contents Overview Require URL of the app...

Complete list of CentOS7 firewall operation commands

Table of contents Install: 1. Basic use of firewa...

Get / delete method to pass array parameters in Vue

When the front-end and back-end interact, sometim...

Detailed explanation of the usage and difference between nohup and & in Linux

Example: We use the Python code loop_hello.py as ...

How to use the Linux md5sum command

01. Command Overview md5sum - Calculate and verif...

Use Firebug tool to debug the page on iPad

How to debug a page on iPad? When using iOS 5, you...

Detailed usage of Vue more filter widget

This article example shares the implementation me...

JavaScript Interview: How to implement array flattening method

Table of contents 1 What is array flattening? 2 A...

JavaScript implements simple calculator function

This article shares the specific code of JavaScri...

Front-end vue+express file upload and download example

Create a new server.js yarn init -y yarn add expr...