Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!shadooby!ginosko!uunet!zephyr.ens.tek.com!tekcrl!tekgvs!keithe From: keithe@tekgvs.LABS.TEK.COM (Keith Ericson) Newsgroups: comp.unix.i386 Subject: Re: Backup utilities for ix-386 Keywords: backup ix-386 Message-ID: <6187@tekgvs.LABS.TEK.COM> Date: 18 Oct 89 20:53:01 GMT References: <185@softest.UUCP> <[253554b6:333.1]comp.unix.i386;1@vpnet.UUCP> <11954@watcgl.waterloo.edu> <107@gizzmo.UUCP> Reply-To: keithe@tekgvs.LABS.TEK.COM (Keith Ericson) Distribution: na Organization: Tektronix, Inc., Beaverton, OR. Lines: 33 In article <107@gizzmo.UUCP> mark@gizzmo.UUCP (mark hilliard) writes: > >I personally like to use find piped to cpio and out to tape like: > >find /partition -print | cpio -ocduBvm > /dev/tape& A couple of minor improvements (OK - you be the judge :-)) find /partition -print | cpio -ocduBvm > /dev/tape& ^^ ^ First of all, the -o option doesn't accept the indicated flags. (Big deal - cpio would've told you the same thing...) Second, avoid the "reached end of medium on output...." message (and careful typing required to specify the subsequent output location) by using the -O flag: find /partition -print | cpio -ocBv -O /dev/tape & (The -I flag is used for cpio -i...) Finally, speed things up a bit with an output buffer: find /partition -print | cpio -ocBv -C 1024000 -O /dev/tape & this requires that "tape" be (linked to) the character-special device (i.e., /dev/rmt/c0s0). kEITHe