在Windows 10上禁用Linux Bash的提示音 [英] Disable beep of Linux Bash on Windows 10

查看:349
本文介绍了在Windows 10上禁用Linux Bash的提示音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Windows 10 上具有Linux Bash 非常酷,但是据我所知,我不得不与Microsoft提供的效果不佳的终端进行斗争我将在所有方面都陷于Ubuntu.
无论如何,当您在Bash上执行某项操作时,是否有办法关闭哔哔声?
由于不可能注释掉bell-style audible,因为它在那里,所以也不可能启动sc config beep start= disabled

Having a Linux Bash on Windows 10 is pretty cool, but as far as I've got to struggle with the not-so-good terminal provided from Microsoft I'm gonna get stuck with Ubuntu for everything.
Anyway, is there a way to turn off that beep whenever you do something on the Bash?
Since it is not possible to comment out bell-style audible because is not there, nor is it possible to launch sc config beep start= disabled

推荐答案

  1. 要在 bash 中禁用蜂鸣声,您需要在/etc/inputrc文件中的第set bell-style none行中取消注释(或添加注释).

  1. To disable the beep in bash you need to uncomment (or add if not already there) the line set bell-style none in your /etc/inputrc file.

注意:由于它是受保护的文件,因此您需要成为特权用户才能对其进行编辑(即,使用sudo <editor> /etc/inputrc之类的东西启动文本编辑器).

Note: Since it is a protected file you need to be a privileged user to edit it (i.e. launch your text editor with something like sudo <editor> /etc/inputrc).

要在 vim 中也禁用蜂鸣声,则需要在~/.vimrc文件中添加set visualbell.

To disable the beep also in vim you need to add set visualbell in your ~/.vimrc file.

要在 less 中也禁用蜂鸣声(即在手册页中以及使用"git diff"时),则需要在~/.profile文件中添加export LESS="$LESS -R -Q".

To disable the beep also in less (i.e. also in man pages and when using "git diff") you need to add export LESS="$LESS -R -Q" in your ~/.profile file.

这篇关于在Windows 10上禁用Linux Bash的提示音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆