Skip to content

Instantly share code, notes, and snippets.

@lbbedendo
Last active November 8, 2020 17:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save lbbedendo/9aa1dae6d8713e6bbc2c1de8d76d7936 to your computer and use it in GitHub Desktop.
Save lbbedendo/9aa1dae6d8713e6bbc2c1de8d76d7936 to your computer and use it in GitHub Desktop.
Audio fix for ubuntu 19.10 on Dell G3 3590 (Dummy Output)
# Reference: https://www.linuxuprising.com/2018/06/fix-no-sound-dummy-output-issue-in.html
# Solution 2 fixed my problem (below)
echo "options snd-hda-intel dmic_detect=0" | sudo tee -a /etc/modprobe.d/alsa-base.conf
echo "blacklist snd_soc_skl" | sudo tee -a /etc/modprobe.d/blacklist.conf
# Reboot your system
@CelioJr
Copy link

CelioJr commented Apr 5, 2020

Thanks, its fixed my problem too

@lbbedendo
Copy link
Author

Nice to know!

@xisouthros
Copy link

Thank you so much, its fixed this problem. What is the task these commands?

@lbbedendo
Copy link
Author

Thank you so much, its fixed this problem. What is the task these commands?

The tee -a command appends the text you see in double quotes at the end of the specified file. These two lines fixes a regression introduced in the 5.3.0-41 and -42 kernel.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment