Skip to content

Instantly share code, notes, and snippets.

@wegotoeleven
Created August 5, 2022 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wegotoeleven/93171cc115837232b03757ae087edbbe to your computer and use it in GitHub Desktop.
Save wegotoeleven/93171cc115837232b03757ae087edbbe to your computer and use it in GitHub Desktop.
Read/Write tests
# Read test
dd if=tstfile bs=2048k of=/dev/null count=1024 2>&1 | grep sec | awk '{print "Read: " $1 / 1024 / 1024 / $5, "MB/sec" }'
# Write test
dd if=/dev/zero bs=2048k of=tstfile count=1024 2>&1 | grep sec | awk '{print "Write: " $1 / 1024 / 1024 / $5, "MB/sec" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment