3

I'm completely new in linux and I was just curious of this OS so here I am.

I mount dual-boot Ubuntu 20.04 LST on my Dell Vostro 5790 and there problem began. I hear constant, static, annoying, buzzing sound from my external speakers. This occur when:

  • no sound is playing in background (when the quietest sound occur speakers are not buzzing and that weird sound coming back after about 5 second of silience)
  • sound setting window is opened (when i open sound settings then speakers are not buzzing, after i close this window annoying sound coming back after about 5 seconds)
  • I reload alsa sudo alsa force-reload (after this sound is completely gone no buzzing and no sound at all)
  • when i plug charger this noise is much heavier and louder.

What is completely strange is that when i plug headphones i hear no that annoying sound. When external speakers are unpluged built-in speakers are not buzzing. On Windows10 i have no this problem. That's why I am 95% sure that it is not hardware problem.

I know that above description could looks like duplicate for Ubuntu 20.04 - After last update, speakers are buzzing unless I open the sound settings window but believe me, i tried these solutions already.

Okay, there is what i have tried so far:

And now I'm out of ideas. I feel like I dig whole internet for this problem. It drive me crazy so much that I am near to delete and forgete about linux.

Feel free to ask about details.

Please, help.

kdoz
  • 51
  • "when i plug charger this noise is much heavier and louder" and "When external speakers are unpluged built-in speakers are not buzzing" and "when i plug headphones i hear no that annoying sound" really make me think of a hardware problem. It seems your external speakers are not properly grounded (to the computer). Are they active speakers (brand, type)? Could you check the cable between the 3,5mm audio socket and the speakers? Or maybe even replace it temporarily? What happens when you move the connector around? – Adriaan Feb 09 '21 at 13:01

1 Answers1

2

FINALLY!

I found solution for this annoying problem 18.04 audio (Realtek ALC3254) fails on new Dell G3 15 3590

  1. Open terminal
  2. Type sudo nano /etc/default/grub
  3. Find GRUB_CMDLINE_LINUX_DEFAULT
  4. Append snd_hda_intel.dmic_detect=0 (result line should look like GRUB_CMDLINE_LINUX_DEFAULT="quiet splash snd_hda_intel.dmic_detect=0)
  5. After save type sudo update-grub

Buzzing from speakers are not appear anymore. There is "pop" from speakers when system is booting or switching off but i can live with it.

EDIT

I played with it a little bit after solving this problem and found that line options snd-hda-intel power_save=0 power_save_controller=N in /etc/modprobe.d/alsa-base.conf is still necessary.

kdoz
  • 51