0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

duコマンドを使い、簡単にディレクトリサイズ計算

Posted at

du(Disk Usage)コマンドは、指定したディレクトリやファイルのディスク使用量を表示するためのツールです。以下の基本構文を覚えておきましょう。

du [オプション] [パス]

例えば、/var/logs ディレクトリのサイズを確認したい場合は以下のコマンドを実行します。

du -sh /var/logs

オプションの意味
-s(--summarize): 合計サイズのみを表示。
-h(--human-readable): 出力を人間が読みやすい形式(KB、MB、GBなど)に変換。

1.2G    /var/logs

サブディレクトリごとのサイズを確認

du -h /path/to/directory

例: /var/logディレクトリ内を確認する場合。

du -h /var/logs
4.0K    /var/log/cups
16K     /var/log/httpd
44M     /var/log
0
1
0

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?