Loading a module
From MEPIS Documentation Wiki
If you know what module you need to load this is how you load a module, if you do not know what module to load go back to where you came from. Here is how you work with the module you need.
1. Gather information
- Find out if the module is available to be loaded by entering this command as root:
modinfo module name
Substitute the actual module name. Thus for the module snd-intel8x0 the command becomes:
modprobe snd-intel8x0
- See if the module is already being loaded:
lsmod
If the list is too long, you can add a pipe and grep command to find your module:
lsmod | grep module name
2. Load the module
- Once you have figured out what module you need and know it is available, do this command as root:
modprobe module name
echo module name >> /etc/modules
Again, substitute the actual module name.
3. Unload module:
modprobe -r module name

