A Linux administrator needs to display the amount of disk space used by each mounted filesystem. Which two commands can be used? (Choose two.)
Correct: df -h shows disk space usage per filesystem.
Why this answer
df -h displays disk space usage in human-readable format. du -h / shows disk usage for directories but not per filesystem. lsblk shows block devices, not usage. fdisk is for partitioning. mount shows mount points but not space.