Finding large files on a Linux server
Here are a couple commands you might find useful.
This command finds files that are larger than half a gig:
find / -type f -size +500M -exec ls -lh {} \;
This command finds files that are larger than 1 gig:
find / -type f -size +1G -exec ls -lh {} \;
This command finds files that are larger than 1 gig excluding the home directory which might be on a different mount. (notice the removal of the -type f so that the not works on paths):
find / -not \( -path /home -o -path /boot -o -path /tmp \) -size +1G -exec ls -lh {} \;