01 – So überprüfen Sie den Speicherplatz im menschenlesbaren Format:
# Using df with a human readable format
df -h
Code language: PHP (php)
02 – So summieren Sie die gesamte Speicherplatznutzung:
# How to sum up the total disk space usage
df -h –total
Code language: PHP (php)
03 – So schließen Sie einen bestimmten Dateisystemtyp aus:
# Exclude a particular file system type
df -x tmpfs
Code language: PHP (php)