This is good for trying to chase down which directories are eating up the most space and give you a file with the report sorted by size in MB.
( du -SB 1M / | sort -grk 1 ) > disk_usage.txt 2&> /dev/null
This is good for trying to chase down which directories are eating up the most space and give you a file with the report sorted by size in MB.
( du -SB 1M / | sort -grk 1 ) > disk_usage.txt 2&> /dev/null