Skip to content

Instantly share code, notes, and snippets.

@flxxyz
Created May 11, 2023 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flxxyz/5c1e7e4b48fb61337c54baa67ff38ca6 to your computer and use it in GitHub Desktop.
Save flxxyz/5c1e7e4b48fb61337c54baa67ff38ca6 to your computer and use it in GitHub Desktop.
简单的linux测试读写
写测试
```
time dd if=/dev/zero of=/tmp/test bs=8k count=1000000
```
读测试
```
time dd if=/tmp/test of=/dev/null bs=8k
```
读写测试
```
time dd if=/tmp/test of=/var/test bs=64k
```
@flxxyz
Copy link
Author

flxxyz commented May 11, 2023

真的快
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment