You need to verify that that downloaded Linux DVD or ISO images are intact before you burn and use them. This is security feature. But how do you verify ISO images?
Answer is quite simple use md5sum command to compute and check MD5 message digest.
Why verify ISO images?
a) To protect yourself
b) Verify that a file has not changed as a result of file transfer, disk error, cracker attacks, etc.
How does it work?
When you run md5sum command on ISO file, you get checksum (or hash) on screen. You need to compare this checksum with original. It works as a compact digital fingerprint of a file. You can then compare the MD5 hash of your download ISO file, to the known good hash of the file you are checking. If the two values match, you are safe and use the ISO image.
Example
Let us download FreeBSD ISO image:
$ cd /tmp
$ wget ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.2/6.2-RELEASE-i386-bootonly.iso
Next download MD5 checksum:
$ wget ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.2/CHECKSUM.MD5
Generate MD5 hash for ISO image
$ md5sum 6.2-RELEASE-i386-bootonly.iso
Output:
4e8701ac951bc4537f8420fdac7efbb5 6.2-RELEASE-i386-bootonly.iso
Verify ISO image
See the known good hash of the file (6.2-RELEASE-i386-bootonly.iso):
$ md5sum -c CHECKSUM.MD5
Output:
6.2-RELEASE-i386-bootonly.iso: OK
You can also use following command for the same purpose:
A note for Windows XP / Vista users
- You can verify MD5 checksum of an ISO file under Windows XP/vista using winmd5sum program.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 4 comments… read them below or add one }
I am a beginner to linux. I want to master linux and gnu C. I would like to get some tips for that from experienced people like you. Please help me in this regard
Thanks in advance
DON
DON,
You can try out your specific questions at our forum
I know this article has been posted for a while but can you please help me understand the situation I’m facing?
I tried using the method above to verify my FreeBSD 7 download from “ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/7.0/”.
1st time using firefox 3, 2nd time with a firefox download manager “downloadthemall” and third time using wget.
For all 3 downloads all checksums were different and didn’t match the CHECKCUM.MD5 provided at “ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/7.0/”.
Makes me wonder if the difference are caused either by different download methods or corrupted downloads.
What about checking a dvd itself? I once burned slack 13 32bit to a dvd with growisofs, and it seemed to be corrupted, it gave me an error about glibc… I was trying to use XFS, it seems to be the best choice and has worked well for me.