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
原文地址:http://renzhiyuan.blog.51cto.com/10433137/1749133