DDRESCUE - 如何重新运行第一遍(暂时不要反向操作)?

DDRESCUE - 如何重新运行第一遍(暂时不要反向操作)?

我运行了几天的 ddrescue,恢复了大约 60G。它已经慢得像爬行一样,并且 ipos 大约为 90M。我重新启动,添加 -a100000,仅 3 个小时就又恢复了 35G。它开始反向阶段,现在发出很多噪音,读取的数据很少(自上次读取以来的时间已经达到 2 分钟),所以我停止了它。

这是原始命令:ddrescue -n -f /dev/sda /dev/sdc /home/B/Desktop/rescue.log(sdc 是一个全新的驱动器。)

我注意到,使用 -a100000 时,它会跳过大部分磁盘。我想返回并再次进行第一次遍历,这次可能使用 -a50000,并对它可以跳过的部分设置最大值。我非常担心磁盘末端部分 (492M) 反向的过大噪音。这是一个损坏的驱动器 - 笔记本电脑在运行时掉落时磁盘崩溃了。以前它没有发出这样的噪音。

(当读取速度降至 x 字节/秒以下时,-a 选项会使其继续运行。)

我不明白 -i 选项应该做什么。听起来它应该是它开始的地方,但手册页明确指出它不是那样的。(“这不是 ddrescue 开始复制的点。”)但它没有说明,至少对我来说,它确实做了什么。(gnu.org...ddrescue_manual.html)

我该如何从磁盘的开头(无论如何都是重要内容的地方)开始第一次传递,向前传递最初跳过的部分?我需要从大约 90M 开始,因为它在执行第一部分时没有使用 -a 选项,因此它没有向前跳过。(我可能会使用 -a50000 并将最大值设置为某个值,除非有人有更好的主意。我想在驱动器发生故障之前获得大部分我能获得的东西。)

更新

我尝试添加 -i73GiB,但它从大约 480,000 MB 开始向前移动,这是反向移动停止的地方。所以我停止了它。

我尝试添加 -i73GiB 和 -A,但结果是一样的,-A 没有效果。我再次停止了它。

(-A:“在开始救援之前,将救援域内所有未修剪和未刮擦的块标记为未尝试。”)

我没有看到任何其他可以尝试的选择。

答案1

我使用以下两个选项来指定要救援的驱动器部分。在反向模式下,ddrescue从 {start position} + {size} 开始(如果仍在驱动器内)。因此,您可以定义一个间隔

info ddrescue

'-i BYTES'
'--input-position=BYTES'
     Starting position of the rescue domain in INFILE, in bytes.
     Defaults to 0. This is not the point from which ddrescue starts
     copying.  (For example, if you pass the '--reverse' option to
     ddrescue, it starts copying from the end of the rescue domain). In
     fill mode it refers to a position in the INFILE of the original
     rescue run. See the chapter Fill mode (*note Fill mode::) for
     details.

'-s BYTES'
'--size=BYTES'
     Maximum size of the rescue domain, in bytes. It limits the amount
     of input data to be copied. If ddrescue can't determine the size
     of the input file, you may need to specify it with this option.
     Note that this option does not specify the size of the resulting
     OUTFILE. For example, the following command creates an OUTFILE 300
     bytes long, but only writes data on the last 200 bytes:

          ddrescue -i 100 -s 200 infile outfile mapfile

这样你就可以避免驱动器的某些部分受到严重损坏。我最近用这种方法从两个严重划伤的磁盘中拯救了 DVD 视频。

相关内容