If you’re running low on space, you can use the following commands to track down the larger users of space on the server.
The following command will display all files and folders sorted by MegaBytes.
cd /home; du --max-depth=1 | sort -n | awk 'BEGIN {OFMT = "%.0f"} {print $1/1024,"MB", $2}'
The following Find command will search for all files that are larger the 2GB in size.
find /home -type f -size +2000000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'