home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Tools / tape / ArchiveViperUpdate.README < prev    next >
Encoding:
Text File  |  1994-05-10  |  2.1 KB  |  55 lines

  1.      This program is a tool to access a tape like "Archive Viper 150" from
  2.      a computer running NS. 
  3.  
  4.      Updated to work also on 486 PCs, with sensitive compilation, because
  5.      scsi data strutures are sensitive to __BIG_ENDIAN__ or __LITTLE_ENDIAN__.
  6.  
  7.      I've been using it with a Sun 150Mb tape. Files taped on NS can be read
  8.     in LINUX (tested), and in other systems.
  9.  
  10.      (PCs) You must add the SCSI Tape driver with Configure.app, to access
  11.      tape devices (on the PCs):
  12.           /dev/rst?   Generic SCSI tape, rewind on close
  13.           /dev/nrst?  Generic SCSI tape, no rewind on close
  14.  
  15.  
  16.     On ArchiveViperUpdate.compressed, there are to executables (This is because some people doesn't have the Developer installed.):
  17.         - tape68000, to use on NeXT machines (compiled under NS3.0),
  18.         - tape486, to use on PCs running NeXTSTEP (compiled under NS3.1).
  19.     Rename the one that you need to `tape'.
  20.         - p.e. mv tape486 tape
  21.     Install it on your path
  22.         - p.e. cp tape /usr/local/bin 
  23.  
  24.     To compile it, on a terminal window:
  25.         - change to the directory whereis tape.c and Makefile files,
  26.         (p.e. cd /usr/local/viper-tapes) 
  27.  
  28.         - simple type `make', and a executable named tape will be generated
  29.         for you.
  30.   
  31. USERS MANUAL:
  32.  
  33.      tape [-f device] [fsf|fsr|bsf|bsr|rew|end] [count]
  34.  
  35.      tape -f device        : set device, default is /dev/nrst0 (not rewinding!)
  36.      tape fsf              : Forward space 1 (count) EOF marks
  37.      tape fsr              : Forward space 1 (count) records
  38.      tape bsf              : Back space 1 (count) EOF marks
  39.      tape bsr              : Back space 1 (count) records
  40.      tape rew              : rewind tape
  41.      tape end              : space to EOF (behind last EOF mark)
  42.  
  43.      tape < file           : write file to tape
  44.      tape > file           : read file from tape
  45.  
  46.      examples:
  47.      tar cvf - files | tape     : write files on the tape using tar    
  48.      tape | tar xvf - files     : read files from the tape using tar
  49.      tape | tar xvf -             : read all files from the tape using tar
  50.  
  51.  
  52.     written by Max Boehm (boehm@cs.uni-duesseldorf.de)
  53.     updated by Jorge Gustavo Rocha (jgr@di.uminho.pt) 
  54.  
  55.