LoginSignup
148
157

More than 5 years have passed since last update.

Linuxのファイル容量調べるコマンドメモ

Last updated at Posted at 2013-05-07

ちょこちょこ使うけど、忘れるのでメモ

とりあえず、全体の容量確認

df -h

カレントディレクトリ以下で容量だけを出す

du -hs

ホームディレクトリ以下で容量だけを出す

du -hs ~/

カレントディレクトリでサブディレクトリを含めた容量を多い順に並び替えて、上位10件を出す

du | sort -nr | head -10

headじゃなくて、こっちでもいいかも

du | sort -nr | more
148
157
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
148
157