home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1607 / README < prev    next >
Text File  |  1990-12-28  |  936b  |  28 lines

  1. This is a program designed to speed up writing tapes on remote tape
  2. drives.  It runs on SunOS so long as you have shared memory and locks. 
  3.  
  4. The program splits itself into two processes.  The first process reads
  5. (and reblocks) from stdin into a shared memory buffer.  The second
  6. writes from the shared memory buffer to stdout.  Doing it this way
  7. means that the writing side effectly sits in a tight write loop.
  8.  
  9. I run an archive and need to write large chunks out to tape regularly
  10. with an ethernet in the way.  Using 'buffer' in a command like:
  11.  
  12.     tar cvf - stuff | rsh somebox "buffer > /dev/rst8"
  13.  
  14. is a factor of 5 faster than the best alternative, gnu tar with its
  15. remote tape option:
  16.  
  17.     tar cvf somebox:/dev/rst8 stuff
  18.  
  19. It also speeds up remote dumps!
  20.  
  21. Lee McLoughlin,
  22. Imperial College, 1990
  23.  
  24. Janet: lmjm@uk.ac.ic.doc    Uucp:  lmjm@icdoc.UUCP (or ..!ukc!icdoc!lmjm)
  25. DARPA: lmjm@doc.ic.ac.uk (or lmjm%uk.ac.ic.doc@nsfnet-relay.ac.uk)
  26.  
  27.  
  28.