home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / sys / hp / 10460 < prev    next >
Encoding:
Internet Message Format  |  1992-09-15  |  2.6 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!swrinde!sdd.hp.com!hp-col!fc.hp.com!rjn
  2. From: rjn@FC.HP.COM (Bob Niland)
  3. Newsgroups: comp.sys.hp
  4. Subject: Re: Can "mt" commands be using on 1/4" Cartrdige tape on HP400's w/HP-UX8.0?
  5. Message-ID: <Bun39y.Cx0@fc.hp.com>
  6. Date: 15 Sep 92 21:49:10 GMT
  7. References: <BuKqqt.KMH@fc.hp.com>
  8. Sender: news@fc.hp.com (news daemon)
  9. Reply-To: rjn@FC.HP.COM
  10. Organization: Hewlett-Packard/WSY Ft.Collins,CO,USA
  11. Lines: 55
  12. X-Newsreader: Tin 1.1scd1 PL4
  13.  
  14. rjn@FC.HP.COM (Bob Niland) writes:
  15. > Any "append" operation that would work on a /dev/rdsk will work on these
  16. > tape drives.   "mt" operation attempts often result in "not a typewriter",
  17. > one of the less helpful Un*x error messages.
  18.  
  19. I put it that way because I couldn't immediately think of any simple
  20. ways to perform appended I/O on a raw direct-access device.  On further
  21. reflection, if I had the need to put multiple archives on a 1/4-inch 
  22. (16-track HC format) tape, I would pick one of:
  23.  
  24.               ***NOTE: These Operations are Very Slow***
  25.  
  26. 1. LIF filesystem
  27.   
  28.    ## Assuming a 600-foot tape....
  29.    #
  30.    # lifinit -v66977792 -nLIF_CT -d256 /dev/rct
  31.    # cd <wherever>
  32.    # find . -print -hidden | cpio -ocv | lifcp -b - /dev/rct:NAME1_CPIO
  33.    # cd <wherever>
  34.    # find . -print -hidden | cpio -ocv | lifcp -b - /dev/rct:NAME2_CPIO
  35.    # <etc>
  36.    # lifls -l /dev/rct
  37.  
  38.    This is apt to be much faster as lifinit only writes the "-d" space on
  39.    the medium, and LIF files are contiguous, but, LIF files are NOT
  40.    extensible after close.  If possible, create the cpio/tar file then lifcp
  41.    it as a separate operation.
  42.  
  43. 2. HFS file system  (***CAUTION: UNTESTED***)
  44.  
  45.    Edit /etc/disktab to include:
  46.    9144A_600ft:\
  47.            :no swap or boot:ns#1:nt#16:nc#4088:\
  48.            :s0#65408:b0#8192:f0#1024:\
  49.            :se#1024:rm#1:
  50.  
  51.    # /etc/newfs -L -n -v /dev/rct 9144A_600ft
  52.    # mkdir /tape_mount
  53.    # /etc/mount /dev/ct /tape_mount
  54.    # cd <wherever>
  55.    # find . -print -hidden | cpio -ocv > /tape_mount/name1.cpio
  56.    # cd <wherever>
  57.    # find . -print -hidden | cpio -ocv > /tape_mount/name2.cpio
  58.    # ls -l /tape_mount
  59.    # /etc/umount /dev/ct
  60.  
  61. Regards,                                              Hewlett-Packard
  62. Bob Niland      Internet: rjn@FC.HP.COM               3404 East Harmony Road
  63.                 CompuServe:  71044,2124               Ft Collins CO 80525-9599
  64.  
  65. This article represents only the opinion[s] of its author, and is not an
  66. official or unofficial position of, or statement by, the Hewlett-Packard
  67. Company.  The text is provided for informational purposes only.  It is
  68. supplied without warranty of any kind.
  69.