Last active
March 21, 2019 14:19
-
-
Save leonlaser/c3668c122acc6c3fca46f5a8278b359e to your computer and use it in GitHub Desktop.
[Test disk speed] #dd #hdd #disk #server #speedtest #speed #io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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