标签:linux之du命令
Linux之du命令
Linux du命令也是查看使用空间的,但是与df命令不同的是Linux du命令是对文件和目录磁盘使用的空间的查看,还是和df命令有一些区别的.
1.命令格式:
du [选项][文件]
2.命令功能:
显示每个文件和目录的磁盘使用空间。
3.命令参数:
-a或-all 显示目录中个别文件的大小。
-b或-bytes 显示目录或文件大小时,以byte为单位。
-c或--total 除了显示个别目录或文件的大小外,同时也显示所有目录或文件的总和。
-k或--kilobytes 以KB(1024bytes)为单位输出。
-m或--megabytes 以MB为单位输出。
-s或--summarize 仅显示总计,只列出最后加总的值。
-h或--human-readable 以K,M,G为单位,提高信息的可读性。
-x或--one-file-xystem 以一开始处理时的文件系统为准,若遇上其它不同的文件系统目录则略过。
-L<符号链接>或--dereference<符号链接> 显示选项中所指定符号链接的源文件大小。
-S或--separate-dirs 显示个别目录的大小时,并不含其子目录的大小。
-X<文件>或--exclude-from=<文件> 在<文件>指定目录或文件。
--exclude=<目录或文件> 略过指定的目录或文件。
-D或--dereference-args 显示指定符号链接的源文件大小。
-H或--si 与-h参数相同,但是K,M,G是以1000为换算单位。
-l或--count-links 重复计算硬件链接的文件。
4.使用实例:
实例1:显示目录或者文件所占空间
命令:
du
输出:
[root@slave ~]# cd test
[root@slave test]# pwd
/root/test
[root@slave test]# du
52 .
[root@slave test]# ll
total 48
-rw-r--r-- 1 root root 41433 May 21 2015 install.log
-rw-r--r-- 1 root root 3422 May 24 2015 WorldCount.jar
说明:
只显示当前目录下面的子目录的目录大小和当前目录的总的大小,最下面的1288为当前目录的总大小
实例2:显示指定文件所占空间
命令:
du install.log
输出:
[root@slave test]# du install.log
44 install.log
[root@slave test]# du WorldCount.jar
4 WorldCount.jar
说明:
实例3:查看指定目录的所占空间
命令:
du scf
输出:
[root@slave ~]# mkdir hello/aa/
[root@slave ~]# cp WorldCount.jar hello/aa/
[root@slave ~]# du hello
12 hello/aa
16 hello
[root@slave ~]#
说明:
实例4:显示多个文件所占空间
命令:
du log30.tar.gz log31.tar.gz
输出:
[root@slave ~]# du test/install.log test/WorldCount.jar
44 test/install.log
4 test/WorldCount.jar
说明:
实例5:只显示总和的大小
命令:
du -s
输出:
[root@slave ~]# du -s test
52 test
说明:
实例6:方便阅读的格式显示
命令:
du -h test
输出:
[root@slave ~]# du -h test
52K test
说明:
实例7:文件和目录都显示
命令:
输出:
[root@slave ~]# du -ah test
4.0K test/WorldCount.jar
44K test/install.log
52K test
说明:
实例8:显示几个文件或目录各自占用磁盘空间的大小,还统计它们的总和
命令:
du -c hello.txt zookeeper.out
输出:
[root@slave ~]# du -c hello.txt zookeeper.out
12 hello.txt
56 zookeeper.out
68 total
说明:
加上-c选项后,du不仅显示两个目录各自占用磁盘空间的大小,还在最后一行统计它们的总和。
实例9:按照空间大小排序
命令:
du|sort -nr|more
输出:
[root@localhost test]# du|sort -nr|more
[root@localhost test]#
说明:
实例10:输出当前目录下各个子目录所使用的空间
命令:
du -h --max-depth=1
输出:
[root@slave ~]# du -h --max-depth=1
4.0K ./Videos
48K ./.gnome2
52K ./test
4.0K ./Downloads
148K ./.pulse
4.0K ./mymount
4.0K ./Music
4.0K ./Desktop
4.0K ./.gnome2_private
4.0K ./Pictures
216K ./.gconf
0 ./.gvfs
4.0K ./Documents
15M ./.mozilla
4.0K ./Templates
4.0K ./Public
14M ./.cache
16K ./.gnupg
4.0K ./.themes
16K ./hello
4.0K ./.nautilus
116K ./a
44K ./.config
600K ./.thumbnails
380K ./.gstreamer-0.10
4.0K ./.icons
20K ./.ssh
112K ./.local
16K ./.gnote
12K ./.dbus
72K ./.gconfd
31M .
.
本文出自 “梁小明的博客” 博客,请务必保留此出处http://7038006.blog.51cto.com/7028006/1829038
标签:linux之du命令
原文地址:http://7038006.blog.51cto.com/7028006/1829038