Which THREE commands can be used to check the disk space usage of the /home partition?
Shows free and used space.
Why this answer
Option A is correct because `df -h /home` displays the disk space usage of the /home filesystem in human-readable format (e.g., GB, MB). The `df` command reports the total, used, and available space for mounted filesystems, making it the standard tool for checking partition-level disk usage.
Exam trap
The trap here is that candidates confuse partition table tools (fdisk, parted) with filesystem usage tools (df, du), or mistakenly think `lsblk` shows disk space usage when it only shows device size and mount points.