首页 > Linux

Linux磁盘满了处理命令

发表于2014-09-24 10:56:28| --次阅读| 来源webkfa| 作者小猪仔

摘要:Linux磁盘满了处理命令
bsh代码
1、linux 下查找大于10M的文件
find . -type f -size +10000k 

2、删除所有空目录
find /data -type d -empty -exec rm -rf {} \;
 
3、linux下批量删除空文件(大小等于0的文件)的方法
find /data -type f -size 0c -exec rm -rf {} \;
find /data -type f -size 0c|xargs rm –f
 
4、删除五天前的文件
find /data -mtime +5 -type f -exec rm -rf {} \;
 
5、删除两个文件重复的部份,打印其它
cat 1.txt 3.txt |sort |uniq

安装:rpm -ivh gcc-c++-4.1.1-52.el5.x86_64.rpm
删除:rpm -e gcc-c++-4.1.2-44.el5 --nodeps
查看安装包:rpm -q gcc-c++

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1