dev盘满了

1.卸载 linux版本

https://blog.csdn.net/lgz_ei/article/details/68592265

uname -a #当前用户使用版本

sudo apt-get remove linux-image-xxxx

dpkg --get-selections|grep linux-image

sudo /usr/sbin/update-grub

2.找大的文件卸载

du --max-depth=1 -h / #找大文件

切到对应目录

du -sh *

发现 font目录较大,,切入再发现wps-font 较大

果断卸载wps 

sudo dpkg -l |grep wps

sudo apt-get remove wps-office

其他两个字体

sudo apt-get purge fonts-arphic-uming

sudo apt-get purge fonts-arphic-ukai

dpkg -l |grep -i font    #查询安装了的font

原文地址:https://www.cnblogs.com/billhsu2009/p/8627631.html