duの履歴

/home/hogehoge の容量を表示したい。
> du /home/hogehoge

/home/hogehoge の容量を表示したけど、容量を見やすくしたい。
> du -h /home/hogehoge

/home/の中で誰が一番容量を使用しているかを表示したい
> du -h /home --max-depth=1


http://it.kndb.jp/entry/show/id/2381


■ ファイルやディレクトリ容量を表示させるには

du -h ディレクトリ名
du -h -s ディレクトリ名(指定したディレクトリのみ表示)
du -h -a  ディレクトリ名(一覧表示)
容量の大きいディレクトリを発見するにはルートディレクトリから grep で

# ギガバイト以上のディレクトリを表示
du -h | grep [0-9]G
# 100Mバイト以上のディレクトリを表示
du -h | grep [0-9][0-9][0-9]M
とするのもいいかもしれません


■ ちなみにディスク全体のの残り容量を表示するコマンドは

df -hT


です。

http://logic.stepserver.jp/data/archives/97.html