I am using Ubuntu 19.10 for few months. Suddenly voice output is not working. In-spite of trying reinstalling sound drives and tried all options despite that it is not working. Any inputs to it?
3 Answers
Adding to Andrea Pavan's answer:
You can first add the variable to a new boot session and check if it works
Reboot your system. AT GRUB, choose Ubuntu and press
E. You will be taken to command line options.Locate the line beginning with
Linux. Add the following parameter at the end of the linesnd_hda_intel.dmic_detect=0Press
F10to reboot.
After verifying this has indeed solved your sound issue, you can make this change permanently by performing the below steps
Run
sudo gedit /etc/default/grubfrom terminal.Locate the line beginning with GRUB_CMDLINE_LINUX_DEFAULT and append the above parameter to it.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash snd_hda_intel.dmic_detect=0"Save and Close
gedit.Run
sudo grub-mkconfig -o /boot/grub/grub.cfgReboot.
When I was stuck with the same issue, the below link helped me resolve it.
- 66
- 3
For > 5.3.0-40 kernels, try adding:
"options snd-hda-intel dmic_detect=0" in the /etc/modprobe.d/alsa-base.conf.
and finally reboot the system. This worked for me!
- 31
Sound works well with Kubuntu USB live. The cause of no sound being heard from speakers or headphones is because There is a problem with an error in the last update of the PPA with the Nvidia driver. They sent a filth as update and they have not solved it.
- 51