LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Closed Thread
  Search this Thread
Old 02-16-2006, 04:45 PM   #1
noob_nz
LQ Newbie
 
Registered: Feb 2006
Location: Christchurch, New Zealand
Distribution: WinXP, SUSE 10.0
Posts: 5

Rep: Reputation: 0
How do I verify the MD5 of my burnt DVD?


Hi

From my WinXP machine:
I have downloaded SUSE-10.0-EvalDVD-i386-GM.iso and the MD5 sum.
Using MD5 Summer I verified that the ISO was ok

Using Nero 7, I have burnt the image to DVD and used the "verify option". Nero reported everything ok.

I can boot from the DVD and I did a media check, again "no errors".

I then used IsoBuster to create an MD5 from my burnt DVD and it doesn't match the ISO MD5. After some research I gather that the two MD5's might be different (?)

So, how do I verify my burnt DVD against the ISO MD5?
or is there anything else I can do to check I burnt the ISO correctly?

Thanks, Ilija

Edit: doh! wrong distro forum but anyway...

Last edited by noob_nz; 02-16-2006 at 04:52 PM. Reason: wrong forum
 
Old 02-16-2006, 05:29 PM   #2
gilead
Senior Member
 
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 14.0
Posts: 4,141

Rep: Reputation: 168Reputation: 168
I use the following script (saved as copy-raw-cd.sh) to get data from a CD or DVD so that I can burn or check md5sums:
Code:
#!/bin/bash
#
# See <http://www.troubleshooters.com/linux/coasterless.htm>
# Reads directly from the CD or DVD device specified on the command line amd dumps it to STDOUT
#
# Typical usage:
#                copy-raw-cd.sh /dev/dvd > /tmp/dvd-contents.iso
#
# To use this script to check the md5sum of the disk, do the following:
#                copy-raw-cd.sh /dev/dvd | md5sum
#   compare the result with:
#                md5sum /tmp/dvd-contents.iso
#
# Burn the iso with something like:
#                /usr/bin/cdrecord dev=ATA:1,1,0 speed=10 padsize=63s -pad -dao -v -eject /tmp/dvd-contents.iso
#

device=$1

blocksize=`/usr/bin/isoinfo -d -i $device | grep "^Logical block size is:" | cut -d " " -f 5`
if test "$blocksize" = ""; then
	echo catdevice FATAL ERROR: Blank blocksize >&2
	exit
fi

blockcount=`/usr/bin/isoinfo -d -i $device | grep "^Volume size is:" | cut -d " " -f 4`
if test "$blockcount" = ""; then
	echo catdevice FATAL ERROR: Blank blockcount >&2
	exit
fi

command="/bin/dd if=$device bs=$blocksize count=$blockcount conv=notrunc,noerror"
echo "$command" >&2
$command

# ends.
 
Old 02-16-2006, 06:00 PM   #3
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Please do not post the same thread in more than one forum. Picking the most relevant forum and posting it once there makes it easier for other members to help you and keeps the discussion all in one place.

http://www.linuxquestions.org/rules.php
 
  


Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how can i do a md5 of a dvd? Xavius Linux - General 1 03-16-2005 05:30 PM
Firefox burnt dotancohen Linux - Software 2 02-18-2005 03:58 PM
SUSE MD5 checksum for DVD ISO refuses to match tisource SUSE / openSUSE 1 02-07-2005 05:26 PM
How to verify downloaded files with MD5 file? ICO Linux - General 3 03-15-2004 11:28 PM
Can I Confirm or Verify an md5 password? MikHud Linux - Security 1 04-03-2002 06:43 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 02:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration