On Wed, 2005-06-08 at 07:57 +0200, Dotan Cohen wrote: > > How does one go about searching for bloat? All the obvious (logs, tmp, > yum clean all) leave no hints. Last thing that I want to do is to tell > Ety to log onto the windows machine because linux is broken!!! Yet another option is to run: du -kx / | sort -rn This will go through the root file system and print out the size of each directory (in kilobytes) and then sort them so the largest directories are at the top of the list. Daniel