I got annoyed with the system beep of Linux Mint Debian Edition when I login or logout. I have found some solutions like:
echo "blacklist pcspkr" | sudo tee -a /etc/modprobe.d/blacklist
but it didn't work for me. How can I turn off the beep?
|
I got annoyed with the system beep of Linux Mint Debian Edition when I login or logout. I have found some solutions like:
but it didn't work for me. How can I turn off the beep? |
||||
|
Well, the easiest is to set when it's about X, then I'd advice |
|||
|
From all the tutorials I've found, this is the only one that worked for me: |
|||
|
|
snd_pcspas well... – jasonwryan Nov 16 '12 at 6:14snd_pcsp, but it still doesn't work. – Kesco Nov 16 '12 at 15:26modprobe.blacklist=pcspkrin the kernel boot parameters. First, dolsmod | grep pcspkrand check if it returns anything. If it doesn't, then it's not built as a module; if it does and blacklisting does remove it from the list, then maybe the beep is not made through the system speaker? – njsg Nov 16 '12 at 15:59snd_pcspis a completely different thing, you want to blacklistpcspkr, which is what provides you the usual beep speaker; I thinksnd_pcspis a driver to use that speaker as you would use external speakers (play mp3s, etc); if I am correct, disabling it won't disable the usual beep at all, because it's a separate driver. – njsg Nov 16 '12 at 16:12snd_pcsp.By the way, how to disablemodprobe.blacklist=pcspkrin the kernel boot? – Kesco Nov 19 '12 at 4:36