Genrating MD5 for all files in the system June 10, 2016 The following command will generate MD5 for all the files in the system. sudo find ./ -type f -print0 | xargs -0 md5 >> /tmp/checksums.md5 Read more