home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / sys / sun / hardware / 5838 < prev    next >
Encoding:
Internet Message Format  |  1992-11-23  |  2.3 KB

  1. Path: sparky!uunet!portal!cup.portal.com!thad
  2. From: thad@cup.portal.com (Thad P Floryan)
  3. Newsgroups: comp.sys.sun.hardware
  4. Subject: Re: Need Quantum 425S format.dat entry.
  5. Message-ID: <70098@cup.portal.com>
  6. Date: Mon, 23 Nov 92 02:32:38 PST
  7. Organization: The Portal System (TM)
  8. References:  <1em25qINNdf9@mozz.unh.edu>
  9. Lines: 55
  10.  
  11. In article <1em25qINNdf9@mozz.unh.edu> tch@kepler.unh.edu (Travis C. Hayes)
  12. writes:
  13.  
  14. |  The title pretty much says it. I have just purchased a
  15. |  Quantum ProDrive 425S and would like to use it on my Sun
  16. |  3/60.
  17.  
  18. First off, you DON'T need the format.dat entry for the drive.
  19.  
  20. I simply don't understand this fetish people have with format.dat entries.
  21. Earlier this year many besides myself showed how easy it is to do it manually.
  22.  
  23. All you NEED to know is the total formatted-capacity data sectors.  For the
  24. Quantum ProDrive 425S this number is 833,150.  One would then feed that
  25. number into a program I wrote which will calculate the optimized parameters
  26. that one should feed to format().  Since I have multiple 425S drives on my
  27. Sun-3/60 (and other) systems, I'll save you the trouble.
  28.  
  29. Remember that with SCSI, the ONLY operative parameter is the sector(s).  The
  30. concept of heads, cylinders, tracks per cylinder, etc. aren't pertinent to
  31. drives with variable geometry (such as the 425S).
  32.  
  33. For the Quantum 425S, my program suggests:
  34.  
  35.     cylinders:    1754
  36.     heads:        5
  37.     sectors/track:    95
  38.  
  39. That will give you use of all 833150 formatted data sectors, and with the
  40. default newfs and 10% "lossage", you'll have over 390MB available for files.
  41. SunOS is better than HP-UX in this regards; I get only 385MB on my HP-9000/7xx
  42. boxes with Quantum 425S drives.
  43.  
  44. What you need to do when format() asks you the stuff is:
  45.  
  46.     number of data cylinders: 1752
  47.     number of alternate cylinders: 2
  48.     number of heads: 5
  49.     sectors/track: 95
  50.  
  51. Because of SunOS' requirement for the alternates, you lose 243KB with each
  52. alternate cylinder.  Another choice for the 425S is:
  53.  
  54.     877 cylinders, 10 heads, 95 sec/trk, for 486KB per cylinder
  55.  
  56. Then go into the "partition" sub-system of format() and set it all up to
  57. your preferences.  WHat I do for is:
  58.  
  59.     a: 0 1754/0/0
  60.     c: 0 1754/0/0
  61.  
  62. Works fine; I've been using 425S drives on Sun-3/60 systems for over 20
  63. months now with no problems.
  64.  
  65. Thad Floryan [ thad@btr.com, thad@cup.portal.com ]
  66.