Many new users of Kubuntu have problems with their installation. These problems are most often narrowed down to a bad download or a bad burn of the ISO. Checking the md5sum of a download has been addressed in the following post:
http://kubuntuforums.net/forums/inde...opic=3104464.0
This tip deals with checking the md5sum of the CD after the burn.
So, you burn the ISO onto a CD at 4X, or as low as your burner will go (mine is 10X), and now the burn is done. The burn is usually more successful if you use the TAO (Track At Once) or the DAO (Disk At Once) option, depending on your hardware, instead of "Auto".
The CD has been ejected by your burner, or you ejected it.
Question: How do you verify the md5sum of the burned CD?
Here is how you test the burned CD:
Close the CD tray. Open a Konsole and issue the following command:
The md5sum that was returned, in 257 seconds, is correct, so my burn was good.
I know, you're asking how I got that size, 693188608? Using Dolphin I right moused on the iso file in the download directory and clicked on the "Properties" option. In that dialog the exact byte size is displayed. For your ISO use that value instead of the number I used above.
IF the md5sum of the CD (now a LiveCD) had not been good then you can immediately burn a NEW CD of the ISO and then test the CD again. This way you don't have to boot the LiveCD and use the test option on its menu, only to reboot your computer again if the LiveCD CD test option reveals a bad LiveCD. If this md5sum check of the CD works then you can boot the LiveCD immediately and know that it is good.
It's NOT ENOUGH to merely check the md5sum of the downloaded ISO file. You must also check the md5sum of the burned CD.
Now you know how to do it.
You also now know that if you have any problems during or after the install it lies in the options you chose while installing Kubuntu, something you did after the install, or a bug in an application.
EDIT - 10/15/09
BlindSide (whom I now call "BashMaster" 8) ) has added a modification to the command I posted above. It is a decided improvement over my method in that it does NOT require one to use Dolphin to find out the exact byte size of the iso file. For that reason I recommend that you scroll down to BashMaster's post and use his method.
The only thing left to do now is to create a script, say, "chkcdrom", which can be called like so;
chkcdrom somefile.iso
and have it print the md5sum of the CD in the cdrom to the standard output.
http://kubuntuforums.net/forums/inde...opic=3104464.0
This tip deals with checking the md5sum of the CD after the burn.
So, you burn the ISO onto a CD at 4X, or as low as your burner will go (mine is 10X), and now the burn is done. The burn is usually more successful if you use the TAO (Track At Once) or the DAO (Disk At Once) option, depending on your hardware, instead of "Auto".
The CD has been ejected by your burner, or you ejected it.
Question: How do you verify the md5sum of the burned CD?
Here is how you test the burned CD:
Close the CD tray. Open a Konsole and issue the following command:
dd if=/dev/cdrom bs=2048 | head -c 693188608 | md5sum (See end of msg)
e5e5a9ae40eea8a6ca01423d24e24ecd -
338471+0 records in
338471+0 records out
693188608 bytes (693 MB) copied, 257.534 s, 2.7 MB/s
e5e5a9ae40eea8a6ca01423d24e24ecd -
338471+0 records in
338471+0 records out
693188608 bytes (693 MB) copied, 257.534 s, 2.7 MB/s
I know, you're asking how I got that size, 693188608? Using Dolphin I right moused on the iso file in the download directory and clicked on the "Properties" option. In that dialog the exact byte size is displayed. For your ISO use that value instead of the number I used above.
IF the md5sum of the CD (now a LiveCD) had not been good then you can immediately burn a NEW CD of the ISO and then test the CD again. This way you don't have to boot the LiveCD and use the test option on its menu, only to reboot your computer again if the LiveCD CD test option reveals a bad LiveCD. If this md5sum check of the CD works then you can boot the LiveCD immediately and know that it is good.
It's NOT ENOUGH to merely check the md5sum of the downloaded ISO file. You must also check the md5sum of the burned CD.
Now you know how to do it.
You also now know that if you have any problems during or after the install it lies in the options you chose while installing Kubuntu, something you did after the install, or a bug in an application.
EDIT - 10/15/09
BlindSide (whom I now call "BashMaster" 8) ) has added a modification to the command I posted above. It is a decided improvement over my method in that it does NOT require one to use Dolphin to find out the exact byte size of the iso file. For that reason I recommend that you scroll down to BashMaster's post and use his method.
The only thing left to do now is to create a script, say, "chkcdrom", which can be called like so;
chkcdrom somefile.iso
and have it print the md5sum of the CD in the cdrom to the standard output.
Comment