Javier Bernal wrote:
Is there any command that show me what module is being used by a device?
> How can I view which process is using which module in /proc? >I don't know of a program to do this. You might try "aptitude search '~dmodule'" or "aptitude search proc".
Look at the output from dmesg to do a manual search: $ dmesgA copy of the dmesg information is also saved to the file /var/log/dmesg upon boot.
Using dmesg, you might be able to find out what device nodes are activated by a module. Then using lsof, you can probably find out what programs are using those device nodes.