LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   pulseaudio no sound only Dummy Output (https://www.linuxquestions.org/questions/linux-hardware-18/pulseaudio-no-sound-only-dummy-output-4175437210/)

Bob D 11-14-2012 11:42 PM

pulseaudio no sound only Dummy Output
 
When I upgraded from Ubuntu precise to quantal, I lost sound, wifi, X res above 1024x768, and ethernet. I updated several times, and wifi and internet came back. I upgraded to raring. Still no sound.

I looked at about a hundred threads on pulseaudio, alsa, Dummy Output, no sound.

When pulseaudio has only Dummy Output, you probably have other devices but something has taken them over before you got pulseaudio loaded.

Code:

sudo fuser -uv /dev/snd/* /dev/snd/by-path/*
ls -l /dev/snd /dev/snd/by-path

...revealed that I had "roard" (roaraudio server) owning my speakers and headphone jack. dpkg --list '*roar*' and dpkg -r roaraudio and all of its deps, done. I did then do this but with roard gone I don't think it's needed:

Code:

pulseaudio --kill
sudo killall pulseaudio
sudo killall -9 pulseaudio
rm -rf ~/.pulse*
sudo rm -rf /tmp/pulse*

Another thing that can take over /dev/snd devices is Login sounds. Websearch on that, different things to do, mainly a gnome and/or Ubuntu issue. The most devious problem was some microsoft sapper hid the Ubuntu quantal and raring login option for Gnome login sound in startup apps.

Devious:

gksudo gedit /usr/share/gnome/autostart/libcanberra-login-sound.desktop

...and edit or add a line "NoDisplay=false", without the quotes. Default is to hide the option to disable login sounds, even without NoDisplay=true!!! Unbelievable microsoft sapper!!! Did Paula Broadwell email a threat to his wife, or what?!! Bribe or threat!?! Enquiring minds want to know, since transparency with accountability has FAILED. Devious.

Then you can disable login sounds:

http://www.howtogeek.com/howto/22428...nds-in-ubuntu/

DaRkBoDoM 11-26-2018 05:43 AM

I had this issue too and couldn't solve it until i found this post… looks like it is still being useful after 6 years.

In my case, timidity had taken over the audio.

Thank you.

postcd 09-23-2021 12:10 PM

i had this issue too, try listing processes using PA:
Code:

sudo fuser -vu /dev/snd/* /dev/snd/by-path/*
kill the process:
Code:

sudo kill -9 PIDNUMBERHERE
command to kill media players that often block the audio (replace by your own player names):
Code:

sudo kill -9 $(pidof vlc gnome-mplayer mplayer baka-mplayer) 2>/dev/null


All times are GMT -5. The time now is 07:26 AM.