84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
就像在cmd里运行 echo [Ctrl + G] 或 echo [alt+7] 一样让主板喇叭发出滴滴滴的声音,即使操作系统静音也能发声.网上说的 echo -e "\007" 和 printf '\7' 之类发声的是功放喇叭而不是主板报警蜂鸣的喇叭啊,, 系统设置静音的时候就不响了...
闭关修行中......
好久不用linux了,我只凭印象说一下,这是一个很复杂的问题:
有的主板 bios 里有开关,要打开。
需要内核支持,模块名pcspkr(这个条件一般是满足的,但我用gentoo时比较喜欢把这个支持干掉)。
pcspkr
用户空间支持,比如有beep这个程序(这个程序有时就是echo -en '\a'>/dev/console),有 root 权限等等。console 和 X 里的 terminal 的开关设置又不太一样。
beep
echo -en '\a'>/dev/console
好像不是所有主板都有独立的 pc speaker,有一些是和板载音响一起的,需要alsamixer里面取消静音。
alsamixer
可以 google “linux beep”,有一些发现,好像 ubuntu 是默认把 pcspkr 模块给 blacklist 了。
好久不用linux了,我只凭印象说一下,这是一个很复杂的问题:
有的主板 bios 里有开关,要打开。
需要内核支持,模块名
pcspkr
(这个条件一般是满足的,但我用gentoo时比较喜欢把这个支持干掉)。用户空间支持,比如有
beep
这个程序(这个程序有时就是echo -en '\a'>/dev/console
),有 root 权限等等。console 和 X 里的 terminal 的开关设置又不太一样。好像不是所有主板都有独立的 pc speaker,有一些是和板载音响一起的,需要
alsamixer
里面取消静音。可以 google “linux beep”,有一些发现,好像 ubuntu 是默认把 pcspkr 模块给 blacklist 了。