Posts

Showing posts with the label Kernel Module

How to diable kernel module in Debian

OS: Debian 5 I want to disable module i2o_core to prevent unexpected exception/error. Create a conf file for i2o_core in /etc/modprob.d Edit its content with 'blacklist i2o_core' and then save it run 'depmod -ae' as root run 'update-initramfs -u' to re-create initrd After rebooting, you won't see i2o_core via 'lsmod'. You can reference to this wiki page .