Click to See Complete Forum and Search --> : Kernel Question


Dagda
10-26-2001, 04:26 PM
How can I find out what modules are compiled into my kernel or load up with the kernel?

Strike
10-26-2001, 04:49 PM
Anything compiled INTO your kernel is not a module. The modules that are loaded on boot should be in a config file of some sort, for me it's simply /etc/modules. To see a list of modules that is loaded at a given time, lsmod

X_console
10-26-2001, 08:30 PM
If you want to see what modules your system has access to, look in /lib/modules/kernel-version/

PLBlaze
10-26-2001, 09:02 PM
see /lib/modules/'uname -r'/modules.dep or do depmod -av to see/set module dependecies.Hope this helps.