On Wed, Nov 1, 2017 at 1:29 PM, Felix Miata <mrmazda@earthlink.net> wrote:
Greg Freemyer composed on 2017-11-01 12:32 (UTC-0400):
The DVDR froze trying to play a recording, so I shut it down, pulled the HD out, and made an image of it thus:
ddrescue -d /dev/sdc dvdrfile.img dvdrfile.logfile
Rescued size while running was 10MB less than total size. Average rate was 49894kB/s. Errsize: 67072B. Errors: 81. Rescued: 320072MB. ipos/opos 314588MB. Runtime: 106min.
With default options skip-size is not one sector. So each error saw numerous sectors skipped.
Also the default is to image in the forward direction.
Now that you're 99.9% done, you want to override both:
-- reverse causes the sectors to be read from the highest sector first. That mechanically changes how the heads move around, so it can cause unreadable sectors to become readable.
-- skip-size=512,512 forces a error to only impact a single sector.
So you want to rerun the command as:
ddrescue -d /dev/sdc --reverse --skip-size=512,512 dvdrfile.img dvdrfile.logfile
ddrescue: Numerical argument out of limits. :-(
My mistake, try: ddrescue -d /dev/sdc --reverse --skip-size=64KiB,64Kib dvdrfile.img dvdrfile.logfile Greg -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org