最近、バイトを送信できる単純なデバイスがあるかどうかはわかりません- /dev/dsp
device は古い OSS のものであり、サウンド カードが /dev/snd
のデバイスによって制御される最新の ALSA ベースのシステムにはおそらく存在しません。 .
おそらく aplay
を使用したほうがよいでしょう または /dev/random
からのデータを「再生」する何か ただし、データがどの形式であると仮定するかを指示するために、おそらく多くのスイッチを指定する必要があります。WAV データであるかのように再生するには、次のようにする必要があります。
aplay -c 2 -f S16_LE -r 44100 /dev/random
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | sed 1000000000q |aplay
cat /dev/urandom | tr -dc '0-9' | fold -w 10 | sed 1000000000q |aplay
cat /dev/urandom | tr -dc '0-9' | fold -w 10 | sed 1000000000q |aplay
cat /dev/urandom | tr -dc '&*(&(^)' | fold -w 10 | sed 1000000000q |aplay
cat /dev/urandom | tr -dc '&*(&(^)' | fold -w 10 | sed 1000000000q |aplay
cat /dev/urandom | tr -dc '~`[email protected]#$%^&*()' | fold -w 1 | sed 1000000000q |aplay
cat /dev/urandom | tr -dc "0-9a-z" |aplay
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 |aplay -r 192000
pacat /dev/urandom
ubuntu
で動作 追加のインストールなしで。