The volume boot has only 5.1MB disk space remaining

/boot 目录中是系统引导文件和内核,更新内核之后旧内核还存放在里面,安装软件的时候就会提示 /boot 空间不足,最佳的解决办法就是将旧内核删除。

1、查看磁盘使用情况

df -h

df-h

2、查看正在使用的内核版本

uname -a
uname -r
都可以

Screenshot from 2018-08-16 10-02-08.png
Screenshot from 2018-08-16 10-24-54.png

3、查看系统中存在的内核版本

dpkg --get-selections | grep linux
(当出现deibstall,则说明已经删除)


Screenshot from 2018-08-16 10-22-24.png

4、把低于当前版本的内核删掉

sudo apt-get remove linux-image-4.13..0-41-generic
sudo apt-get autoremove linux-image-4.13..0-41-generic
都可以,至于autoremove 和remove的区别,我先用remove再用autoremove实验了一下,发现remove只能删除指定的image,而autoremove则可以把这个内核相关的“linux-headers-4.xx.x-xx”等东西删掉,删的更加彻底。

Screenshot from 2018-08-16 10-11-00.png
Screenshot from 2018-08-16 10-30-02.png

5、删完之后df -h


Screenshot from 2018-08-16 10-32-10.png

你可能感兴趣的:(The volume boot has only 5.1MB disk space remaining)