さて、ddを使用すると、ブロックサイズとカウントを指定して、次のようにサイズを制限できます。
dd if=/dev/urandom count=5 bs=1024 > nullfile
それから読みたい場合は、パイプしてください:
dd if=/dev/urandom count=5 bs=1024 | yourReadingProcess
以前、私が作成したすべてのLinuxインストールには、いくつかのネットワークツール、portmap、inet.dなどが付属していました。inet.dでは、いくつかのサービスが常に指定されていました。
(... 1分後...)
はい。/ etc / servicesにあります
chargen 19/tcp ttytst source
chargen 19/udp ttytst source
だから私はそれが何かをテストするサービスであり、ネットワーク上で文字を送信する-おそらくランダム-であると思う。PCでのみ/etc/xinet.d/chargenを見つけました。さらに情報があります:
# default: off
# description: An xinetd internal service which generate characters. The
# xinetd internal service which continuously generates characters until the
# connection is dropped. The characters look something like this:
# !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg
# This is the tcp version.
しかし、私はあなたの目的のためにそれを使用する方法を知りません。