Comment 69 for bug 394500

Revision history for this message
vijinho (vijay-yoyo) wrote : Re: [Karmic] processes holding /dev/dsp* or /dev/snd/pcm* cause "pulseaudio: card not found - Null Output / Dummy Output"

I had the same issue - post number 14 here fixed it, commenting out the lines like he said:

I've opened /etc/pulse/default.pa and commented 4 lines.

Before:

### Automatically load driver modules depending on the hardware available
.ifexists module-udev-detect.so
load-module module-udev-detect
.else
### Alternatively use the static hardware detection module (for systems that
### lack udev support)
load-module module-detect
.endif

After:

### Automatically load driver modules depending on the hardware available
#.ifexists module-udev-detect.so
#load-module module-udev-detect
#.else
### Alternatively use the static hardware detection module (for systems that
### lack udev support)
load-module module-detect
#.endif