Checksum for Protecting Read-Only Documents
Posted
by
Kim
on Super User
See other posts from Super User
or by Kim
Published on 2011-06-27T14:50:18Z
Indexed on
2011/06/27
16:25 UTC
Read the original article
Hit count: 455
My father owns a small business and has to hand over several year's worth of financial documents to his insurance's auditor. He's asked me to go through and make sure everything is "read-only" so the data (the files) absolutely, positively cannot be modified or manipulated (he's a bit paranoid).
We're talking about 20,000 documents (emails, spreadsheets, etc.).
My first inclination was to place everything inside of one root folder ("mydadsdocs/") and then write a script that recursively traversed its directory subtree and set the file permissions to read-only.
But then I got to thinking: that's a lot of work for me to do to satisfy an old man who is just being paranoid, and afterall, if someone really wanted to modify a read-only file, it would be pretty easy to change file permissions anyways, soo....
Is there like a checksum I could run on the root folder, something that was very quick and easy, and that would basically "stamp" the data in that folder so if someone did change it, my father would have someone of knowing/proving it?
If so, how?
If not, any other recommendations that are quick, cheap (free) and effective?
© Super User or respective owner