Last active
February 5, 2018 08:03
-
-
Save brunneis/057afe8ef5a9a87781ecc17bdb2f4f8a to your computer and use it in GitHub Desktop.
Disable motherboard's speaker sound (beep)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Temporary fix | |
sudo rmmod -v pcspkr | |
# Permanent fix | |
echo "blacklist pcspkr" >> /etc/modprobe.d/blacklist.conf | |
update-initramfs -u | |
# reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment