Ubuntu 20.04 - After last update, speakers are buzzing unless I open the sound settings window
The last update that came through looked like a kernel update.
Suddenly my speakers started buzzing. It stops whenever I open the Gnome sound settings window. So now I've just got the sounds settings window open all the time in the background on a different workspace.
If I close the sound settings window, the buzzing starts again shortly after.
Is anyone else experiencing this? My speakers are plugged in via the headphone jack. I have tried different speakers with a different cable and the same thing occurs. Laptop internal speakers seem to be fine.
35 Answers
I've had the same thing and followed the instructions on this solved thread and it hasn't had any fuzz/buzzing since.
Really simple open the terminal, sudo su and then password. Then enter gedit /etc/modprobe.d/alsa-base.conf. It will open a text document, at the end of the document copy and paste the following code:
options snd-hda-intel power_save=0 power_save_controller=N
Save, restart and it should be fixed!
Hope this helps.
5If, like me, the accepted answer didn't work for you, it could be because your power saving settings are managed by tlp. Those settings can be found in this file here:
/etc/default/tlpIf you open that file with your favourite editor, you should find something like:
# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
# A value of 0 disables, >=1 enables power saving (recommended: 1).
SOUND_POWER_SAVE_ON_AC=1
SOUND_POWER_SAVE_ON_BAT=1And you can disable by changing those values to 0
You'll need to restart tlp as so:
sudo tlp start In my case the accepted answer did not work. What worked was turning off power save in /sys/module/snd_hda_intel/parameters/power_save file by replacing 0 with 1 (you need to have root privileges).
You can also use these commands:
cat /sys/module/snd_hda_intel/parameters/power_save
echo "0" | sudo tee /sys/module/snd_hda_intel/parameters/power_save
Source:
EDIT: Unfortunately, the power save settings reset after the reboot. I didn't find better solution though.
I had the same problem. After Ubuntu was updated my external sound card Focusrite start buzzing, especially on low frequency sound.
After reading some topics i found that problem can be with kernel.
In my case i had 5.13.0-39-generic kernel version and after update to 5.17.2.051702-generic problem disappeared.
topic which helped:
Steps which helped me:
- check version of kernel
uname -r - download bash script
wget - make executable
chmod +x ubuntu-mainline-kernel.sh - move that file to /usr/local/bin
- check available version
ubuntu-mainline-kernel.sh -c - update to the latest version
sudo ubuntu-mainline-kernel.sh -i - reboot
Since it's the one of the top google results related to "Ubuntu update sound noise" searches, I'll add my own answer.
After update to 21.10 (if memory serves), bit later today - to 22.04 - my laptop's headphone output was buzzing like hell, with speakers, with headphones etc.
so, alsamixer, setting auto-mute to "enabled" et voila
I don't know what is auto-mute, or why it affects sound in such a harsh manner, but that worked. Maybe I should find out related config options. Didn't reboot yet