Skip to content

Instantly share code, notes, and snippets.

@luanlmd
Last active November 9, 2016 17:55
Show Gist options
  • Save luanlmd/fd7eef89e3e3812c725a to your computer and use it in GitHub Desktop.
Save luanlmd/fd7eef89e3e3812c725a to your computer and use it in GitHub Desktop.
Test your drive speed
#!/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