[Bug 483792] Re: Brasero Copy to ISO image does not work for some DVDs
Michael Rumpf
michael at rumpfonline.de
Mon Nov 16 21:13:49 UTC 2009
I was able to convert the Antz DVD into a ISO image using the following
script:
#!/bin/bash
DEV=$1
ISO=$2
if [ -z "$DEV" ]
then
echo "Usage: $0 <DEVICE> <IMAGENAME>"
exit 1
fi
if [ -z "$ISO" ]
then
echo "Usage: $0 <DEVICE> <IMAGENAME>"
exit 1
fi
BS=$(isoinfo -d -i $DEV | grep "block size" | awk '{print $5}')
VS=$(isoinfo -d -i $DEV | grep "Volume size" | awk '{print $4}')
dd if=$DEV of="$ISO" bs=$BS count=$VS
--
Brasero Copy to ISO image does not work for some DVDs
https://bugs.launchpad.net/bugs/483792
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
--
ubuntu-bugs mailing list
ubuntu-bugs at lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
More information about the universe-bugs
mailing list