It depends on your filesystem layout. If you have different partitions you can limit your search to that particular partition. If everything is under / then everything is fair game. To find the disk hogs, start with using the du command:
that will give you the disk usage for everything from the current directory on down. You can then start narrowing things down by directory. If you want to find the largest files on your system, use the find command with the -size option. See the manpage for details. A simple one-liner I always use is:
Code:
find . -type f -exec ls -l '{}' \; | awk '{print $5, $NF}' | sort -n | tail -10
this will find the 10 largest files from your current directory on down. You can always change the tail value. Beware though, large files are not always the problem. Sometimes its just a bunch of little files.
davidj