
Originally Posted by
darkdragn
Well, one option might be to scrap that image, install ddrescue, and run it.
dd_rescue /dev/sr0 /tmp/cdimg1.iso
... also... it might have worked, if you would have done
dd if=/dev/sr0 of=/tmp/cdimg1.iso
You make an image of a directory, not a device... i've never seen anyone do that...
Edit: Since you said it isn't scratched, I'm sure that's what's wrong. You did a byte copy of a directory, and pushed all of the files into one... not a byte copy of a device with filesystem structure included. Once you do
dd if=/dev/sr0 of=/tmp/cdimg1.iso
Mount it as follows
cd /tmp
mkdir temp
mount -o loop cdimg1.iso temp/
Bookmarks