DD img different MD5's? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T19:59:30Zhttp://stackoverflow.com/feeds/question/636100http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/636100/dd-img-different-md5s1DD img different MD5's?SpyderDriver2009-03-11T19:59:04Z2009-03-11T20:34:09Z
<p>We have a smart media card with a linux install on it that we need to duplicate. We created an img with DD and then used dd to write the img back to a couple of new smart media cards. We have compared the MD5 checksum of both the original and the new copies and they are different. </p>
<p>Here is what we used:</p>
<p>dd if=/dev/sdb of=myimage.img</p>
<p>dd if=myimage.img of=/dev/sdb</p>
<p>dd if=/dev/sdb of=newimage.img</p>
<p>Anyone have any ideas of why these come out different?</p>
http://stackoverflow.com/questions/636100/dd-img-different-md5s/636124#6361241Answer by Liudvikas Bukys for DD img different MD5's?Liudvikas Bukys2009-03-11T20:05:19Z2009-03-11T20:05:19Z<p>The card capacities differ?
Running 'ls -l myimage.img newimage.img' might tell you something.
Running 'cmp -l myimage.img newimage.img' might tell you something.</p>
http://stackoverflow.com/questions/636100/dd-img-different-md5s/636145#6361451Answer by Joe Koberg for DD img different MD5's?Joe Koberg2009-03-11T20:09:22Z2009-03-11T20:09:22Z<p>If the cards are different sizes, dd'ing the smaller image to a larger card will not "fill it up", and zeros will remain at the end of the card. An image made from this card will be different than the original image.</p>
<p>It's also always possible that data was mis-written, mis-read, or otherwise corrupted in-transit. </p>
http://stackoverflow.com/questions/636100/dd-img-different-md5s/636251#6362511Answer by Martin for DD img different MD5's?Martin2009-03-11T20:34:09Z2009-03-11T20:34:09Z<p>If you mounted /dev/sdb in between it would be an answer. If I remember correctly ext2 and ext3 have a "mount counter".</p>