반응형
dd
디스크의 읽기/쓰기 속도를 측정.
옵션
- if : 입력파일, of : 출력파일, count : 반복횟수, bs : 블럭 사이즈(Bytes, 한번에 읽고 쓸 최대 바이트 크기)
쓰기.
$ dd if=/dev/zero of=testout count=1000 bs=1024k
1000+0 records in
1000+0 records out
1048576000 bytes (1.0 GB) copied, 1.49477 s, 701 MB/s
testout에 0x00값으로 1024kb를 1000번 반복. 1GB 파일생성.
읽기.
$ dd if=testout of=/dev/zero bs=1024
1024000+0 records in
1024000+0 records out
1048576000 bytes (1.0 GB) copied, 7.69626 s, 136 MB/s
testout 파일을 1024 바이트로 읽었을 때 속도는 136MB/s
반응형
'OS > Linux' 카테고리의 다른 글
방화벽 설정 (0) | 2021.06.29 |
---|---|
CentOS 7 에서 PHP7.4 설치하기. (1) | 2021.06.28 |
프로세스 thread 갯수 확인 (0) | 2019.10.31 |
rpm 사용법 (0) | 2019.05.09 |
[링크] 파일 권한 (0) | 2019.05.09 |