乗法接尾辞を理解しない特定のバージョンの dd があるかどうか疑問に思っていました。dd のマニュアルページから、次のように書かれています。
bs=BYTES
read and write BYTES bytes at a time (also see ibs=,obs=)
BLOCKS and BYTES may be followed by the following multiplicative suffixes: c =1, w =2, b =512, kB =1000, K =1024, MB =1000*1000, M =1024*1024, xM =M GB =1000*1000*1000, G =1024*1024*1024, and so on for T, P, E, Z, Y.
しかし、bs パラメータに G サフィックスを付けて dd を実行すると、番号が理解されていないというエラーが発生しました。
bash $ dd if=/dev/urandom of=largeMovie.avi count=1024 bs=75G
dd: invalid number `75G'
dd のバージョンは次のとおりです。
bash $ dd --version
dd (coreutils) 5.97
あ