쓰기 성능 측정
dd if=/dev/zero bs=1M count=4096 of=test_file oflag=direct
bs=1M / 단위
count=4096 / 횟수
위 설정으로 1MB*4096 = 4GB 쓰기 진행
읽기 성능 측정
dd if=test_file of=/dev/null bs=1024
*쓰기 성능 측정을 먼저 하여 생성된 test_file을 읽으면서 성능 측정
dd if=/dev/zero bs=1M count=4096 of=test_file oflag=direct
bs=1M / 단위
count=4096 / 횟수
위 설정으로 1MB*4096 = 4GB 쓰기 진행
dd if=test_file of=/dev/null bs=1024
*쓰기 성능 측정을 먼저 하여 생성된 test_file을 읽으면서 성능 측정