When I was using DOS and Windows I've seen quite a selection of tools to check optical disks for readability and benchmark an optical drive itself. Most of them were even visualising the results in form of a pretty chart.
Are there any such for GNU/Linux OSes?
I'd prefer to have a full-featured visual GUI tool, but for the particular case I've got now, I just need to check if my CD drive can read every byte of a particular heavily-scratched CD-RW disk.
dd
here.cat /dev/cdrom
andmd5sum /dev/cdrom /path/to/file.iso
will work just as well. – Gilles 'SO- stop being evil' Feb 12 '11 at 22:06md5sum
on either the image from the CD or that on the hard disk one should consider the possibility of having trailing zeroes at the end of the .iso file. See this answer for more details. – Sep 15 '12 at 09:55