1

Am a quite naive user of linux. I would like to know whether there is a way in which I can remove/disable the USB Host controller driver from the kernel, without kernel compilation..Am using a custom system which has linux in it (Fedora)

If not, how should i go about recompiling the kernel to have this module disabled.

1
  • 1
    I am sure you can do it by excluding the required driver / USB component, however, you may find it a lot easier to disable USB functions through the BIOS. Commented Jul 25, 2010 at 14:54

1 Answer 1

0

You should be able to add a line similar to the following to /etc/modprobe.d/blacklist.conf:

blacklist your-mod-name

and remove it from the currently running system:

modprobe -r your-mod-name

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .