如何关闭 Linux 中的嘟嘟声
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何关闭 Linux 中的嘟嘟声相关的知识,希望对你有一定的参考价值。
在 Debian/Ubuntu Linux 默认情况下,PC 喇叭发出的嘟嘟声音警告(System Beep)应用的场合非常普遍。但在 shell 的 tab 补全、vi 的光标移动行首行尾等等情况下,这个嘟嘟声也是很经常响起来,叫嚷的太频繁,难免叫人烦。上网找了两个办法,把这个嘟嘟声给关掉:1. 编辑 /etc/inputrc,找到 #set bell style none这一行,去掉前面的注释符号。2. 或者编辑 /etc/profile,添加这一句 setterm -blength 0即可。修改完成之后,重启 shell,上面的设置生效,烦人的嘟嘟声总算不会时时响起来了~Update: 如果想关闭整个系统中的 system beep,可以在 X 下简单地加以设置,(以 Gnome 为例)在 System -> Preference -> Sound -> System Beep 中,反选 Enable System Beep 这一项即可。 参考技术A rmmod pcspkrcentos7常见问题-解决烦人的声音
1、关闭Linux下Shell终端嘟嘟声和vi中错误提醒的Beep音
If you are using bash
vi /etc/inputrc
set bell-style none 取消注释(取消蜂鸣音)
取消在vi错误提示音
rmmod pcspkr ---临时关闭
modprobe pcspkr --临时开启
永久
vi ~/.bashrc
setterm –blength 0
#xset –b
保存重启永久生效。烦人的声音就没有了。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
在 console 下: setterm -blength 0
在 X-win 的 terminal 下: xset -b
#If you are using Gnome terminal
#GNOME是一套纯粹自由的计算机软件,运行在操作系统上,提供图形桌面环境。
a) Open Gnome terminal
b) Click on Settings >Preferences > Silence Terminal Bell
Or Click on General Tab ->General -> Un-Check Terminal bell option
#If you are using xterm
#XTerm是一个X Window System上的终端模拟器,用来提供多个独立的SHELL输入输出。
Open ~/.xsession file (i.e./home/you/.xession)
$ cd
$ vi .xession
Append following line
xset b off
Save and close the file.:
#If you are using Ubuntu Linux
a) Click on Applications > Accessories > Terminal
b) Now click on Edit Menu > Current Profile
c) Click on General Tab > General > Remove check box(Terminal bell)
希望和大家互相学习
本文出自 “哥哥来分享” 博客,请务必保留此出处http://renzhiyuan.blog.51cto.com/10433137/1749133
以上是关于如何关闭 Linux 中的嘟嘟声的主要内容,如果未能解决你的问题,请参考以下文章