I am using the build in sound card on my motherboard. It has two outputs... analog "headphone jack" and a digital coax out. For some reason, my digital out no longer works, but my analog out does. I'm still relatively new to linux so I need some help debugging this. Let me know what logs will be useful to you, here's a few things I've gathered:
[root@localhost schroeja]# cat /etc/modprobe.conf
alias eth0 via-rhine
alias snd-card-0 snd-via82xx
install snd-via82xx /sbin/modprobe --ignore-install snd-via82xx && /usr/sbin/alsactl restore >/dev/null 2>&1 || :
remove snd-via82xx { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-via82xx
options snd-via82xx index=0 dxs_support=4
alias usb-controller ehci-hcd
alias usb-controller1 uhci-hcd
[root@localhost schroeja]# /sbin/lsmod
Module Size Used by
snd_seq 52689 0
snd_pcm_oss 43129 0
snd_mixer_oss 14017 1 snd_pcm_oss
snd_via82xx 24165 3
snd_ac97_codec 58821 1 snd_via82xx
snd_pcm 83529 3 snd_pcm_oss,snd_via82xx
snd_timer 25413 2 snd_seq,snd_pcm
snd_page_alloc 8393 2 snd_via82xx,snd_pcm
gameport 4033 1 snd_via82xx
snd_mpu401_uart 7361 1 snd_via82xx
snd_rawmidi 21733 1 snd_mpu401_uart
snd_seq_device 6473 2 snd_seq,snd_rawmidi
snd 45477 15 snd_seq,snd_pcm_oss,snd_mixer_oss,snd_via82xx,snd_ ac97_codec,snd_pcm,snd_timer,snd_mpu401_uart,snd_r awmidi,snd_seq_device
soundcore 7713 1 snd
parport_pc 21249 1
lp 9133 0
parport 35977 2 parport_pc,lp
autofs4 20677 0
sunrpc 141861 1
via_rhine 19273 0
mii 3777 1 via_rhine
floppy 54001 0
sg 28513 0
scsi_mod 105360 1 sg
dm_mod 47317 0
joydev 7169 0
uhci_hcd 28505 0
ehci_hcd 27973 0
button 4825 0
battery 7117 0
asus_acpi 9177 0
ac 3533 0
radeon 113669 2
md5 3905 1
ipv6 217349 10
ext3 96937 2
jbd 66521 1 ext3
[root@localhost schroeja]# ls /dev/dsp*
/dev/dsp /dev/dsp1 /dev/dsp12 /dev/dsp3 /dev/dsp5 /dev/dsp6 /dev/dsp8
/dev/dsp0 /dev/dsp10 /dev/dsp2 /dev/dsp4 /dev/dsp56k /dev/dsp7 /dev/dsp9
[root@localhost schroeja]# mpg123 Metallica\ -\ Ride\ The\ Lightning.mp3 > /dev/dsp1
bash: /dev/dsp1: No such device
[root@localhost schroeja]#
I'm pulling my hair out over this and really need some help. I have no clue what could be causing this let alone where to start. I'd consider myself fairly competant with computers... I'm just new to linux.
Thanks,
Jacob