I have an ISO file and a DVD burned from that ISO file. Is there a way I can validate that the DVD contains the same as the ISO file and that nothing is wrong with the DVD?
I have the tools available on the System Rescue CD.
|
I have an ISO file and a DVD burned from that ISO file. Is there a way I can validate that the DVD contains the same as the ISO file and that nothing is wrong with the DVD? I have the tools available on the System Rescue CD.
| |||||||||||
feedback
|
|
The following command compares the contents of two binary files, and print the offset of the first differing byte. Replace
I'm not sure if all DVDs contain an indication of where the data ends (I think some CDs don't); you can limit the comparison to the size of the image file.
You can also compute a checksum for the image file, compute a checksum for the disk, and check that they match. This is slower for a single comparison, but faster if you need to compare many disks against one image, and allows the image and the disk to be on different computers. To detect accidental corruption,
| |||
|
feedback
|
|
I assume from your post that you are on Linux. See this article : Verify a burned CD/DVD image on Linux. The main idea is simple :
| |||||
feedback
|