感想

今天打开ubuntu 16.04,用apt-get update命令的时候,发现了如下的错误。

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?

死活更新不了,然后用df -h命令,发现/boot占满了,但是不能够删除部分内核。

这里首先我把apt进程全部杀死,用如下命令:

ps -A | grep apt
kill -9 your_process_name

然后对内核进行清理:

1.查看系统内存在的内核版本列表:
sudo dpkg --get-selections |grep linux
sudo dpkg --get-selections
2.查看当前Ubuntu系统使用的内核版本
uname -a
3.删除多余内核:
sudo apt-get purge linux-headers-3.0.0-12 linux-image-3.0.0-12-generic

这样就能更新了哈。

参考文献

[1]. 修复 Ubuntu 中“Unable to lock the administration directory (/var/lib/dpkg/)”的. ​​https://linux.cn/article-8040-1.html​