|
NAMErecoverdisk —
recover data from hard disk or optical media
SYNOPSIS
DESCRIPTIONTherecoverdisk 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:
The OUTPUTTherecoverdisk utility prints several columns,
detailing the progress
EXAMPLES# 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 SEE ALSOdd(1), ada(4), cam(4), cd(4), da(4)HISTORYTherecoverdisk utility first appeared in
FreeBSD 7.0.
AUTHORSThe 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. BUGSReading 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.
# sysctl kern.cam.ada.retry_count=0 # sysctl kern.cam.cd.retry_count=0 # sysctl kern.cam.da.retry_count=0
Visit the GSP FreeBSD Man Page Interface. |