No sound in Ubuntu 13.04, only Dummy output device listed

70,008

Solution 1

Following the instructions at http://ubuntuforums.org/showthread.php?t=2143157&p=12650610#post12650610 , I disabled speech-dispatcher as follows:

sudo vi /etc/default/speech-dispatcher

And I changed RUN=yes to RUN=no, then rebooted.

My system now boots with sound, and much faster.

Solution 2

I had this problem after having an Xorg problem, uninstalling unity and reinstalling xfce. My probablem probably revolved around not adding gconf back and the re-install scripts not adding my user back to the various audio groups. I got sound working after:

sudo apt-get install pulseaudio-module-x11 \
    pulseaudio-module-zeroconf \
    pulseaudio-module-gconf

And also adding my username to audio related groups in /etc/groups:

audio:x:29:pulse,jreynolds
pulse:x:123:jreynolds
pulse-access:x:124:jreynolds

And of course, flushing my various pulse related settings:

pulseaudio -k
sudo alsa force-reload
rm ~/.pulse-cookie
rm -rf ~/.config/pulse
sudo shutdown -r now

When my system rebooted (and I don't know if that was necessary) I ran a check:

pacmd list-sinks

And this displayed my sound cards and not the dummy device!

Solution 3

Here's what I did, worked for me. Ensure that pulseaudio control utility is installed:

sudo apt-get install pavucontrol

run the utility

pavucontrol

Move to the leftmost tab (configuration), there is adrop downlist of profiles. Work through this until something forks (for me it was "Analog Stereo Output", whereas the default had been "Digital Stereo (IEC958) Output")

HTH

Rob

Solution 4

I've been using Ubuntu 13.04 64bit with Kernel version 3.8.0-19-generic. Got the same dummy output device problem but solved it by following the first solution provided in the following website:

http://itsfoss.com/fix-sound-ubuntu-1304-quick-tip/

Hope this helps!

Solution 5

I also had it - Does sound work before reboot after one update? If yes it is probably the same.
It's bug related to kernel 3.8.0-18.

  1. Run uname -r to check your version of Kernel. If it is 3.8.0-18-generic - try next steps
  2. Reboot and in GRUB select Advanced options
  3. Chose Ubuntu with Kernel ... (Any before -18)

Also you can subscribe this bug at Launchpad, I hope they will fix it soon

Share:
70,008

Related videos on Youtube

theczechsensation
Author by

theczechsensation

Work hard, play harder.

Updated on September 18, 2022

Comments

  • theczechsensation
    theczechsensation over 1 year

    My sounds suddenly stopped playing on Ubuntu 13.04 64bit. I can only see Dummy output device in the Sound Settings and no sound is played during testing.

    I can get the sound temporarily working by killing one of the strange processes, but I have to repeat the same after reboot

    jan@jan-HP-Desktop:~$ ps -ef|grep pulseaudio
    112       1405     1  0 09:38 ?        00:00:00 /usr/bin/pulseaudio --start --log-target=syslog
    112       2132  1405  0 09:38 ?        00:00:00 /usr/lib/pulseaudio/pulse/gconf-helper
    jan       2575     1  0 09:39 ?        00:00:00 /usr/bin/pulseaudio --start --log-target=syslog
    jan       2597  2575  0 09:39 ?        00:00:00 /usr/lib/pulseaudio/pulse/gconf-helper
    jan       3160  2975  0 09:40 pts/2    00:00:00 grep --color=auto pulseaudio
    
    jan@jan-HP-Desktop:~$ sudo kill 1405
    

    Is there a permanent solution for this problem?

  • theczechsensation
    theczechsensation about 11 years
    Thanks for the link, this might work out for other people. I have '3.8.0-19-generic' and rebooting into the older kernel version did not work for me (the 3.5* had no sound at all). I did not have '3.8.0-17' or any other 3.8* kernel available in GRUB, which I suppose would work since the audio was working before. I also tried to update DKMS, which helped some people in the discussion, but to no avail.
  • theczechsensation
    theczechsensation about 11 years
    I only had my webcam in the configuration. When I kill the 'user 112' process, the configuration will show my soundcard and everything is playing instantly.
  • theczechsensation
    theczechsensation about 11 years
    I just updated to 3.8.0-21-generic and the sound works again. Thanks for the help.
  • Francisco Presencia
    Francisco Presencia about 11 years
    Thank you so much sir, I didn't get audio through the audio jack neither so I went from 21 to 19 and it started working again. I will open a bug since the one linked was for hdmi.
  • kubahaha
    kubahaha about 11 years
    3.8.8 (as well as 3.9) is known to solve this bug.
  • theczechsensation
    theczechsensation almost 11 years
    Thanks for the link, but this did not work for me. Hopefully it will help someone else.
  • theczechsensation
    theczechsensation almost 11 years
    Thanks Geoff. This change did it! My sound now works right after reboot.
  • thnee
    thnee over 10 years
    Adding myself to groups audio,pulse,pulse-access worked. Weird. Thanks!
  • Ralph Tandetzky
    Ralph Tandetzky about 10 years
    This did not work for me on Linux Mint Olivia x64 since the said file already has RUN=no in it.
  • Ralph Tandetzky
    Ralph Tandetzky about 10 years
    None of those suggestions helped for me. I'm working on a Linux Mint Olivia x64 system.
  • David Halter
    David Halter about 10 years
    sudo alsa force-reload does it for me. Maybe you also need to restart pulseaudio.
  • AbstractVoid
    AbstractVoid almost 9 years
    Installing pavucontrol worked for me. In my case I didn't even have to run "pavucontrol" after installing, simply rebooted. Thanks!
  • Brooks B
    Brooks B about 8 years
    Added myself to audio, pulse, and pulse-access. Installed all packages and now see that gconf-helper is running.
  • user31389
    user31389 over 7 years
    Worked for me on OpenSUSE and I didn't even have the alsa command.
  • Zamicol
    Zamicol almost 7 years
    I was able to get my audio to reappear when plugging in and out the audio line. For some reason it didn't perceive it as plugged in. pavucontrol looks awesome for the future.
  • Peter Fleix
    Peter Fleix about 6 years
    Thank you so much for this tip, it worked with my usb-soundcard asus xonar x7 after i plugged it to another usb port.
  • Ralph Versteegen
    Ralph Versteegen about 3 years
    You have to add yourself to those groups and then relogin so the groups update. At least some of the other steps aren't necessary. That fixes PA (broke for me after swtiching to Xfce4 on Slackware)