We need to take a snapshot of your linux server. We don't want to backup the data, just a snapshot we can compare against changes.
Asked
Active
Viewed 1,083 times
3
-
What kind of changes? Content of files, or just changes in the metadata, like permissions or ownership? – Marcin May 19 '10 at 12:22
-
both, i just need to know a file has been messed around with so we can check to see what's changed – gAMBOOKa May 19 '10 at 12:51
-
Then AIDE it is. – Marcin May 19 '10 at 13:06
3 Answers
4
find / -ls > fileinfo.txt
But take a look at tripwire and aide, since that seems to be what you are aiming for anyway. Also note that rpm can check files against checksums and for debian based distributions there is debsums.

ptman
- 28,394
- 2
- 30
- 45
2
i would recommend checking for md5 sums of files, and not just file size. however:
find / -printf "%h/%f %s\n" > /some/path/filesize
would generate a list of files and their sizes.
you could also do find / | xargs md5sum 2> /dev/null 1> /some/path/file-md5s
to generate a list of filenames and their md5 sums.

cpbills
- 2,720
- 18
- 12
0
use
du <filesystem mount point>
it should give you size and file in full location

A.Rashad
- 293
- 1
- 5
- 18