Last active
March 21, 2020 19:20
-
-
Save daxxog/48fcebf022b9dd19d70e92ca18847497 to your computer and use it in GitHub Desktop.
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/sh | |
#curl -L https://tinyurl.com/dd-benchmark-sh | sh | |
echo "dd-benchmark.sh" > disk-benchmark.log.out | |
echo $(date) >> disk-benchmark.log.out | |
echo "-----------------------------" >> disk-benchmark.log.out | |
echo >> disk-benchmark.log.out | |
echo "-----Testing write speed-----" >> disk-benchmark.log.out | |
dd if=/dev/zero bs=1024k of=tstfile count=1024 2>> disk-benchmark.log.out | |
echo >> disk-benchmark.log.out | |
echo "-----Testing read speed-----" >> disk-benchmark.log.out | |
dd if=tstfile bs=1024k of=/dev/null count=1024 2>> disk-benchmark.log.out | |
echo >> disk-benchmark.log.out | |
echo >> disk-benchmark.log.out | |
cat disk-benchmark.log.out | |
rm tstfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment