CentOS / Red Hat / Fedora Linux Turn off Beep / Bell Terminal Sound

by Vivek Gite · 6 comments

Q. I'm using CentOS Linux v5.x and I'd like to turn off the bell sound. How do turn off the beep?

A. Linux kernel has PC speaker beeper driver called pcspkr.ko. This driver is responsible for generating beeps while working at shell prompt / x terminal. To turn off the beep, simply remove driver from kernel. You also need to black list this driver so that it will not get loaded automatically.

Remove pcspkr driver

Login as the root user

Type the following command to unload the driver:
# rmmod -v pcspkr
Sample output:

rmmod pcspkr, wait=no

/etc/modprobe.d/blacklist file

Open /etc/modprobe.d/blacklist file:
# vi /etc/modprobe.d/blacklist
You need to append a module here prevents the hotplug scripts from loading it:
blacklist pcspkr
Save and close the file. Alternatively, you can unload driver by appending following line into /etc/rc.d/rc.local:
# vi /etc/rc.d/rc.local
Append following line:
/sbin/rmmod pcspkr
Save and close the file. There are other ways to turn off beep sound under Linux, if you don't have root level access.

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 6 comments… read them below or add one }

1 Miguel 04.26.08 at 10:58 pm

I think that removing the speaker driver is too strong an option. If the problem is that the terminal beeps at the bash prompt (I’m thinking about the user pressing TAB, with too many options you get a beep), it would be enough the following

$ echo “set bell-style none” > $HOME/.inputrc

After you open a new X terminal, it doesn’t beep

2 josh from america 08.25.08 at 11:36 pm

Thank you nixcraft, I basically camp the “reset mysql root password” page for cut and paste purposes, now the prompt doesn’t beep over pandora radio woo!

3 Tomas 10.27.08 at 10:43 am

How to dissable pcspeaker in SUSE linux?
There is no pcskpr module!
I don’t want to do it via KDE, GNOME,… but in system way. Also I don’t want to dissable it only in console, but at all (in kernel or HAL). Is there some HAL way?

Many thanks

4 Ankit Khare 01.15.09 at 11:04 pm

Thanks a lot dude.. that helped a lot..

Keep Rockin!

5 Yusuf 03.24.09 at 7:12 pm

Thanks Miguel! That worked for me on my ubuntu box aswell.

6 Mike 02.01.10 at 4:45 pm

I have to agree with Miguel in the case where users are complaining about beeps at the bash prompt. For one thing, I can tell my users to google “bell-style” and empower them to resolve the issue :-)

Thanks for both the original post and the comments, good to know both approaches.

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous FAQ:

Next FAQ:

nixCraft FAQ PDF Collection Now Available To All