Last active
November 9, 2016 17:55
-
-
Save luanlmd/fd7eef89e3e3812c725a to your computer and use it in GitHub Desktop.
Test your drive speed
This file contains 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 | |
printf "\nBlowing up your hard drive... please wait.\n" | |
printf "\nWriting:\n" | |
dd if=/dev/zero of=testfile bs=1024k count=512 | |
printf "\nReading:\n" | |
dd if=testfile of=/dev/null | |
rm testfile | |
#run: curl -sS https://gist.githubusercontent.com/luanlmd/fd7eef89e3e3812c725a/raw/ | /bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment