home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / ultrix / 6891 < prev    next >
Encoding:
Internet Message Format  |  1992-09-14  |  752 b 

  1. Path: sparky!uunet!decwrl!pa.dec.com!datum.nyo.dec.com!croton.nyo.dec.com!frank
  2. From: frank@croton.nyo.dec.com (Frank Wortner)
  3. Newsgroups: comp.unix.ultrix
  4. Subject: Re: copying from tape remotely (rmt tar rmt0h)
  5. Keywords: rmt tar tape
  6. Message-ID: <4455@datum.nyo.dec.com>
  7. Date: 14 Sep 92 14:19:12 GMT
  8. References: <1992Sep13.174634.4746@Urmel.Informatik.RWTH-Aachen.DE>
  9. Sender: newsdaemon@datum.nyo.dec.com
  10. Reply-To: frank@nyo.dec.com
  11. Organization: Digital Equipment Corporation
  12. Lines: 17
  13.  
  14.  
  15. You can do simple cases like so:
  16.  
  17.     rsh remote_machine dd if=/dev/rmt0h bs=10k | tar xvf -
  18.  
  19. to extract, and
  20.  
  21.     tar cvf - | rsh remote_machine dd of=/dev/rmt0h bs=10k
  22.  
  23. to write.
  24.  
  25. GNU tar will also do what you want:
  26.  
  27.     gtar xvf remote_machine:/dev/rmt0h
  28.  
  29.  
  30.                     Frank
  31.