Procházet zdrojové kódy

Create apt guide with lock problem fix

DricomDragon před 5 roky
rodič
revize
f56597f5a2
1 změnil soubory, kde provedl 27 přidání a 0 odebrání
  1. 27 0
      Guides/apt.md

+ 27 - 0
Guides/apt.md

@@ -0,0 +1,27 @@
+# Apt
+
+Package manager
+
+## Problem with lock file
+
+If you get the error :
+```
+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?
+```
+
+You can try two soltutions.
+
+### Soft
+
+Kill the process owner.
+
+`pgrep -a apt`
+
+`sudo kill processnumber`
+
+### Hard
+
+Erase the file.
+
+`sudo rm /var/lib/apt/lists/lock`