I lost sound after updating from 19.10 to 20.04.
My sound driver appears to have been replaced with dummy output, see below
No other output devices are available. I have rebooted and the problem remains.
I lost sound after updating from 19.10 to 20.04.
My sound driver appears to have been replaced with dummy output, see below
No other output devices are available. I have rebooted and the problem remains.
I would first suggest rebuilding new pulseaudio configuration for your user account. This might, in most cases, fix the problem or at least rule out issues related to pulseaudio configuration.
Old pulseaudio
configuration files can sometimes conflict with newer versions of pulseaudio
after package or system upgrades. To fix this, please follow the steps below:
Back up ~/.config/pulse/
configuration directory to ~/.config/pulse_old/
by running the following command in the terminal:
mv ~/.config/pulse/ ~/.config/pulse_old/
After that, please reboot your system to build new pulseaudio
configuration files. A new ~/.config/pulse/
directory will be created automatically.
Test your audio now.
If, somehow, after applying this fix you decide to go back to the previous state before applying the fix, please follow the steps below:
Run the following command in the terminal:
rm -r ~/.config/pulse/
Run the following command in the terminal:
mv ~/.config/pulse_old/ ~/.config/pulse/
Reboot your system.
However, if all is okay and the problem is fixed, you can remove the backed up old configuration directory ~/.config/pulse_old/
to free space ( if you wish ) by running the following command in the terminal:
rm -r ~/.config/pulse_old/
~/.config/pulse/
and restarting the system worked.
– Henrique Ferrolho
Feb 26 '21 at 15:28
I have found a similar problem in a different thread, you might want to try this:
It also happened to me a couple of times, though I can't remember if rebooting used to solve my problem... Anyway I found the following line to be helpful:
pulseaudio -k && sudo alsa force-reload
I can't find the original thread with the solution and explanation, but it's practically shutting/killing the deamon and forcing alsa to reload.
I faced the same issue, you can follow steps mentioned in the answer of this question. If the link doesn't work just do this.
Open your terminal and after that:
sudo vim /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT
and add snd_hda_intel.dmic_detect=0
to the end of it. (ex: GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 snd_hda_intel.dmic_detect=0
")sudo grub-mkconfig -o /boot/grub/grub.cfg
My solution is a mixed several threads: this thread and that, another one and latest:
# Edit backlist kernel:
echo "blacklist snd_soc_skl" >> /etc/modprobe.d/backlist.conf
Edit alsa options
echo "snd-hda-intel model=generic" >> /etc/modprobe.d/alsa-base.conf
Edit /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash loglevel=3 snd_hda_intel.dmic_detect=0"
Reinstall alsa-base and pulseaudio
apt-get install --reinstall alsa-base pulseaudio
alsa force-reload
Purge timidity
apt purge timidity-daemon
Some trick: https://askubuntu.com/a/1249071/756376
sudo setfacl -m u:$USER:rw /dev/snd/*
pavucontrol
? – jarno May 09 '20 at 08:40dmesg
tell something about audio? – jarno May 09 '20 at 08:42sudo apt install pavucontrol
and thereafter run it by the same name. – jarno May 09 '20 at 14:59dmesg | grep -iE 'sound|audio'
andcat /var/log/syslog | grep -iE 'sound|audio'
and maybe you see something helpful in their output. – jarno May 09 '20 at 15:19lspci | grep -i audio
and reply back what you see? – DanglingPointer May 19 '20 at 06:56inxi -A
. – Olimjon May 25 '20 at 12:24Package 'timidity-daemon' is not installed, so not removed
– Mittenchops Jun 29 '20 at 04:56Package 'timidity' is not installed, so not removed
– Mittenchops Jun 29 '20 at 04:57