> > > Not of all files. Of files searchable by `nobody.nogroup'. > > > You can run updatedb manually to get a list of all files. Look at the > > options in the info page for more information. > > Actually, you can run updatedb by hand and keep the database private to > root in some other protected directory.
On my stand-alone machine at home, I get all files by making this change to /etc/cron.daily/find: #cd / && updatedb --localuser=nobody 2>/dev/null cd / && updatedb 2>/dev/null -- ...RickM...