Ryan Rix wrote:
find / -atime +1 </tmp/fileage # put list of files starting at / into a tmp 
file called fileage


I believe that should be
find / -atime +1 > /tmp/fileage

Note the reverse in the redirect symbol.

Night.

Additionally, you probably want -mtime and not -atime.

Some space is probably being eaten by logs... Are you rotating them properly? Running 'du -s /*/ > du.`date=%s` ' daily and comparing the output will probably help you discover where the creep is (/home, /var, etc). You can of course drill that down further if you want (/*/*/ or whatever).

~Ben

--
  Ben Browning <b...@bensbrowning.com>
Linux Systems Architect and Administrator
     http://www.bensbrowning.com/
begin:vcard
fn:Ben S Browning
n:Browning;Ben S
adr:;;;Tempe;AZ;85282;United States of America
email;internet:b...@bensbrowning.com
tel;cell:(602)206-8203
x-mozilla-html:FALSE
url:http://www.bensbrowning.com/
version:2.1
end:vcard

---------------------------------------------------
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Reply via email to