Software⏱️ 2 min read📅 2026-06-03

How to Fix: How to disable bells/beeps in the WSL terminal on Windows 10

Disable WSL bells/beeps on Windows 10

Quick Answer: To disable visual and audio bells/beeps in the WSL terminal, run the command `echo > /dev/null` or add `bell=off` to your shell configuration file (e.g., `~/.bashrc` for Bash).

To disable visual and audio bells/beeps in the WSL terminal on Windows 10, you can follow these steps:

🛑 Disable Visual Bells/Beeps

  • Open the WSL terminal and type `echo -ne ' ' > /dev/tty` to disable visual bells/beeps.

🚀 Disable Audio Bells/Beeps

Method 1: Using the 'echo' Command

  1. Step 1: Open the WSL terminal and type `echo -ne ' ' > /dev/tty` to disable audio bells/beeps.

✨ Alternative Method: Using the 'dconf-editor' Tool

Alternatively, you can use the `dconf-editor` tool to disable audio bells/beeps. Open the WSL terminal and type `sudo dconf write /org/gnome/bash/terminal/bell-mode boolean false`.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions