home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 11 / IOPROG_11.ISO / modules / readme < prev   
Encoding:
Text File  |  1997-06-27  |  1.6 KB  |  38 lines

  1.  
  2. These are modules that can be loaded into the Linux kernel, providing extra
  3. support for mice, CD-ROM drives, ethernet cards, and other devices.
  4.  
  5. See these files in the "docs" directory for more information on loading these
  6. kernel modules: CDROM-HOWTO, ELF-HOWTO, Ethernet-HOWTO, Ftape-HOWTO, HAM-HOWTO,
  7. Hardware-HOWTO, Kernel-HOWTO, NET-2-HOWTO, PCI-HOWTO, PCMCIA-HOWTO, SCSI-HOWTO,
  8. SCSI-Programming-HOWTO, Serial-HOWTO, Sound-HOWTO, UMSDOS-HOWTO.
  9.  
  10. Also see the documentation in /usr/doc/modules, and the Documentation directory
  11. in newer Linux kernel source.  (/usr/src/linux/Documentation)
  12.  
  13. As a simple example, these lines were added to /etc/rc.d/rc.inet1 to load
  14. drivers for a WD ethernet card:
  15.  
  16. /sbin/insmod 8390
  17. /sbin/insmod wd io=0x240 irq=10
  18.  
  19. Note that this must happen *before* using ifconfig on eth0 or setting up
  20. eth0 related routes!
  21.  
  22. Here's how this will look when you boot your machine:
  23.  
  24. INIT: Entering runlevel: 3
  25. Going multiuser...
  26. loading device 'eth0'...
  27. wd.c:v1.10 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)
  28. eth0: WD80x3 at 0x240,  00 00 C0 AD 58 55 WD8013, IRQ 10, shared memory at 0xcc000-0xcffff.
  29. Mounting remote file systems...
  30. Starting daemons: syslogd klogd portmap inetd lpd mountd nfsd
  31.  
  32. If you've installed the modules.tgz package, you'll have all of these modules
  33. installed on your machine under /lib/modules/2.0.30 already.  So, to start
  34. using kernel modules you'll want to edit the /etc/rc.d/rc.modules file to
  35. select which modules you want loaded at boot time.  You can also use kerneld,
  36. a daemon which load and unloads kernel modules automatically on demand.
  37.  
  38.