PDA

View Full Version : Sound difficulties with FC4


ubunturefugee
2005-09-11, 10:27 AM CDT
I'm having problems producing any sound from my SB Extigy. System Settings > Soundcard Detection finds both the onboard audio and the Extigy, but refuses to play any sound from the Extigy.

Any ideas?

daneel971
2005-09-11, 10:45 AM CDT
The system uses as default card the first he "sees":
aplay -l
will tell you which card you have and their assigned number; if you check modprobe.conf, you will find a index number for each soundcard alias. My bet is that you onboard chip has index 0, and so come first.
You have to write a simple .asoundrc file (it's a hidden file, so the leading dot) in you home, setting the Extigy as default card and device.
The alsa-project wiki has a lot of instruction about the .asoundrc: search for your specific chip.

nyinge
2005-09-11, 10:54 AM CDT
Try playing around with volume settings/preferences; mute and unmute. Also, play some wave files and music CDs. Mine just worked magically after that. :)

ubunturefugee
2005-09-11, 11:01 AM CDT
I'm still not quite sure what the problem is. Output of aplay -l

**** List of PLAYBACK Hardware Devices ****
card 0: I82801CAICH3 [Intel 82801CA-ICH3], device 0: Intel ICH [Intel 82801CA-ICH3]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: Modem [Intel 82801CA-ICH3 Modem], device 0: Intel ICH - Modem [Intel 82801CA-ICH3 Modem - Modem]
Subdevices: 1/1
Subdevice #0: subdevice #0

Modprobe.conf:
alias eth0 8139too
alias snd-card-0 snd-intel8x0
options snd-card-0 index=0
options snd-intel8x0 index=0
remove snd-intel8x0 { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0
alias snd-card-1 snd-usb-audio
options snd-card-1 index=1
options snd-usb-audio index=1
remove snd-usb-audio { /usr/sbin/alsactl store 1 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-usb-audio
alias usb-controller uhci-hcd
alias ieee1394-controller ohci1394
alias wlan0 ndiswrapper

ubunturefugee
2005-09-11, 11:07 AM CDT
When I've got the Extigy selected as the primary audio device, I still get sound from the on-board. Do I need to edit the way they're slotted in modprobe.conf?

daneel971
2005-09-11, 12:04 PM CDT
I admit the output of aplay puzzles me: where is the Extigy? The modules seem to load.
The Extigy is the usb-device, right?
Test if it's working correctly with
mplayer -ao alsa:device=hw 1,0 file.mp3

No need to mess with modprobe.conf; do the modifications only via .asoundrc

ubunturefugee
2005-09-11, 08:26 PM CDT
I actually did get it working by changing how they were slotted in modprobe.conf. Just swapped the index numbers, works good enough. Volume knob on the front isn't working, slight clicking when changing tracks. Haven't tested the optical out or the remote control (which is supposed to be supported by the alsa driver).

Thanks a million for pointing me in the right direction.