home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / sys / sun / admin / 5134 < prev    next >
Encoding:
Text File  |  1992-07-31  |  3.4 KB  |  78 lines

  1. Newsgroups: comp.sys.sun.admin
  2. Path: sparky!uunet!mcsun!dxcern!procyon!hemmer
  3. From: hemmer@procyon.cern.ch (Frederic Hemmer ATD10)
  4. Subject: Re: Exabyte 8500 - Dump parameters
  5. Message-ID: <1992Jul31.123118.23028@dxcern.cern.ch>
  6. Sender: hemmer@procyon (Frederic Hemmer ATD10)
  7. Organization: CERN - European Laboratory for Particle Physics
  8. References: <25876.9207241150@thor.cf.ac.uk> <1992Jul27.084023.22925@ericsson.se> <BRTMAC.92Jul27094933@maverick.ksu.ksu.edu>
  9. Date: Fri, 31 Jul 1992 12:31:18 GMT
  10. Lines: 66
  11.  
  12. In article <BRTMAC.92Jul27094933@maverick.ksu.ksu.edu>, brtmac@maverick.ksu.ksu.edu (Brett McCoy) writes:
  13. > In article <1992Jul27.084023.22925@ericsson.se> etxorst@eos.ericsson.se (Torsten Lif) writes:
  14. > >>I just got off the phone to our Exabyte drive suppliers technical
  15. > >>department, according to them using /dev/rstn+8 for 5GB density is fine,
  16. > >>as long as the tape is new. If your tape has been used on an Exabyte
  17. > >>8200 unit the new 8500 drive will continue to use the tape as a 2.3 GB
  18. > >>tape.
  19. > >
  20. > >Yes-and-no. Addressing /dev/nrst(n+8) makes no difference on those of
  21. > >our machines that run SunOS 4.1.1, but on this machine (an SS10/41
  22. > >running SunOS 4.1.3-beta) it works as described. I haven't yet had time
  23. > >to try it on 4.1.2 and I don't know if patches for the older OS
  24. > >versions are available. Can anyone else shed some light on this?
  25. > According to the EXB-8500 Users Manual the 8500, when positioned at
  26. > PBOT will write at whichever density you tell it to.  Under SunOS
  27. > 4.1.2 the tape devices /dev/{r,nr}st[0-7] are 8200 format and
  28. > /dev/{r,nr}st[8-15] are 8500 format.  More information is available
  29. > from 'man st'.  If you write to an EXB-8500 anywhere but the beginning
  30. > it will ignore the density setting you tell it and will write at the
  31. > same density the rest of the tape has been written at.
  32. > Under SunOS 4.1.1 and below there is no support for 8500 drives which
  33. > is why it will write 8200 format if the tape was already written.  I
  34. > believe that if you don't tell the drive what to do it assumes that
  35. > you want to use the format that is already on the tape.
  36. > ++Brett;
  37.  
  38. SunOS 4.1.1 actually can support 8500. It just needs to be helped a little
  39. bit :
  40.  
  41. on sun3, sun4 architectures modify /sys/sundev/streg.h :
  42. add an entry for 8500 with the low-density flag as first device :
  43.  
  44. /* Exabyte 8mm 5GB cartridge */ \
  45. {       "Exabyte", 16, "EXABYTE EXB-8500", ST_TYPE_EXABYTE, \
  46.         1024, (ST_VARIABLE | ST_BSF | ST_BSR | ST_LONG_ERASE | ST_PHYSREC), \
  47.         30, 30, 30, 30, 60, 60, 60, 60, \
  48.         0x14, 0x00, 0x00, 0x00,  0, 0, 0, 0 }, \
  49.  
  50. on sun4c (sun4m must have at least 4.1.2) modify /sys/scsi/targets/st_conf.c
  51. add an entry for 8500 with the low-density flag as first device :
  52.  
  53.         "Exabyte EXB-8500 8mm Helical Scan", 16, "EXABYTE EXB-8500",
  54.         ST_TYPE_EXB8500, 1024,
  55.         (ST_VARIABLE | ST_BSF | ST_BSR | ST_LONG_ERASE),
  56.         5000, 5000,
  57.         { 0x14, 0x00, 0x00, 0x00 },
  58.         {  0, 0, 0, 0 }
  59.  
  60. and rebuild kernel. This will then use the 0x14 for rst{n} turning the 8500
  61. in low density. rst{n+8} will be the normal mode. Note that an 8200 will not
  62. accept the 0x14 density flag so this entry will NOT work for 8200.
  63.  
  64. Frederic.
  65.  
  66. Frederic Hemmer                          email: hemmer@sun1.cern.ch
  67. European Laboratory for Particle Physics bitnet: hemmer at cernvm
  68. Computers and Networks division          phone: +41-22-7676104
  69. CH-1211 Geneva 23 - Switzerland          fax:   +41-22-7677155
  70.  
  71.  
  72.  
  73.     
  74.