centos7常见问题-解决烦人的声音

1、关闭Linux下Shell终端嘟嘟声和vi中错误提醒的Beep音

If you are using bash

echo $0wKioL1bfygGgK2keAAAWazGlzzQ890.png

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)


希望和大家互相学习

你可能感兴趣的:(CentOS7,解决,常见问题)