home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / linux / 9123 < prev    next >
Encoding:
Internet Message Format  |  1992-08-26  |  3.2 KB

  1. Path: sparky!uunet!olivea!mintaka.lcs.mit.edu!hal.gnu.ai.mit.edu!ericy
  2. From: ericy@hal.gnu.ai.mit.edu (Eric Youngdale)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: SLS is awesome and getting larger
  5. Message-ID: <1992Aug26.151143.13011@mintaka.lcs.mit.edu>
  6. Date: 26 Aug 92 15:11:43 GMT
  7. References: <1992Aug26.125143.17176@murdoch.acc.Virginia.EDU>
  8. Sender: news@mintaka.lcs.mit.edu
  9. Organization: /etc/organization
  10. Lines: 54
  11.  
  12. In article <1992Aug26.125143.17176@murdoch.acc.Virginia.EDU> fh8n@uvacs.cs.Virginia.EDU (Frank Houston) writes:
  13. >Hello linux hackers
  14. >
  15. >I have just finished installing the SLS distribution of linux 
  16. >over the weekend. Congratulation to linus and the authors 
  17. >of sls. You guys give hackers a good name. The points is 
  18. >SLS is now 15 disk and growing to morw than 20. Time to 
  19. >go CDROM. On that subject DAK sells a CDROM with controller
  20. >for $199. I alspo received a compuadd catalog on Aug 20
  21. >that has a Cdrom and card for $169. So the price isn't 
  22. >as steep. I know that there is a SCSI cdrom driver in development
  23. >, but they seem a lot more expensive. 
  24. >    
  25. >    $150 for the Adaptec board supported.
  26. >    $250 for the cheapest scsi cdrom.
  27. >
  28. >How about the linus community agree upon one of the minimaly 
  29. >priced cdrom unix about and create drivers it. This would
  30. >create a defacto common linux cdrom drive.
  31. >
  32.  
  33.     I feel that I should warn everyone that DAK is in Chapter 11.
  34. For those of you overseas, this means that they have filed for protection
  35. from their creditors because they are unable to pay all of their bills, 
  36. and Chapter 11 means that they want some breathing room so that they can
  37. (hopefully) get things reorganized and get their cash flow situation
  38. under control.  The upshot is that it may take a long time for you to
  39. get any merchandise, and if they really go belly-up, you may never get
  40. your merchandise.  It would be wise to pay by credit card if you purchase
  41. anything from them.
  42.  
  43.     The CDROM code that exists for linux now can be neatly divided
  44. into two parts.  One part is the SCSI code to read the drive, and the second
  45. part is the filesystem.  The filesystem itself should work with any block
  46. device, and in principle one could have the iso9660 filesystem on a hard disk
  47. or a floppy disk.  The only device specific code in the filesystem is
  48. something to check and see if the disc has been changed, and this currently
  49. tests for major==11.  The filesystem itself calls a function in the SCSI CDROM
  50. code to actually determine if the disc has been changed or not.
  51.  
  52.     The upshot is that all you would need to do is come up with a device
  53. driver for whatever type of interface is being used.  The problem is that you
  54. need to know how to program the interface, so if it is proprietary you might as
  55. well forget it.  Also, I would want to make sure that a secondary
  56. device/interface is actually becoming a standard before it would make sense to
  57. try and support it.  If each of these really cheap drives all use a different
  58. interface, I would suggest spending the extra money for a SCSI drive.
  59.  
  60.     Some people have guessed that some of the cheap CDROM drives out there
  61. are actually on an IDE bus (this guess is based upon the connector), but
  62. I have not heard anything definite.  I do not know if a IDE(?) CDROM can
  63. use the same controller as the hard disk.
  64.  
  65. -Eric
  66.