I am using a Debian machine, ARK-3360F, and I need to make it beep like it does when it starts-up. Unfortunately, there is not any other speaker than this on the machine, so the below methods do not work even if I use modprobe pcspkr
:
echo -e "\a"
echo ^G
echo -e "\07"
-and the beep program
modprobe pcspkr
andprintf '\a' > /dev/tty1
– Stéphane Chazelas Jan 13 '14 at 08:31echo -e
instead ofprintf
since it is in terminal and not C. Still it doesn't beep. – Alex Jan 13 '14 at 08:42printf
in various shells. Checkedalsamixer
? – Runium Jan 13 '14 at 08:51printf
didn't work and so does thebeep
program. – Alex Jan 13 '14 at 08:59beep
. Checkedalsamixer
? Here are some ways to mute beep – but you might find some of it useful. – Runium Jan 13 '14 at 09:07beep
does not beep, it mostly sound slike a mute issue. You could also try withsnd-pcsp
as noted here. This should give an extra entry forpcsp
in ALSA. If noalsamixer
tryamixer
. – Runium Jan 13 '14 at 09:23