I use this music to wake-up my friend
Nikita when I logged on his host remotely with SSH. :^)
To use this remotely you need uncomment two lines and create new device:
ln -s /dev/vc/63 /dev/beep or
ln -s /dev/tty31 /dev/beep.
#!/usr/bin/perl
use Time::HiRes qw(sleep);
# open BEEP, ">/dev/beep" or die $!;
# select BEEP;
$| = 1;
sleep($_), print "\a" for (0,
0.45, 0.15, 0.15, 0.15,
0.45, 0.15, 0.15, 0.15,
0.45, 0.45,
0.45, 0.15, 0.15, 0.15,
0.45, 0.15, 0.15, 0.15,
0.15, 0.15, 0.15, 0.15, 0.15, 0.15);
WBR, Alex.