01 - Voici comment vérifier l'espace disque au format lisible par l'homme :
# Using df with a human readable format
df -h
Code language: PHP (php)
02 - Voici comment résumer le total de l'utilisation de l'espace disque :
# How to sum up the total disk space usage
df -h –total
Code language: PHP (php)
03 – Voici comment exclure un type de système de fichiers particulier :
# Exclude a particular file system type
df -x tmpfs
Code language: PHP (php)