how to check disk usage on FreeBSD

How to check Disk Usage on FreeBSD

df

Disk Filesystem  is used to display the amount of disk space used and available on filesystems
-h: Display sizes in a “human-readable” format
eg df -h
for Further reading
man df

du

Disk Usage is used to display statistics for specific directories or files.
eg
du -sh /home/*
for Further reading
man du

Categories