Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!maverick.ksu.ksu.edu!uafhp!uafhcx!tn03 From: tn03@uafhcx.uucp (Tn3270 access) Newsgroups: comp.unix.admin Subject: Re: Backup across network using cpio Summary: remsh Message-ID: <5637@uafhp.uark.edu> Date: 3 Dec 90 20:24:27 GMT References: <189@ucc386.UUCP> Sender: netnews@uafhp.uark.edu Organization: College of Engineering, University of Arkansas, Fayetteville Lines: 22 In article <189@ucc386.UUCP>, machovec@ucc386.UUCP (The man for the job!d) writes: > I would like to execute one command using cpio > from the HP Vectra 486 to recover files directly from the DAT tape drive > on the HP 370 and put them on back on the HP Vectra 486. > > Thanks, > Gregg (Email: machovec@ucc386.uunet) I personally use afio to back up four HP-UX boxes to one DAT drive. I don't use cpio often enough to answer your question specifically, but this is the way I do it with afio: remsh DAThost dd if=/dev/DAT bs=1024k | afio -i - The - represents standard input. Using the standard output of a remsh dd is a good way to go. I do something very similar to back the machines up. find / -print | afio -o - | remsh DAThost dd of=/dev/DAT bs=1024k I hope this helps.