在使用Ubuntu安装Docker的时候发生的异常记录(1)——Could not get lock /var/lib/dpkg/lock解决
问题
今天在使用Ubuntu18.04安装Docker的时候发生了一个奇怪的问题: 异常命令操作如下: 通过终端安装程序sudo apt-get install xxx时出错:
ltwuyanlong@ubuntu:/$ sudo apt-get install
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?
发生这个问题的原因是什么呢?
出现这个问题可能是有另外一个程序正在运行,导致资源被锁不可用。而导致资源被锁的原因可能是上次运行安装或更新时没有正常完成,进而出现此状况。换一种方式理解,其实这就好比单线程的资源独占一样好理解。
如何解决这个问题呢?
其实这个问题并不难解决,简单粗暴直接将其删除即可。
ltwuyanlong@ubuntu:/$ sudo rm /var/cache/apt/archives/lock
ltwuyanlong@ubuntu:/$ sudo rm /var/lib/dpkg/lock
但是假如你在公司的开发环境上操作的话,请三思而后行。
验证问题是否得到解决!
重新执行上面的命令看是否还有一样的异常发生即可得到验证!
ltwuyanlong@ubuntu:/$ sudo apt-get install
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
linux-headers-4.15.0-29 linux-headers-4.15.0-29-generic linux-image-4.15.0-29-generic
linux-modules-4.15.0-29-generic linux-modules-extra-4.15.0-29-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 568 not upgraded.
写在最后的话:
问题解决。其实有很多类似的事情发生,解决方案也是一样的。