I have a filesystem that increased in size in the last 2 month according to my report. Question: How do I find to see if there is any pattern to this increase???...THanks in advance...Gracias.
To find any files that have been modified in the last 60 days execute:
find /<path_to_file_system> -xdev -mtime +60 -type f -exec ls -ld {} \; > /tmp/filechanges.out
This will check only the specific file system for files modified in the last 60 days and it will create a long listing about the file and save it into a file for review.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.