|
How to remove kernel modules with each boot, in fedora 11.
I had a problem running VirtualBox, and found the solution to this problem (collision with kvm) was to run:
sudo modprobe -r kvm_intel
The only problem is, I have to manually run this each time I boot. I would like this to happen automatically. I poked around /etc/modprobe.d/*.conf but these just seem to effect how the modprobe command works.
So, is there a nice safe way to save me from having to manually remove each time I boot (which is rare enough I'll probably forget the magic command by then)? Any way to do this would be great, but it would be especially nice to know if I can find why and where kvm_intel is coming from, and block it there.
Thanks!
|