Ubuntu 18.04
正如在许多其他帖子中提到的那样:在启动、重新启动时,音频系统会发出很大的砰砰声,就我而言,每当我暂停音频几分钟并重新启动时,或者当我在源之间切换(spotify、YouTube、桌面播放器)或静音/取消静音或调整音量时,音频系统都会发出很大的砰砰声。
我找到一个包含配置设置的 txt 文件,其中讨论了设置音频系统的省电选项,并说
AC97 and HD-audio drivers have the automatic power-saving mode.
This feature is enabled via Kconfig CONFIG_SND_AC97_POWER_SAVE
and CONFIG_SND_HDA_POWER_SAVE options, respectively.
太棒了。我安装了 kconfig,通过各种帮助屏幕启动,但我不知道如何使用它。后来文件说
The power_save option is exported as writable. This means you can
adjust the value via sysfs on the fly. For example, to turn on the
automatic power-save mode with 10 seconds, write to
/sys/modules/snd_ac97_codec/parameters/power_save (usually as root):
# echo 10 > /sys/modules/snd_ac97_codec/parameters/power_save
但是当我尝试时我得到
bash: /sys/modules/snd_ac97_codec/parameters/power_save: No such file or directory
帮帮我吧。我该如何摆脱 POP?
答案1
[注意:您需要 root 权限才能执行此操作]。
使用以下命令在控制台中打开文件:sudo nano /etc/modprobe.d/alsa-base.conf [或者,使用 Dolphin,用 Kate 打开。]
在页面底部添加以下行:
选项 snd-hda-intel power_save=0 power_save_controller=N
保存并重新启动。