Stop the Beep on the Shutdown Button

Hello.

My laptop beeps whenever I hit the shutdown button and I’d like to turn it off. A thread named “​Manjaro XFCE disable system beep” (I wasn’t able to link to the thread) said to enter this code in the terminal:

echo "blacklist pcspkr" | sudo tee /etc/modprobe.d/nobeep.conf

This worked for the OP, but when I tried it I got this error message:

sudo: tee/etc/modprobe.d/nobeep.conf: command not found

How do I turn off the beep?

Thanks.

There’s a missing space between tee and the directory /etc, so the system thinks that it’s all part of the command’s name. That’s why you’re getting that error message.


Alternative approach… :arrow_down:

sudo su -
echo "blacklist pcspkr" >> /etc/modprobe.d/nobeep.conf
exit

You’ll need to reboot after that.

5 Likes

…there are several approaches, see here in the arch wiki .
If one does not work for you try another.

2 Likes

That was it. Thanks. :grinning:

don’t forget to mark the solution @Aragorn 's post that was the solution

2 Likes

Thanks for the reminder. :slight_smile:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.