01 –人間が読める形式でディスク容量を確認する方法は次のとおりです。
# Using df with a human readable format
df -h
Code language: PHP (php)
02 –ディスク容量の合計使用量を合計する方法は次のとおりです。
# How to sum up the total disk space usage
df -h –total
Code language: PHP (php)
03 –特定のファイルシステムタイプを除外する方法は次のとおりです。
# Exclude a particular file system type
df -x tmpfs
Code language: PHP (php)