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.
14 lines
331 B
Text
14 lines
331 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2006/03/08 08:42:04 ghen Exp $
|
|
|
|
--- Makefile.orig 2006-03-08 09:29:43.000000000 +0100
|
|
+++ Makefile
|
|
@@ -6,9 +6,6 @@ VERSION = 1.11
|
|
|
|
DESTDIR =
|
|
|
|
-CC = gcc
|
|
-RPM_OPT_FLAGS = -O2 -Wall -g
|
|
-CFLAGS = $(RPM_OPT_FLAGS) $(EXTRA_CFLAGS)
|
|
DEFINES = -DVERSION=\"$(VERSION)\"
|
|
INSTALL = install
|
|
INSTALLFLAGS = -s
|