【LINUX學習】檢視磁碟與目錄的資訊

楊奇龍發表於2010-11-27
檢視磁碟與目錄的資訊。
df 引數
-a : 列出所有的檔案系統,包括系統特有的/proc
-k: 以kBytes 為單位顯示檔案系統
-m:以MBytes 為單位顯示檔案系統
-h: 以人們比較易讀的GBytes,MBytes,KBytes顯示檔案系統
-H: 以M=1000k 為單位顯示
-T:連同分割槽的filesystem 一同顯示
-i:不用硬碟容量 而以inode的數量來顯示
以預設方式顯示 
[root@localhost tmp]# df
檔案系統               1K-塊        已用     可用 已用% 掛載點
/dev/sda2              3960348   2042940   1712984  55% /
/dev/sda1               101086     11284     84583  12% /boot
tmpfs                   237656         0    237656   0% /dev/shm
將容量結果以易讀的容量格式顯示
[root@localhost /]# df -h
檔案系統              容量  已用 可用 已用% 掛載點
/dev/sda2             3.8G  2.0G  1.7G  55% /
/dev/sda1              99M   12M   83M  12% /boot
tmpfs                 233M     0  233M   0% /dev/shm
顯示所有系統檔案
[root@localhost /]# df -aT
檔案系統      型別     1K-塊        已用     可用 已用% 掛載點
/dev/sda2     ext3     3960348   2042932   1712992  55% /
proc          proc           0         0         0   -  /proc
sysfs        sysfs           0         0         0   -  /sys
devpts      devpts           0         0         0   -  /dev/pts
/dev/sda1     ext3      101086     11284     84583  12% /boot
tmpfs        tmpfs      237656         0    237656   0% /dev/shm
none   binfmt_misc           0         0         0   -  /proc/sys/fs/binfmt_misc
sunrpc  rpc_pipefs           0         0         0   -  /var/lib/nfs/rpc_pipefs
[root@localhost /]# df -h
檔案系統              容量  已用 可用 已用% 掛載點
/dev/sda2             3.8G  2.0G  1.7G  55% /
/dev/sda1              99M   12M   83M  12% /boot
tmpfs                 233M     0  233M   0% /dev/shm
[root@localhost /]# df -ih
檔案系統               Inode (I)已用 (I)可用 (I)已用% 掛載點
/dev/sda2               999K     87K    913K    9% /
/dev/sda1                26K      35     26K    1% /boot
tmpfs                    59K       1     59K    1% /dev/shm
[root@localhost /]# df -m 
檔案系統               1M-塊        已用     可用 已用% 掛載點
/dev/sda2                 3868      1996      1673  55% /
/dev/sda1                   99        12        83  12% /boot
tmpfs                      233         0       233   0% /dev/shm
顯示 /etc 目錄下的磁碟容量
[root@localhost tmp]# df -h /etc
檔案系統              容量  已用 可用 已用% 掛載點
/dev/sda2             3.8G  2.0G  1.7G  55% /

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-680465/,如需轉載,請註明出處,否則將追究法律責任。

相關文章