Ubuntu 18.04.1 LTS, Dummy output, no sound

15,466

Solution 1

Similar instance of problem here on a v18.04 box; alsa output works, but pulse is just Dummy Ouput.

This seems to bring back pulseaudio without rebooting. First close any programs using pulseaudio, then as a regular user run:

pulseaudio --kill; sleep 2s; sudo alsa force-reload ; pulseaudio --start

Then play a sound file.

Solution 2

I have a similar problem on a Dell XPS-13-9350 running Ubuntu 18.04.3 LTS. I've updated to the most recent released Linux kernel.

After a reboot, the system does not detect my sound card, and shows "Dummy Output" as the sound output, and I have no sound of any kind. But, then in a terminal window I run:

pactl load-module module-detect

Settings → Sound then shows "Built-in Audio Analog Stereo" as the sound output and all sound works fine until I reboot again. I have to run the pactl command every time after a reboot.

Solution 3

Add this follow lines to /etc/modprobe.d/alsa-base.conf

options snd-hda-intel model=generic
options snd-hda-intel dmic_detect=0

Then reboot the system

Share:
15,466

Related videos on Youtube

Filipe Jode
Author by

Filipe Jode

Updated on September 18, 2022

Comments

  • Filipe Jode
    Filipe Jode over 1 year

    I connected my PC to my TV via HDMI and had to set the default video and audio outputs to the TV, everything worked fine, but after I disconnected, the video playback speed was at 0.5x and the audio was not working. I don't really remeber how I fixed the video playback speed, just that it was pretty simple, but the audio never worked again.

    I've tried the answers provided in these questions:

    But none was able to get my audio back working.

    Audio via bluetooth devices works fine. Please help, I'm new to Ubuntu, and Linux in general, and this is starting to get really annoying.

  • lovalim
    lovalim over 5 years
    It helped me ubuntu 18.04
  • Odysseas
    Odysseas almost 5 years
    Also helped on Ubuntu 18.10
  • lovalim
    lovalim almost 5 years
    Thanks it helped.
  • NumerousHats
    NumerousHats over 4 years
    Worked, and I didn't even have to close all programs using pulseaudio.
  • Ahmed Ibrahim
    Ahmed Ibrahim over 4 years
    Worked like magic! Thank you
  • Ott Toomet
    Ott Toomet about 4 years
    Worked in 16.04
  • user40491
    user40491 about 4 years
    did not work for me Asus
  • Pedro Rolo
    Pedro Rolo about 4 years
    This worked for me in 20.04
  • Scz
    Scz about 4 years
    +1 I tried so much else, which did not work, but this worked for me on 20.04. I think the trick was "First close any programs using pulseaudio"!
  • Deepak
    Deepak about 4 years
    Thanx... this command worked for me (Ubuntu 20.04 on dell vostro 2520).
  • MattB
    MattB about 4 years
    I was just looking at my /etc/pulse/default.pa file, and it already contains the "load-module module-detect" command but its wrapped in ".ifexists module-udev-detect.so; load-module module-udev-detect; .else load-module module-detect; .endif
  • st0at
    st0at about 4 years
    As I remember my config file also had this line but somewhere in the middle and maybe also wrapped in some if sentence. I just added it in the end and sound started working. It solved my problem so I skipped going deeper into details.
  • Bashar Al-Abdulhadi
    Bashar Al-Abdulhadi over 3 years
    worked as charm, 18.04, thinkpad W520
  • Kumar Roshan Mehta
    Kumar Roshan Mehta over 3 years
    This is the only answer that worked for me.