This doesn't seem to work at all:

cat /dev/urandom > /dev/dsp    #from wikipedia.org

Is it because of pulseaudio? or I need to do some settings?

link|improve this question

51% accept rate
Trying to listen to the sound of randomness? – Linus Kleen Jun 24 '11 at 9:08
I still hear nothing... – c2h2 Jun 24 '11 at 9:12
Does your sound work at all? ALSA frequently starts at boot Muted. – sarnold Jun 24 '11 at 9:17
yes, wondering if /dev/dsp is correct device? – c2h2 Jun 24 '11 at 9:42
feedback

1 Answer

up vote 3 down vote accepted

I'm not sure there is a simple device you can just send the bytes to these days - the /dev/dsp device is an old OSS thing and probably won't exist on a modern ALSA based system where the sound card is controlled by the devices in /dev/snd.

You're probably better off using aplay or something to "play" the data from /dev/random though you will probably need to give it a load of switches to tell it what format to assume the data is in. To make it play as if it were WAV data you want something like:

aplay -c 2 -f S16_LE -r 44100 /dev/random
link|improve this answer
yep this works! aplay -c 2 -f S16_LE -r 44100 /dev/urandom – c2h2 Jun 24 '11 at 10:30
any pipe way for this? from stdin? – c2h2 Jun 24 '11 at 10:32
Just leave off the filename and it will read from stdin – TomH Jun 24 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.