I cannot get audacity 1.3.12 (Ubuntu only provides a package for beta, and I can't seem to install 1.2 for 64-bit) to record from my sound card. This worked in ubuntu 10.04.
When I run audacity from the command line, I see:
Code: Select all
Cannot connect to server socket err = No such file or directory
Cannot connect to server socket
jack server is not running or cannot be started
Expression 'stream->capture.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 3653
They seemed to fix the Expression 'stream->capture.pcm' failed" error, which I think is the problem with recording, by reloading the sound card module.
I do not have that sound card, however.If you type into a terminal;you will get a list of loaded modules. "snd-ens1371" should be in the list.Code: Select all
lsmod
If it isn't, you can try reloading the module with;Code: Select all
modprobe -r snd-ens1371 && modprobe snd-ens1371
Here is the output of aplay -l:
Code: Select all
[email protected]:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: Intel [HDA Intel], device 1: STAC92xx Digital [STAC92xx Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0
Code: Select all
[email protected]:~$ lsmod | grep snd
snd_hda_codec_idt 64667 1
snd_hda_intel 26051 1
snd_hda_codec 100919 2 snd_hda_codec_idt,snd_hda_intel
snd_hwdep 6660 1 snd_hda_codec
snd_pcm 89104 2 snd_hda_intel,snd_hda_codec
snd_seq_midi 5932 0
snd_rawmidi 22207 1 snd_seq_midi
snd_seq_midi_event 7291 1 snd_seq_midi
snd_seq 57544 2 snd_seq_midi,snd_seq_midi_event
snd_timer 23850 2 snd_pcm,snd_seq
snd_seq_device 6912 3 snd_seq_midi,snd_rawmidi,snd_seq
snd 64117 11 snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore 1240 1 snd
snd_page_alloc 8588 2 snd_hda_intel,snd_pcm
I didn't think that was it, since that started appearing a ways after the original problem. But any help would be appreciated, including telling me I'm way off base.