1. 非常有用的清理命令:
sudo apt-get autoclean清理舊版本的軟件緩存
sudo apt-get clean清理所有軟件緩存
sudo apt-get autoremove刪除系統(tǒng)不再使用的孤立軟件這三個命令主要清理升級緩存以及無用包的。
2. 清理opera firefox的緩存文件:
ls ~/.opera/cache4ls ~/.mozilla/firefox/*.default/Cache
3. 清理Linux下孤立的包:
sudo apt-get install deborphan -y
4. 卸載:tracker
包管理的臨時文件目錄: 包在/var/cache/apt/archives
沒有下載完的在/var/cache/apt/archives/partial
sudo apt-get remove --purge 軟件名
dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P 清除殘余的配置文件保證干凈
1. 首先要使用這個命令查看當(dāng)前Ubuntu系統(tǒng)使用的內(nèi)核
uname -a
2. 再查看所有內(nèi)核
dpkg --get-selections|grep linux
3. 最后小心翼翼地刪除吧,沒事不建議隨便刪,運(yùn)氣不好系統(tǒng)就崩了
sudo apt-get remove linux-image-2.6.32-22-generic
ps:linux-image-xxxxxx-generic 就是要刪除的內(nèi)核版本
還有l(wèi)inux-headers-xxxxxxlinux-headers-xxxxxx-generic 總之中間有“xxxxxx”那段的舊內(nèi)核都能刪,注意一般選內(nèi)核號較小的刪。