0

I have already burned the DVD from the ISO for Kubuntu 15.10.iso image. ISO verifies fine. But I read we are to verify the DVD also. I ran:

$ sha256sum /dev/cdrom
758061ca3be30128dca74e3f73b5dd6e76fb5047c0c4e0743f22786fb0a02dd0  /dev/cdrom

The only thing is, the download site tells you how to do the checksum, but there is no listing of what the hash response should be. I checked the entire site I believe.

Can someone please share the correct hash response for Kubuntu 15.10 64bit ISO? And provide link to where it is officially listed please.

muru
  • 207,228

2 Answers2

2

The checksums of ISO and DVD should be the same. But most optical media return more bytes than were recorded. This alters the checksum result, of course.

You need to restrict reading from DVD to the size of the ISO, See in https://www.debian.org/CD/faq/#verify the third paragraph "The problem with the verification of written optical media ..."

The same amount of bytes as in the ISO file must yield the same checksum. Else the DVD is not good.

0

The sha256sum hash result of your /dev/cdrom must the same as the hash of your ISO

sha256sum /dev/cdrom

dd if=/dev/cdrom | head -c $(wc -c < kubuntu-15.10*.iso) | sha256sum -

and

sha256sum kubuntu-15.10-desktop-amd64.iso

must return the same result

the correct hash = 9e5eb424eabfd9b2d193d8c34eca7b48ad944b90c0de0bdcbb638563c14c4d2b Source