Last active
March 23, 2019 09:52
-
-
Save buuhsmead/5ee868013b3919aa3adbee787ab8485d to your computer and use it in GitHub Desktop.
linux disk speed test
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
Disk WRITE speed test | |
sync; dd if=/dev/zero of=tempfile bs=1M count=1024; sync | |
Disk READ speed test | |
dd if=tempfile of=/dev/null bs=1M count=1024 | |
Just use it often on different machines to get a feeling of speed. | |
DISK WRITE READ | |
nvme raid-1 2.3 GB/s 11.1 GB/s | |
laptop flash 1.0 GB/s 2.5 GB/s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment