I read watch
command's manual page, found -b
or --beep
:
-b, --beep
Beep if command has a non-zero exit.
So I did:
$ watch --beep ls /root
Using a non-root account and it doesn't make a sound like a beep. How should I use this command?
I read watch
command's manual page, found -b
or --beep
:
-b, --beep
Beep if command has a non-zero exit.
So I did:
$ watch --beep ls /root
Using a non-root account and it doesn't make a sound like a beep. How should I use this command?
beep
installed?sudo apt install beep
– Are you speakers unmuted? – dessert Jun 29 '19 at 11:14pcspkr
kernel module loaded? Do that withsudo modprobe -v pcspkr
and try again. – dessert Jun 29 '19 at 15:58alsamixer
, I have to enable theloopback
device to enable beeping, but when I enable it, my laptop starts a kind of strange noise like a radio. How can I disable that noise without disabling theloopback
device? @dessert – Mohammad Kholghi Jul 01 '19 at 16:37