Could not get lock /var/lib/apt/lists/lock

when I try to apt-get update I'm getting the below error,

E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)
E: Unable to lock directory /var/lib/apt/lists/
0

1 Answer

This just means that there is an application using apt.

First try to find out which application it is by using this command in the terminal

ps aux | grep '[a]pt'

If there is a process running using apt (like apt-get or aptitude), the best thing to do is just to let it finish what its doing. Otherwise you can kill it using

kill <PID of the process (2nd column in output of ps aux)>

After making sure there is no process or killing it, you can just remove the lock using

sudo rm /var/lib/apt/lists/lock
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like