DD img different MD5's? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:59:30Z http://stackoverflow.com/feeds/question/636100 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/636100/dd-img-different-md5s 1 DD img different MD5's? SpyderDriver 2009-03-11T19:59:04Z 2009-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#636124 1 Answer by Liudvikas Bukys for DD img different MD5's? Liudvikas Bukys 2009-03-11T20:05:19Z 2009-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#636145 1 Answer by Joe Koberg for DD img different MD5's? Joe Koberg 2009-03-11T20:09:22Z 2009-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#636251 1 Answer by Martin for DD img different MD5's? Martin 2009-03-11T20:34:09Z 2009-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>