遇到ubuntu系统报如下警告
这是系统更新内核导致的boot空间不足,可以尝试删除旧的内核。
1.查看已安装的linux-image各版本
dpkg –get-selections | grep linux-image
2.查看当前系统内核版本
uname -a
3.卸载旧的版本(uname -a 查到的是但前系统的版本)
sudo apt-get purge linux-image-4.4.0-72-generic
4.查看版本
dpkg –get-selections | grep linux-image
已经没有linux-image-4.4.0-72-generic这个版本了
/boot下也有空间了
5.其他
对于上图中被标为“deinstall”的linux-image-4.4.0-31-generic
这是因为我之前用
sudo apt-get remove linux-image-4.4.0-31-generic
命令来删除,由于卸载不完全出现了残留。
可以使用
sudo dpkg -P linux-image-4.4.0-31-generic
来完全清除