Find out which files or directories are using up disk resources.

<pre lang="bash">
# display the biggest files
find -type f -exec du -Sh {} + | sort -rh | head -n 5
# display the biggest directories
du -Sh | sort -rh | head -5