This guide contains instructions for identifying what folders on your Linux server are consuming disk space.
How-to Steps:
From Linux SSH:
- Change to the root partition: "cd /"
- Type this comand to identify folder sizes: "sudo du -s * | sort -n"
- Change to the largest directory and issue again: "sudo du -s * | sort -n"
- Keep repeating this procedure until you find the folder consuming your disk space.