2

I am learning to use ddrescue and I would like to know what the -d (direct) option is for and in what scenarios it is recommended to use.

MarianoM
  • 161

1 Answers1

2

In some circumstances -d (or --idirect) allows you to rescue more data.

It's true man ddrescue shortly says it means

use direct disc access for input file

and this may not explain a lot. However there's also GNU ddrescue Manual online:

11 Direct disc access

If you notice that the positions and sizes in mapfile are always multiples of the sector size, maybe your kernel is caching the disc accesses and grouping them. In this case you may want to use direct disc access for infile, or read from a raw device, to bypass the kernel cache and rescue more of your data.

NOTE! Sector size must be correctly set with the --sector-size option for direct disc access to work.

NOTE: Direct disc access can copy arbitrary domains by reading whole sectors and then writing only the requested part. This is the only case where ddrescue will try to read data outside of the rescue domain.

Try the --idirect option first. If direct disc access is not available in your system, try raw devices. Read your system documentation to find how to bind a raw device to a regular block device. Some OSs provide raw access through especial device names, like /dev/rdisk.

Ddrescue aligns its I/O buffer to the sector size so that it can be used for direct disc access or to read from raw devices. For efficiency reasons, also aligns it to the memory page size if page size is a multiple of sector size. On some systems, ddrescue can't determine the size of a raw device, so an explicit --size or --complete-only option may be needed.

Using direct disc access, or reading from a raw device, may be slower or faster than normal cached reading depending on your OS and hardware. In case it is slower you may want to make a first pass using normal cached reads and use direct disc access, or a raw device, only to recover the good sectors inside the failed blocks.