1
0

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 1 year has passed since last update.

Linuxディスク容量不足確認コマンド

1
Posted at

はじめに

Linux容量系の調査コマンドを整理しました。

Linux
#現在のディスク容量を確認
$ df -h <ディレクトリパス>
Linux
#サイズの大きいファイルを抽出
$ du -ah <ディレクトリパス> | sort -hr | head -<表示個数>

➡特定のディレクトリを除外する場合は「grep -v」をパイプに挟む
Linux
#長時間更新がないファイルを抽出する
$ find <ディレクトリパス> -mtime +日数 -size +<サイズ> -type f | xargs ls -hl

➡特定のディレクトリを除外する場合は「grep -v」をパイプに挟む
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?