i have an lvm snapshot and i would like to see what files have been changed, added or deleted. (Just the file list is sufficient.)
Is there an easy way to get the list?
Thanks in advance for any reply.
i have an lvm snapshot and i would like to see what files have been changed, added or deleted. (Just the file list is sufficient.)
Is there an easy way to get the list?
Thanks in advance for any reply.
mount /dev/snapshot-somewhere /snap
cd /snap; ls -lR . >/tmp/list.snap
(or use mtree or rsync to make the list)diff -u list.real list.snap
rsync can make a file list when called with just one argument:
mtree can make a file which it can check for changes against life filesystem: