Angelo Arrifano schrieb am 25.04.2010 13:18: > Hello developers developers and developers, > > Ever wondered how much crap is left in your X-years old Gentoo box? > > I just developed a python utility to efficiently find orphaned files in > the system. By orphaned files I mean the files that are present on > system directories and don't belong to any installed package. > > The package builds a virtual filesystem (cache) on the RAM using python > hash tables. Then it uses the cache to find the ownership of files > inside user-specified dirs. > > Building the cache takes less than 10 seconds here in a system with 1366 > installed packages. > > This is not intended to be a finished program yet, I'm looking forward > for your constructive commentaries.
What about searching the complete file system but using an exclude file where you can put directories and files which should not be searched. It is tedious to tell every path on the command-line. Also for instance if you specify /lib it will also search under /lib/modules and I am sure you do not consider all contents there as unneeded. You also need to consider that your tool will return other false positives like byte compiled python modules and perl header files. In general everything an ebuild does in phases where it adds files to file-system but files are not stored to CONTENTS (pkg_{pre,post}inst). At this point the files are needed but not recognized by the package manager. If the ebuild does not take care of this files when removing (pkg_{pre,post}rm) the package they will remain on the file-system and are now unneeded. I have written something in perl which I recently tried to implement in python (not the same functionality like the perl version yet). I am not a good perl or python programmer but it fits my needs especially the perl version as I know a bit more perl than python. I attach both versions and a sample exclude file. Maybe it will be of help. -- Daniel Pielmeier
cruft.tar.bz2
Description: BZip2 compressed data
signature.asc
Description: OpenPGP digital signature