13

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.

Pablo Bianchi
  • 17,371

5 Answers5

33

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.

agc
  • 563
3

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.

jokerdino
  • 41,732
MattB
  • 191
2

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

0

I had the same problem with Asus PRIME H310M-R R2.0 motherboard. MattB, your solution solved my problem too, thank you. So I added it to end of PulseAudio configuration file:

echo "load-module module-detect" | sudo tee -a /etc/pulse/default.pa

Now you don't have to run it each time after reboot.

st0at
  • 11
0

Maybe It's Bad Kernel

  • run uname -a in a terminal and it shows 4.15.0-177-generic, then you have the bad kernel version.

Reboot and get into your grub menu and select any version prior to 4.15.0-177. I selected 4.15.0.176 and audio, wifi, and Bluetooth are all back on.

Sivaram Rasathurai
  • 239
  • 1
  • 3
  • 16