20
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linuxでサイズの大きいファイルを探す方法

Posted at

サーバのHDD使用率が95%超えてます!!
というアラートを受けたときに素早く対応できる方法
この手順で調査して、要らないものをrmしてしまいましょう

//ディスクの使用状況を確認
$ df -h

//1GB以上の大きいディレクトリを見つける ※状況によってサイズは変更
$ du -h ./ | grep [0-9]G

//大きいファイルを直ぐ見つけたい場合はこっちの方が良いかも
$ find ./ -size +1G

//重い順にソートしてファイルを表示
$ ls -lS

対象ファイルが不要な場合ははrmコマンドで削除しましょう。

20
11
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
20
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?