当前位置: > Linux命令 >

linux命令之二十九du 命令

时间:2016-05-13 17:48来源:linux.it.net.cn 作者:IT

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  

 

输出:

 

  1. [root@localhost test]# du  
  2. 608     ./test6  
  3. 308     ./test4  
  4. 4       ./scf/lib  
  5. 4       ./scf/service/deploy/product  
  6. 4       ./scf/service/deploy/info  
  7. 12      ./scf/service/deploy  
  8. 16      ./scf/service  
  9. 4       ./scf/doc  
  10. 4       ./scf/bin  
  11. 32      ./scf  
  12. 8       ./test3  
  13. 1288    .  

 

说明:只显示当前目录下面的子目录的目录大小和当前目录的总的大小,最下面的1288为当前目录的总大小。







实例2:显示指定文件所占空间

命令:du log2012.log  

 

输出:

 
  1. [root@localhost test]# du log2012.log   
  2. 300     log2012.log  

 

实例3:查看指定目录的所占空间

命令:du scf  

 

输出:

 

  1. [root@localhost test]# du scf  
  2. 4       scf/lib  
  3. 4       scf/service/deploy/product  
  4. 4       scf/service/deploy/info  
  5. 12      scf/service/deploy  
  6. 16      scf/service  
  7. 4       scf/doc  
  8. 4       scf/bin  
  9. 32      scf  

 

实例4:显示多个文件所占空间

命令:du log30.tar.gz log31.tar.gz  

 

输出:

  1. [root@localhost test]# du log30.tar.gz log31.tar.gz   
  2. 4       log30.tar.gz  
  3. 4       log31.tar.gz  

 




实例5:只显示总和的大小

命令:du -s  

 

输出:

  1. [root@localhost test]# du -s  
  2. 1288    .  
  3. [root@localhost test]# du -s scf  
  4. 32      scf  
  5. [root@localhost test]# cd ..  
  6. [root@localhost soft]# du -s test  
  7. 1288    test  

 





实例6:方便阅读的格式显示

命令:du -h test  

 

输出:

 
  1. [root@localhost soft]# du -h test  
  2. 608K    test/test6  
  3. 308K    test/test4  
  4. 4.0K    test/scf/lib  
  5. 4.0K    test/scf/service/deploy/product  
  6. 4.0K    test/scf/service/deploy/info  
  7. 12K     test/scf/service/deploy  
  8. 16K     test/scf/service  
  9. 4.0K    test/scf/doc  
  10. 4.0K    test/scf/bin  
  11. 32K     test/scf  
  12. 8.0K    test/test3  
  13. 1.3M    test  




实例7:文件和目录都显示

输出:

  1. [root@localhost soft]# du -ah test  
  2. 4.0K    test/log31.tar.gz  
  3. 4.0K    test/test13.tar.gz  
  4. 0       test/linklog.log  
  5. 0       test/test6/log2014.log  
  6. 300K    test/test6/linklog.log  
  7. 0       test/test6/log2015.log  
  8. 4.0K    test/test6/log2013.log  
  9. 300K    test/test6/log2012.log  
  10. 0       test/test6/log2017.log  
  11. 0       test/test6/log2016.log  
  12. 608K    test/test6  
  13. 0       test/log2015.log  
  14. 0       test/test4/log2014.log  
  15. 4.0K    test/test4/log2013.log  
  16. 300K    test/test4/log2012.log  
  17. 308K    test/test4  
  18. 4.0K    test/scf/lib  
  19. 4.0K    test/scf/service/deploy/product  
  20. 4.0K    test/scf/service/deploy/info  
  21. 12K     test/scf/service/deploy  
  22. 16K     test/scf/service  
  23. 4.0K    test/scf/doc  
  24. 4.0K    test/scf/bin  
  25. 32K     test/scf  
  26. 4.0K    test/log2013.log  
  27. 300K    test/log2012.log  
  28. 0       test/log2017.log  
  29. 0       test/log2016.log  
  30. 4.0K    test/log30.tar.gz  
  31. 4.0K    test/log.tar.bz2  
  32. 4.0K    test/log.tar.gz  
  33. 0       test/test3/log2014.log  
  34. 4.0K    test/test3/log2013.log  
  35. 8.0K    test/test3  
  36. 4.0K    test/scf.tar.gz  
  37. 1.3M    test  

 




实例8:显示几个文件或目录各自占用磁盘空间的大小,还统计它们的总和

命令:du -c log30.tar.gz log31.tar.gz  

 

输出:

  1. [root@localhost test]# du -c log30.tar.gz log31.tar.gz   
  2. 4       log30.tar.gz  
  3. 4       log31.tar.gz  
  4. 8       总计  

 

说明:加上-c选项后,du不仅显示两个目录各自占用磁盘空间的大小,还在最后一行统计它们的总和。



 



实例9:按照空间大小排序

命令:du|sort -nr|more  

 

输出:

  1. [root@localhost test]# du|sort -nr|more  
  2. 1288    .  
  3. 608     ./test6  
  4. 308     ./test4  
  5. 32      ./scf  
  6. 16      ./scf/service  
  7. 12      ./scf/service/deploy  
  8. 8       ./test3  
  9. 4       ./scf/service/deploy/product  
  10. 4       ./scf/service/deploy/info  
  11. 4       ./scf/lib  
  12. 4       ./scf/doc  
  13. 4       ./scf/bin  

 




实例10:输出当前目录下各个子目录所使用的空间

命令:du -h  --max-depth=1  

 

输出:

 
  1. [root@localhost test]# du -h  --max-depth=1  
  2. 608K    ./test6  
  3. 308K    ./test4  
  4. 32K     ./scf  
  5. 8.0K    ./test3  
  6. 1.3M    .  

 

 



(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容