Hi
I have findutils package installed on a persistent system..v3.0
I am attempting this command
sudo su
root@box:~# cat /proc/modules|gawk '/^snd-/{print $1}'|xargs -i rmmod {}
root@box:~# lsmod | grep snd
snd_seq_dummy 648 0
snd_seq_oss 15364 0
snd_seq_midi_event 2624 1 snd_seq_oss
snd_seq 26036 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device 2808 3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_pcm_oss 24484 0
snd_mixer_oss 8648 1 snd_pcm_oss
snd_hda_codec_idt 30668 1
snd_hda_intel 14480 0
snd_hda_codec 33296 2 snd_hda_codec_idt,snd_hda_intel
snd_pcm 37628 3 snd_pcm_oss,snd_hda_intel,snd_hda_codec
snd_timer 10564 2 snd_seq,snd_pcm
snd 26200 10 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_pcm,snd_timer
soundcore 2640 1 snd
snd_page_alloc 4016 2 snd_hda_intel,snd_pcm
AFAIK I want the modules for snd to be removed.
that does not appear to happen
(2) In a vbox test....I was successful in unloading the snd modules with a far simpler
sudo su
modprobe -r soundcore
however on my host....I get messages about ....modprobe: can't unload module soundcore: Resource temporarily unavailable
IMHO soundcore is the top of the tree of module dependencies but I may be wrong?
(3) before installing findutils....xargs was complaining about it being a busybox command.
I assumed the earlier string of the command was good as the command should exit if the first bit is wrong?
thanks for any insights
PS I am attempting to expand the sound wiki for alsa to include model strings and quirks where relevant.