LINUX.ORG.RU

История изменений

Исправление sehellion, (текущая версия) :

Вот, попробовал у себя на ноуте:

$ time sh -c "dd if=/dev/zero of=test_file bs=1M count=4096 && sync"
4096+0 records in
4096+0 records out
4294967296 bytes (4,3 GB, 4,0 GiB) copied, 6,84794 s, 627 MB/s

$ time sh -c "dd if=test_file of=/dev/null && sync"
8388608+0 records in
8388608+0 records out
4294967296 bytes (4,3 GB, 4,0 GiB) copied, 7,28742 s, 589 MB/s

real	0m7,295s
user	0m1,974s
sys	0m5,317s

Исходная версия sehellion, :

Вот, попробовал у себя на ноуте:

$ time sh -c "dd if=/dev/zero of=test_file bs=1M count=4096 && sync"
4096+0 records in
4096+0 records out
4294967296 bytes (4,3 GB, 4,0 GiB) copied, 6,84794 s, 627 MB/s

$ time sh -c "dd if=test_file of=/dev/null && sync"^[[D^[[D8388608+0 records in
8388608+0 records out
4294967296 bytes (4,3 GB, 4,0 GiB) copied, 7,28742 s, 589 MB/s

real	0m7,295s
user	0m1,974s
sys	0m5,317s