使用以下命令清理系统垃圾
sudo apt-get autoclean --清理旧版本的软件缓存
sudo apt-get clean--清理所有软件缓存
sudo apt-get autoremove--删除系统不再使用的孤立软件
2,清理opera firefox的缓存文件:
ls ~/.opera/cache4
ls ~/.mozilla/firefox/*.default/Cache
3,清理Linux下孤立的包:
图形界面下用:gtkorphan sudo apt-get install gtkorphan -y
终端命令下用:deborphan sudo apt-get install deborphan -y
4,卸载:tracker
这个东西不仅会产生大量的cache文件而且还会影响开机速度。所以在新得
利里面删掉就行。
5,删除多余的内核:
终端:dpkg --get-selections|grep linux
有image的就是内核文件
(千万别删除错了 我就是一不小心 整个系统就瘫痪了 那只有重装了!!建议不明白的 还是不要动为好)
删除老的内核文件:
sudo apt-get remove 内核文件名 (例如:linux-image-2.6.27-2-generic)
看当前内核:uname -a
附录:
包的临时文件目录:
/var/cache/apt/archives
没有下载完的在
/var/cache/apt/archives/partial
linux-image-2.6.15-28-686 deinstall
linux-image-386 install
linux-kernel-headers install
linux-restricted-modules-2.6.15-23-386 install
linux-restricted-modules-2.6.15-27-386 install
linux-restricted-modules-2.6.15-27-686 install
linux-restricted-modules-2.6.15-28-386 install
linux-restricted-modules-2.6.15-28-686 deinstall
linux-restricted-modules-386 install
linux-restricted-modules-common install
linux-sound-base install
util-linux install
具体的卸载方法为
sudo apt-get remove linux-image-2.6.15-23-386
这样就可以实现自动删除内核文件了,还可以释放磁盘空间。