On Wed, Jun 3, 2009 at 10:18 PM, Sean Carolan scarolan@gmail.com wrote:
I have a server that is undergoing some patching soon and would like to make note of any files that have changed after the patching is complete. Can you recommend a tool that uses md5sum snapshots to do a quick before and after test, showing anything that's changed on a particular file system?
Simple but effective: find . -type f -exec md5sum {} ; | sort > /tmp/previous
Do the same after with a different file name and use diff
Cheers Didi
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos