系统相关
首页 > 系统相关> > 在bash脚本中设置系统卷(在linux中)

在bash脚本中设置系统卷(在linux中)

作者:互联网

我需要在bash脚本中设置系统卷,但我不知道如何执行此操作.
我应该使用alsactl吗?我可以使用/ proc或/ sys中的某些值吗?

解决方法:

您应该使用amixer工具.

运行不带参数的amixer以获取混音器控件列表.
使用这样的命令:

amixer set Master 50%     # set absolute
amixer set Master 2dB+    # set relative
amixer set Master unmute

标签:bash,linux,audio,alsa
来源: https://codeday.me/bug/20190825/1719185.html