首页 > 系统服务 > 详细

linux命令-du查看占用磁盘空间大小

时间:2015-11-06 12:34:58      阅读:187      评论:0      收藏:0      [点我收藏+]

 

格式

df -h 查看磁盘分区情况

du /etc 目录文件大小都列出来 单位是k最后一行是总和

du -m 单位是m 小于1m写成1m

du -h 单位人性化显示k/m

du -sh /etc 查看指点目录/文件大小

//////////////////////////////////////////////////////////////////////////////////////

du查看和ls查看区别

[root@wangshaojun ~]# du -sh /etc/init.d/iptables
12K /etc/init.d/iptables                         
[root@wangshaojun ~]# ls -lh  /etc/init.d/iptables
-rwxr-xr-x. 1 root root 11K 7月  24 10:08 /etc/init.d/iptables ///////du-12k ls-11k

转换成k为单位

[root@wangshaojun ~]# ls -lb  /etc/init.d/iptables
-rwxr-xr-x. 1 root root 11048 7月  24 10:08 /etc/init.d/iptables
[root@wangshaojun ~]# du -sb /etc/init.d/iptables
11048 /etc/init.d/iptables   ////////ls-11048b  du-11048b 一样的

////////////////////////////////////////////////////////////////////////////////////////////////////

[root@wangshaojun ~]# touch /tmp/1.txt
[root@wangshaojun ~]# echo "12">>/tmp/1.txt
[root@wangshaojun ~]# ll /tmp/1.txt
-rw-r--r--. 1 root root 3 11月  6 19:35 /tmp/1.txt   /////真实大小
[root@wangshaojun ~]# du -sh /tmp/1.txt
4.0K /tmp/1.txt   /////占用磁盘块的大小

linux命令-du查看占用磁盘空间大小

原文:http://www.cnblogs.com/wangshaojun/p/4942142.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!