summaryrefslogtreecommitdiff
path: root/sysutils/dd_rescue
AgeCommit message (Collapse)AuthorFilesLines
2007-12-22Update dd_rescue to 1.14 and add support for DESTDIR.taca3-12/+32
Changes from 1.12: The current version is 1.14, released 2007-08-28. In version 1.14, a bug is fixed that could lead to a target file not having the correct size when copied in sparse (-a) mode. In version 1.13, a bug with read-errors and non-seekable output has been fixed.
2006-10-19Update dd_rescue to 1.12 (PR pkg/34573 from Martin Wilke) + add README file.ghen4-13/+15
In version 1.12, the ability to log bad blocks to a ASCII file has been added. The option -y can be used to set the fsync frequency which can speed up the copy significantly.
2006-05-09Don't use O_DIRECT on DragonFly.joerg2-1/+17
2006-03-08Import dd_rescue, a dd(1)-like tool for rescuing data from media with errors.ghen5-0/+54
Like dd, dd_rescue does copy data from one file or block device to another. You can specify file positions (called seek and Skip in dd). There are several differences: * dd_rescue does not provide character conversions. * The command syntax is different. Call dd_rescue -h. * dd_rescue does not abort on errors on the input file, unless you specify a maximum error number. Then dd_rescue will abort when this number is reached. * dd_rescue does not truncate the output file, unless asked to. * You can tell dd_rescue to start from the end of a file and move backwards. * It uses two block sizes, a large (soft) block size and a small (hard) block size. In case of errors, the size falls back to the small one and is promoted again after a while without errors.