Linux
Find what's eating disk space
Walk down from the root to the directory actually holding the bytes.
Summarize by directory
du -h --max-depth=1 / 2>/dev/null | sort -rh | head -20Repeat with a deeper path once a large directory turns up, narrowing one level at a time.
Find individual large files
find / -xdev -type f -size +500M -exec ls -lh {} \; 2>/dev/null-xdev keeps the search on one filesystem, so it doesn't wander into
mounted volumes.