Loading a module
From MEPIS Documentation Wiki
Contents |
Introduction
If you know what module you need to load this is how you load a module.
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
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.
Unload module
modprobe -r module name
Automatic loading
If you need a module to load automatically at boot, you can insert the module name manually (as root) into
/etc/modules
Hardware Section | FAQ | Main Page