5

I have a PC with Ubuntu 22.04 LTS dual booting with Windows 10. After a fresh install of ubuntu I notice a random popping sound (very small but it's there) from my speaker (edifier r1280dbs).

It seems to happen whenever I open heavy apps (like microsoft teams), or when I login/logout of the system. But it can happen randomly too. I've searched intensively and most of the results I found say that the problem is in the power saving option of the sound card. I've follow the solutions here but none's working. Annoying click/popping sound on Ubuntu 20.04 Please help me solve this problem. Thank you!

3 Answers3

4

This answer worked for me.

  1. Backup the existing PuseAudio config file: sudo cp /etc/pulse/default.pa /etc/pulse/default.bak
  2. Edit the config file: gedit admin:///etc/pulse/default.pa
  3. Hash out the entry load-module module-suspend-on-idle: #load-module module-suspend-on-idle
  4. Save and close the config file
  5. Restart PluseAudio: systemctl restart --user pulseaudio
Jaydin
  • 1,446
0

Because none of the solutions worked for me, and the speakers keep idling when the volume is low for a while, I found this hack works:

play -q -r 48000 -n -t alsa -b 16 -c 2 synth sin 10 vol -10dB

I just play this inaudible (for me) sound all the time and they never idle.

Jake OPJ
  • 101
0

[note: you need to be root for this].

Open file in terminal:

sudo gedit /etc/modprobe.d/alsa-base.conf

Add the following line at the bottom of the page:

options snd-hda-intel power_save=0 power_save_controller=N

save and reboot.

rob grune
  • 1,068