管理人Kのひとりごと

デジモノレビューやプログラミングや写真など

Linuxでディスク使用量の多いフォルダ、ファイルを探す

定期的に調べるので記録

確認環境

[root@localhost hoge]# cat /etc/redhat-release 
CentOS Linux release 7.9.2009 (Core)

コマンド

# du -ah → 結果にファイルを含める、サイズをKやGで表示
# sort -hr → サイズをKやGで比較、降順ソート
[root@localhost hoge]# du -ah | sort -hr

実行例

# 件数が多いので上位20件で絞り込み
[root@localhost hoge]# du -ah | sort -hr | head -20
1.6G    .
1.1G    ./.vscode-server
874M    ./.vscode-server/bin
289M    ./postgres
288M    ./postgres/9.6/postgres-with-data.tar
288M    ./postgres/9.6
191M    ./.vscode-server/extensions

参考にしました

zenn.dev