Possible Duplicate:
Beep on Linux in C
I have been looking for a way to play a simple beep in Linux, but all what I found don't work.
I've tried the \a, \b \7 but anyone play the beep.
I would like to play it without the use of sound libraries, later I will change the beep for a real sound using any library, but right now I'm only interested in play a beep for testing purposes
As I said, I'm using Linux (exactly LMDE) so the easiest way of Windows (include windows.h and Beep()) can't be used.
So how could I implement this? A system call or something like that.
EDIT: I ended doing it in Java and I have it working already.