View previous topic :: View next topic |
Author |
Message |
d4mo Guru
Joined: 27 Jun 2005 Posts: 430
|
Posted: Tue Mar 09, 2010 11:54 pm Post subject: See what is pulling in a module? |
|
|
Is there anyway to see why a particular module is loaded? |
|
Back to top |
|
|
V-Li Retired Dev
Joined: 03 Jan 2006 Posts: 613
|
Posted: Wed Mar 10, 2010 10:55 am Post subject: |
|
|
Does
Code: |
dmesg|grep <modulename>
|
help? |
|
Back to top |
|
|
d2_racing Bodhisattva
Joined: 25 Apr 2005 Posts: 13047 Location: Ste-Foy,Canada
|
Posted: Wed Mar 10, 2010 3:44 pm Post subject: |
|
|
And if it's hardware related, you can use this :
Code: |
# lspci -kvm
# find /usr/src/kernel-version -name Makefile | xargs grep -i module_name
|
|
|
Back to top |
|
|
desultory Bodhisattva
Joined: 04 Nov 2005 Posts: 9410
|
Posted: Thu Mar 11, 2010 3:28 am Post subject: |
|
|
If you are just looking for intermodule dependency information, lsmod. |
|
Back to top |
|
|
|