01:aquí se explica cómo verificar el espacio en disco en formato legible por humanos:
# Using df with a human readable format
df -h
Code language: PHP (php)
02:aquí está cómo resumir el uso total del espacio en disco:
# How to sum up the total disk space usage
df -h –total
Code language: PHP (php)
03:aquí se explica cómo excluir un tipo de sistema de archivos en particular:
# Exclude a particular file system type
df -x tmpfs
Code language: PHP (php)