溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux磁盤管理中df命令詳細(xì)介紹以及如何使用

發(fā)布時(shí)間:2021-09-27 14:34:19 來(lái)源:億速云 閱讀:104 作者:柒染 欄目:系統(tǒng)運(yùn)維

這篇文章給大家介紹Linux磁盤管理中df命令詳細(xì)介紹以及如何使用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

1.命令格式:

du [選項(xiàng)][文件]

2.命令功能:

顯示每個(gè)文件和目錄的磁盤使用空間。

3.命令參數(shù):

-a或-all  顯示目錄中個(gè)別文件的大小。   

-b或-bytes  顯示目錄或文件大小時(shí),以byte為單位。   

-c或--total  除了顯示個(gè)別目錄或文件的大小外,同時(shí)也顯示所有目錄或文件的總和。 

-k或--kilobytes  以KB(1024bytes)為單位輸出。

-m或--megabytes  以MB為單位輸出。   

-s或--summarize  僅顯示總計(jì),只列出最后加總的值。

-h或--human-readable  以K,M,G為單位,提高信息的可讀性。

-x或--one-file-xystem  以一開始處理時(shí)的文件系統(tǒng)為準(zhǔn),若遇上其它不同的文件系統(tǒng)目錄則略過(guò)。 

-L<符號(hào)鏈接>或--dereference<符號(hào)鏈接> 顯示選項(xiàng)中所指定符號(hào)鏈接的源文件大小。   

-S或--separate-dirs   顯示個(gè)別目錄的大小時(shí),并不含其子目錄的大小。 

-X<文件>或--exclude-from=<文件>  在<文件>指定目錄或文件。   

--exclude=<目錄或文件>         略過(guò)指定的目錄或文件。    

-D或--dereference-args   顯示指定符號(hào)鏈接的源文件大小。   

-H或--si  與-h參數(shù)相同,但是K,M,G是以1000為換算單位。   

-l或--count-links   重復(fù)計(jì)算硬件鏈接的文件。  

4.使用實(shí)例:

實(shí)例1:顯示目錄或者文件所占空間 

命令:du

輸出:

代碼如下:

[root@localhost test]# du
608 ./test6
308 ./test4
4 ./scf/lib
4 ./scf/service/deploy/product
4 ./scf/service/deploy/info
12 ./scf/service/deploy
16 ./scf/service
4 ./scf/doc
4 ./scf/bin
32 ./scf
8 ./test3
1288 .
[root@localhost test]#

說(shuō)明:

只顯示當(dāng)前目錄下面的子目錄的目錄大小和當(dāng)前目錄的總的大小,最下面的1288為當(dāng)前目錄的總大小

實(shí)例2:顯示指定文件所占空間

命令:du log2012.log

輸出:

代碼如下:

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

實(shí)例3:查看指定目錄的所占空間

命令:du scf

輸出:

代碼如下:

[root@localhost test]# du scf
4 scf/lib
4 scf/service/deploy/product
4 scf/service/deploy/info
12 scf/service/deploy
16 scf/service
4 scf/doc
4 scf/bin
32 scf
[root@localhost test]#

實(shí)例4:顯示多個(gè)文件所占空間

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

輸出:

代碼如下:

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

實(shí)例5:只顯示總和的大小

命令:du -s

輸出:

代碼如下:

[root@localhost test]# du -s
1288 .
[root@localhost test]# du -s scf
32 scf
[root@localhost test]# cd ..
[root@localhost soft]# du -s test
1288 test
[root@localhost soft]#

實(shí)例6:方便閱讀的格式顯示

命令:du -h test

輸出:

代碼如下:

[root@localhost soft]# du -h test
608K test/test6
308K test/test4
4.0K test/scf/lib
4.0K test/scf/service/deploy/product
4.0K test/scf/service/deploy/info
12K test/scf/service/deploy
16K test/scf/service
4.0K test/scf/doc
4.0K test/scf/bin
32K test/scf
8.0K test/test3
1.3M test
[root@localhost soft]#

實(shí)例7:文件和目錄都顯示

命令:du -ah test

輸出:

代碼如下:

[root@localhost soft]# du -ah test
4.0K test/log31.tar.gz
4.0K test/test13.tar.gz
0 test/linklog.log
0 test/test6/log2014.log
300K test/test6/linklog.log
0 test/test6/log2015.log
4.0K test/test6/log2013.log
300K test/test6/log2012.log
0 test/test6/log2017.log
0 test/test6/log2016.log
608K test/test6
0 test/log2015.log
0 test/test4/log2014.log
4.0K test/test4/log2013.log
300K test/test4/log2012.log
308K test/test4
4.0K test/scf/lib
4.0K test/scf/service/deploy/product
4.0K test/scf/service/deploy/info
12K test/scf/service/deploy
16K test/scf/service
4.0K test/scf/doc
4.0K test/scf/bin
32K test/scf
4.0K test/log2013.log
300K test/log2012.log
0 test/log2017.log
0 test/log2016.log
4.0K test/log30.tar.gz
4.0K test/log.tar.bz2
4.0K test/log.tar.gz
0 test/test3/log2014.log
4.0K test/test3/log2013.log
8.0K test/test3
4.0K test/scf.tar.gz
1.3M test
[root@localhost soft]#

實(shí)例8:顯示幾個(gè)文件或目錄各自占用磁盤空間的大小,還統(tǒng)計(jì)它們的總和

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

輸出:

代碼如下:

[root@localhost test]# du -c log30.tar.gz log31.tar.gz
4 log30.tar.gz
4 log31.tar.gz
8 總計(jì)
[root@localhost test]#

加上-c選項(xiàng)后,du不僅顯示兩個(gè)目錄各自占用磁盤空間的大小,還在最后一行統(tǒng)計(jì)它們的總和。

實(shí)例9:按照空間大小排序

命令:du|sort -nr|more

輸出:

代碼如下:


[root@localhost test]# du|sort -nr|more
1288 .
608 ./test6
308 ./test4
32 ./scf
16 ./scf/service
12 ./scf/service/deploy
8 ./test3
4 ./scf/service/deploy/product
4 ./scf/service/deploy/info
4 ./scf/lib
4 ./scf/doc
4 ./scf/bin
[root@localhost test]#

實(shí)例10:輸出當(dāng)前目錄下各個(gè)子目錄所使用的空間

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

輸出:

代碼如下:

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

關(guān)于Linux磁盤管理中df命令詳細(xì)介紹以及如何使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI