RECOVERDISK(1) | MidnightBSD General Commands Manual | RECOVERDISK(1) |
recoverdisk
—
recover data from hard disk or optical media
recoverdisk |
[-b bigsize]
[-r readlist]
[-s interval]
[-w writelist]
source [destination] |
The recoverdisk
utility reads data from
the source file until all blocks could be successfully
read. If destination was specified all data is being
written to that file. It starts reading in multiples of the sector size.
Whenever a block fails, it is put to the end of the working queue and will
be read again, possibly with a smaller read size.
By default it uses block sizes of roughly 1 MB, 32kB, and the native sector size (usually 512 bytes). These figures are adjusted slightly, for devices whose sectorsize is not a power of 2, e.g., audio CDs with a sector size of 2352 bytes.
The options are as follows:
-b
bigsize-r
readlist-s
interval-w
writelistrecoverdisk
is aborted via
SIGINT
.The -r
and -w
options can be specified together. Especially, they can point to the same
file, which will be updated on abort.
The recoverdisk
utility prints several
columns, detailing the progress
# recover data from failing hard drive ada3 recoverdisk /dev/ada3 /data/disk.img # clone a hard disk recoverdisk /dev/ada3 /dev/ada4 # read an ISO image from a CD-ROM recoverdisk /dev/cd0 /data/cd.iso # continue reading from a broken CD and update the existing worklist recoverdisk -r worklist -w worklist /dev/cd0 /data/cd.iso # recover a single file from the unreadable media recoverdisk /cdrom/file.avi file.avi # If the disk hangs the system on read-errors try: recoverdisk -b 0 /dev/ada3 /somewhere
The recoverdisk
utility first appeared in
FreeBSD 7.0.
The original implementation was done by Poul-Henning Kamp <phk@FreeBSD.org> with minor improvements from Ulrich Spörlein <uqs@FreeBSD.org>.
This manual page was written by Ulrich Spörlein.
Reading from media where the sectorsize is not a power of 2 will
make all 1 MB reads fail. This is due to the DMA reads being split up into
blocks of at most 128kB. These reads then fail if the sectorsize is not a
divisor of 128kB. When reading a full raw audio CD, this leads to roughly
700 error messages flying by. This is harmless and can be avoided by setting
-b
to no more than 128kB.
recoverdisk
needs to know about read
errors as fast as possible, i.e. retries by lower layers will usually slow
down the operation. When using
cam(4) attached drives, you
may want to set kern.cam.XX.retry_count to zero, e.g.:
# sysctl kern.cam.ada.retry_count=0 # sysctl kern.cam.cd.retry_count=0 # sysctl kern.cam.da.retry_count=0
October 1, 2013 | midnightbsd-3.1 |