Skip to content

Instantly share code, notes, and snippets.

@flxxyz
Created May 11, 2023 11:14
Show Gist options
  • Select an option

  • Save flxxyz/5c1e7e4b48fb61337c54baa67ff38ca6 to your computer and use it in GitHub Desktop.

Select an option

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

flxxyz commented May 11, 2023

Copy link
Copy Markdown
Author

真的快
image

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