Audio device power saving configuration

maybe yes, please check the output of

cat /proc/asound/modules 

and post it please. there should be the intel_snd.

if so you can shut down the power saving of the audio with the following temporarily

echo 0 | sudo tee /sys/module/snd_hda_intel/parameters/power_save 

echo N | sudo tee /sys/module/snd_hda_intel/parameters/power_save_controller

you can make the changes permanent if the problem disappears with the following

echo "options snd-hda-intel power_save=0 power_save_controller=N" | sudo tee /etc/modprobe.d/hda.conf
1 Like