On Sat, 22 Aug 2015 04:17:53 +0100, Mike Tomlinson wrote:
> Yes. On Linux:
>
> md5sum /dev/dvd
>
> (or whatever Linux calls your raw DVD device. If /dev/dvd doesn't work,
> try /dev/cd, /dev/cdrom, /dev/cdrom0, /dev/scd, /dev/sr0 or /dev/scd0.)
>
> This will read the entire disk, and the checksum should be the same as
> that for the file.
$ md5sum /dev/dvd
md5sum: /dev/dvd: No such file or directory
$ md5sum /dev/cd
md5sum: /dev/cd: No such file or directory
$ md5sum /dev/cdrom
md5sum: /dev/cdrom: No medium found
$ md5sum /dev/cdrom0
md5sum: /dev/cdrom0: No such file or directory
$ md5sum /dev/scd
md5sum: /dev/scd: No such file or directory
$ md5sum /dev/scd0
md5sum: /dev/scd0: No such file or directory
$ md5sum /dev/sr0
md5sum: /dev/sr0: No medium found
$ md5sum /dev/sr1
This made the external USB-connected DVD burner whir away for
something like a few minutes (or thereabouts), but it finally
stopped whirring and reported the following:
$ md5sum /dev/sr1
99feb0f9e7262b7eefa460840a31b59d /dev/sr1
From that, I conclude three things:
1. The internal cd burner is /dev/sr0 (probably)
2. The external dvd burner is /dev/sr1 (almost certainly)
3. The 32-bit Win10 checksum matches that of the ISO on the HDD!
Thanks for explaining how to verify, after the fact, a Windows 10
ISO once burned to DVD disc on Linux.