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