Advertisement
conformist

dd bs comparison

Apr 26th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.40 KB | None | 0 0
  1. $ time dd if=/dev/zero of=file1 count=195313
  2. 195313+0 records in
  3. 195313+0 records out
  4. 100000256 bytes (100 MB, 95 MiB) copied, 0.899838 s, 111 MB/s
  5.  
  6. real    0m0.924s
  7. user    0m0.020s
  8. sys     0m0.448s
  9. $ time dd if=/dev/zero of=file2 bs=10MB count=10
  10. 10+0 records in
  11. 10+0 records out
  12. 100000000 bytes (100 MB, 95 MiB) copied, 0.172675 s, 579 MB/s
  13.  
  14. real    0m0.177s
  15. user    0m0.004s
  16. sys     0m0.172s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement