$ time dd if=/dev/zero of=10MB.dat bs=1M count=10 real 0m0.213s $ time dd if=/dev/urandom of=10MB.dat bs=1M count=10 real 0m8.873s
$ dd if=/dev/zero of=/dev/null bs=1M count=100 104857600 bytes (105 MB) copied, 0.0237114 s, 4.4 GB/s $ dd if=/dev/urandom of=/dev/null bs=1M count=100 104857600 bytes (105 MB) copied, 21.501 s, 4.9 MB/s
$ truncate -s 17TB hugefile.dat