ALSA-OSS installed , no dev/dsp found

1

I'm using Fedora 16 - sound works fine.

I've tried to execute Pocketsphinx for some tests with voice recognition, but it depends on OSS to work. It crashes with the message:

ad_oss.c(103): Failed to open audio device(/dev/dsp): No such file or directory

I have ALSA-OSS installed but im getting the same error.

karensantana

Posted 2012-11-05T01:29:49.900

Reputation: 11

What's the output of lsmod | grep snd_seq_oss? If there's no output, try doing modprobe snd_seq_oss. – Free Bullets – 2012-11-05T02:24:39.420

I tried with lsmod | grep snd_seq_oss but there's no output. And i tried with modprobe snd_seq_oss and there's no output too. What is happening? – None – 2012-11-05T02:31:30.167

2Please add any additional information to your question by editing it, instead of posting new "answers". This is not a discussion forum. – Daniel Beck – 2012-11-05T07:47:19.923

Answers

1

For /dev/dsp to work, the actual sound driver must be loaded (check index 0 in /proc/asound/cards), and the snd-pcm-oss module must be loaded.

CL.

Posted 2012-11-05T01:29:49.900

Reputation: 1 351