Options

loading linux modules

aueddonlineaueddonline Member Posts: 611 ■■□□□□□□□□
Does anyone know a nice driver to download and install for the purpose of practising loading modules.
What's another word for Thesaurus?

Comments

  • Options
    disidisi Member Posts: 59 ■■□□□□□□□□
    You can load or unload nearly any "driver" just do "lsmod" and it will show you all loaded modules. Then you can remove them with "rmmod" and load them with "insmod" or use "modprobe" to load them the easy way with all required depending modules.

    Check the /etc directory related to your distribution there should be a file which contains the names of the modules that get automatically loaded during boot.

    If you want to compile modules, just download the kernel sources and make your own kernel, there you can configure how the modules should get compiled (as module or into the kernel).

    Good example for manufacture modules would be nvidia or ati drivers, which can be downloaded on their webpage...
  • Options
    johndrekjohndrek Member Posts: 1 ■□□□□□□□□□
    well try loading the RPM's. Great help
  • Options
    rcm7217rcm7217 Member Posts: 4 ■■■□□□□□□□
    modprobe <module name>

    you might have to do this as root.

    you can also unload modules by:

    modprobe -r <module name>

    That might be distro-dependent...I do know the -r option works on debian
Sign In or Register to comment.