When I use the unix df
command to return the disk usage, I get the following reported
/dev/sda1 30929148 30530112 399036 99% /
How get what is using the disk space.
Is there a way to determine as to which directories are taking up space?
You can using
du
(disk usage). For example:To sort use
sort -h
.Edit
Works with directories (which can be mountpoints).