home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / std_unix / volume.11 / text0041.txt < prev    next >
Encoding:
Internet Message Format  |  1987-07-18  |  1.8 KB

  1. From: tony@uqcspe.oz.au (Tony O'Hagan)
  2.  
  3. Last year I wrote an off-line tape archive system for use on our UNIX
  4. machines.  Tar and cpio were carefully compared to decide the appropiate
  5. format for the tape archives.  Eventually we chose cpio because it permitted
  6. retrieval of any pattern of files.  
  7.  
  8. About 120+ cpio files are stored on each archive tape and from bitter
  9. experience I know that sometimes when appending/retrieving files to/from tape
  10. an insufficient number of files are skipped.  (We count them using taprd now)
  11. It would have been useful to write a "file label" included in the header
  12. of each cpio file and be able to check this when reading.  I would have used it
  13. to check the file number but I'm sure it would have other uses. 
  14. ( I would skip to the file before and check it's label when appending. )
  15.  
  16. I recently adapted the archive system from V7 to BSD 4.2 and added the
  17. facility to drive remote tape drives using the blocking filters which fitted
  18. in well with cpio.
  19.  
  20. [ These are useful points, though they are not problems with the data
  21. interchange format, rather with the program that uses it.  -mod ]
  22.  
  23.     P.S.
  24. There are a few other bugs in cpio which I had to fix for the local version.
  25.     * creating new otherwise unstored directories with the current
  26.       mask (not mode 777).  (with -d switch)
  27.     * not changing the ownership/group/permissions of existing
  28.       directories back to their values at the time of archiving.
  29. ==============================================================================
  30. Tony O'Hagan        Australia: (07) 3774125  International: +61 7 3774125
  31. University of Queensland    CSNET:    tony@uqcspe.oz    ACSnet:    tony@uqcspe.oz
  32. Dept. of Computer Science    UUCP:    ...!seismo!munnari!uqcspe.oz!tony
  33. St. Lucia, Brisbane,         ARPA:    tony%uqcspe.oz@seismo.css.gov
  34. AUSTRALIA  4067             JANET:    uqcspe.oz!tony@ukc
  35.  
  36. Volume-Number: Volume 11, Number 42
  37.  
  38.