1

How do I check the MD5 and SHA1 of an ISO file? It's a Windows 7 iso.

1 Answers1

3

Using md5sum command, example:

md5sum MY_FILE.iso

And the same for SH1, with sha1sum command, example:

sha1sum MY_FILE.iso
Fcmam5
  • 249