我想在每次启动笔记本电脑时将扬声器和麦克风音量设置为零或静音,即使上次关闭电脑时它们没有静音。就像 Kali Linux 所做的那样。提前致谢。
答案1
来自堆栈交换的这个答案应该可以解决问题:在启动时设置 Ubuntu 音量
从您想使用此命令的问题来看:
`/usr/bin/amixer -c 0 sset Master,0 0% > /dev/null`
从您想要添加命令的答案中:
/etc/rc.local
在第一行之后和最后一行之前插入命令:
#!/bin/sh # <---- This is the first line
`/usr/bin/amixer -c 0 sset Master,0 0% > /dev/null`
exit 0 # <---- This is the last line
在我的 Ubuntu 16.04 LTS 中,启动时声音已静音。其他人也遇到这种情况:如何使我的麦克风在启动时取消静音?
检查文件/etc/modprobe.d/alsa-base.conf
并查找以下行:
options snd-hda-intel model=auto enable=yes
如果存在,则删除它或者将其放在#
第一个字符的位置。