Created
May 11, 2023 11:14
-
-
Save flxxyz/5c1e7e4b48fb61337c54baa67ff38ca6 to your computer and use it in GitHub Desktop.
简单的linux测试读写
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
写测试 | |
``` | |
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 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
真的快
