How to Check MD5 Hash?
In Linux, verifying the Md5sum is easy.
For example, let say you have downloaded the Ubuntu iso file: ubuntu-8.04-desktop-i386.iso and its MD5 file. To check the MD5sum, in your terminal,
md5sum ubuntu-8.04-desktop-i386.iso
and it will produce something like this:
8895167a794c5d8dedcc312fc62f1f1f ubuntu-8.04-desktop-i386.iso
Now, open up the MD5 file (with your text editor) and compare the 32 characters string with the one shown above. If all the figures are correct, then the integrity of your downloaded file is intact.
If the above MD5 hash is stored in the file such as ubuntu-8.04-desktop-i386.iso.md5, you can simply verifying the MD5sum by
md5sum -c ubuntu-8.04-desktop-i386.iso.md5
If all is correct, it will produce the message
ubuntu-8.04-desktop-i386.iso: ok
While Mac users can do the same thing in the terminal, for those who do not want to get their hands dirty, they can use the software: MD5 Filecheck to check the MD5sum. Simply drop the file to the application icon to display the MD5 hash. You can then verify it with the MD5 file.
For Windows users, there are plenty of software available that allow you to check MD5 hash. A small and easy to use software would be MD5 Check.
For more technology news, tips and tricks, subscribe to Make Tech Easier today.
Popularity: 27% [?]
If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

















2 Comments Received
One of the really nice features of an MD5 is that it can be used for password hashing. This method only sends a challenge/response hash rather than sending your password in clear text. I use it with Wordpress on Apache to secure .htacces on my website. Nice article. Just out of interest, did you know that about two years ago a Japanese scientist proved that you can modify the content of a package without modifying the hash? Pity it hasn’t invalidated speed camera tickets!
@James: Nice point. Thanks for informing, I didn’t know that news about the japanese scientist cracking the code.
Leave A Reply