You are not logged in.
Pages: 1
Hello,
I am playing around with the kernel in a vm. Currently, it hangs for about 10-15 seconds on Loading Udev during boot. I want to prevent udev from loading any sound modules (of which it loads 9) since I don't need sound on the vm. My modules array is
MODULES=(mii pcnet32 vboxadd !pcspkr !snd !soundcore)
but it loads all three of those. Here is what hwdetect --show-modules shows under sound after a couple reboots:
SOUND: pcspkr snd-mixer-oss snd-pcm-oss snd-page-alloc snd-pcm snd-timer snd snd-pcsp soundcore
Offline
try lsmod instead. IIRC hwdetect shows the modules you might need, not the ones that are loaded.
Offline
yes you are right. lsmod shows the modules are no longer loaded.
ANother question, though. I am looking through lsmod and wondering what some of these modules do. I've tried googling some of them but there usually isn't a clear answer. how do you know what a module does?
Offline
yes you are right. lsmod shows the modules are no longer loaded.
ANother question, though. I am looking through lsmod and wondering what some of these modules do. I've tried googling some of them but there usually isn't a clear answer. how do you know what a module does?
modinfo.
Offline
You might also want to add !snd_pcsp to your MODULES array. This will also cause the pc speaker to be active if you don't.
Time is a great teacher, but unfortunately it kills all its pupils ... - Louis Hector Berlioz
Offline
Pages: 1