Hello.
I'm attempting to run a MythTV frontend from the LiveCD (ie: NOT installed on a HD), and have everything working except the sound.
The card is detected during the bootup:
Code:
Soundcard : Creative Labs SB Live! EMU10k1 driver=emu10k1
'lspci' shows:
Code:
01:08.1 Input device controller: Creative Labs SB Live! EMU10k1 (rev 05)
and the file
/etc/modprobe.d/sound contains:
Code:
alias snd-card-0 snd-emu10k1
options snd-emu10k1 index=0
However, from there, it appears as though the card actually does not load. Running
'alsamixer' gives the error:
Code:
alsamixer: function snd_Ctl_open failed for default: No such device
and
'lsmod | grep snd' gives no results.
So I tried
'modprobe snd-emu10k1', but I get the error:
Code:
Setting up ALSA...^GInvalid card number.
Usage: amixer <options> [command]
Available options:
... etc, typical help screen
This repeats a LOT of times. If I use the command
'modprobe snd-emu10k1 index=0', I get the exact same result.
After running either of the modprobe commands, the lsmod command shows that the modules are now installed:
Code:
snd_emu10k1_synth 10112 0
snd_emu10k1 110016 1 snd_emu10k1_synth
snd_emux_synth 36096 1 snd_emu10k1_synth
snd_seq_virmidi 9728 1 snd_emux_synth
snd_seq_midi_emul 9856 1 snd_emux_synth
snd_seq_dummy 6916 0
snd_seq_oss 34048 0
snd_seq_midi 10400 0
snd_seq_midi_event 10240 3 snd_seq_virmidi,snd_seq_oss,snd_seq_midi
snd_seq 50256 9 snd_emux_synth,snd_seq_virmidi,snd_seq_midi_emul,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
snd_rawmidi 22944 3 snd_emu10k1,snd_seq_virmidi,snd_seq_midi
snd_ac97_codec 94116 1 snd_emu10k1
snd_ac97_bus 6144 1 snd_ac97_codec
snd_pcm_oss 42912 0
snd_mixer_oss 18176 1 snd_pcm_oss
snd_pcm 69380 3 snd_emu10k1,snd_ac97_codec,snd_pcm_oss
snd_seq_device 10508 8 snd_emu10k1_synth,snd_emu10k1,snd_emux_synth,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq,snd_rawmidi
snd_timer 22404 3 snd_emu10k1,snd_seq,snd_pcm
snd_page_alloc 11784 2 snd_emu10k1,snd_pcm
snd_util_mem 7552 2 snd_emu10k1,snd_emux_synth
snd_hwdep 10884 2 snd_emu10k1,snd_emux_synth
snd 47588 14 snd_emu10k1,snd_emux_synth,snd_seq_virmidi,snd_seq_dummy,snd_seq_oss,snd_seq,snd_rawmidi,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_device,snd_timer,snd_hwdep
soundcore 11360 1 snd
However, after this, alsamixer still gives the same error. A quick check of /dev shows that there are no sound-related devices (dsp, mixer, etc...)
Any thoughts? Sound is the only thing holding me back...
Thanks