WSL用端末ソフトウェアのビープ音(beep)を消す

Ubuntu Server 20.04のインストールと初期設定ーIPアドレス固定やCUDAの導入

WSLの端末でtabボタンを使うと警告音(ビープ音)がでてきてうるさいので、消します。

/etc/inputrcファイルを編集して、ビープ音の設定箇所(set bell-style none)のコメントアウトを外します。

# before
$ cat -n vim /etc/inputrc
... 20 # do not bell on tab-completion 21 # set bell-style none 22 # set bell-style visible
...
# after
$ cat -n vim /etc/inputrc
... 20 # do not bell on tab-completion 21 set bell-style none 22 # set bell-style visible
...

端末を再起動したらビープ音が消えます。