Navigation |
How to turn off the annoying speaker beep on UbuntuThere is a simple and easy way to make sure the speaker of your pc will stop beeping everytime you issue a wrong command. sudo lsmod | grep pcspkrIf you can see
pcspkrTurn it off
sudo rmmod pcspkrDon't forget to make the change permanent
sudo echo "blacklist pcspkr" > /etc/modprobe.d/blacklist-pcspkrJob done
|