Skip to content

Instantly share code, notes, and snippets.

@leonlaser
Last active March 21, 2019 14:19
Show Gist options
  • Save leonlaser/c3668c122acc6c3fca46f5a8278b359e to your computer and use it in GitHub Desktop.
Save leonlaser/c3668c122acc6c3fca46f5a8278b359e to your computer and use it in GitHub Desktop.
[Test disk speed] #dd #hdd #disk #server #speedtest #speed #io
#!/bin/bash
# bs=file size
# count=number of tries
# if=input file
# of=output file
# conv='sync' (macos) / 'fadatasync' (linux) wait for I/O-Cache to write data on disk
dd bs=${bs:-1024} count=${count:-256} if=/dev/zero of=dd_zero_file conv=sync && rm dd_zero_file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment