When you cat the sound device modules as so:
$ cat /proc/asound/modules
0 snd_usb_audio
1 snd_hda_intel0 snd_usb_audio
2 snd_hda_intel
Then one can see that the USB device is the default, or at least the first, and changing the order might be helpful. This comment from here provided the solution:
Chuck Ebbert 2007-06-06 15:07:16 EDT
One thing to try is adding the line:
options snd-usb-audio index=1
to /etc/modprobe.conf
The comment is old, probably, as there is no modprobe.conf in Slackware (or Redhat uses a different init standard?), but there is a modprobe.d/ folder with a collection of .conf files, so I added a snd-usb-audio.conf with the single line:
options snd-usb-audio index=2
Reboot and then the list of sound modules now looks like:
$ cat /proc/asound/modules
0 snd_hda_intel
1 snd_hda_intel
1 snd_hda_intel
2 snd_usb_audio
Which makes audio work again, and it can be shared among several applications at once.
No comments:
Post a Comment