dd を使用して tmpfs のパフォーマンスを測定したいと考えています。しかし、以下のように失敗します。
# dd if=/dev/zero of=/tmp/128M bs=4M count=32 oflag=direct
dd: failed to open ‘/tmp/128M’: Invalid argument
何か助けはありますか?
tmpfs はダイレクト I/O をサポートせず、-EINVAL を返します。
Vasily Tarasov のソリューションは、NFS でも機能しました。私が持っていた:
dd if=/dev/urandom of=TEST.200GB iflag=direct bs=1M count=204800
dd: failed to open ‘/dev/urandom’: Invalid argument
それからiflag=directを削除しましたが、うまくいきました