dfコマンドでディスク使用量を表示

shell> df
※「-h」で単位を付けることができます

以下、使用例。

■オプションなし
[abyss@test-vmw apps]$ df
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
                      18156292   5886204  11332924  35% /
/dev/sda1               101086     12107     83760  13% /boot
tmpfs                   517620         0    517620   0% /dev/shm
.host:/              155954992  99566592  56388400  64% /mnt/hgfs

断然、以下のように単位付きの方が見やすいよ。

■「-h」オプション付き
[abyss@test-vmw apps]$ df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
                       18G  5.7G   11G  35% /
/dev/sda1              99M   12M   82M  13% /boot
tmpfs                 506M     0  506M   0% /dev/shm
.host:/               149G   95G   54G  64% /mnt/hgfs