3

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.

gAMBOOKa
  • 999
  • 6
  • 19
  • 34

3 Answers3

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