Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- CentOS
- 라라벨
- redmine
- BIND
- Subversion
- Laravel
- tw_cli
- VirtualBox
- ubuntu
- Network
- MySQL
- MOUNT
- php
- httpd.conf
- vsftpd
- Linux
- APM
- AIR
- xampp
- Trac
- GlusterFS
- Fedora
- ftp
- php5
- nateon
- JavaScript
- exception
- VMware
- 명령어
- fstab
Archives
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
[CentOS6] 리눅스 명령어 hdparm, dd (디스크 Read/Write 성능테스트) 본문
RAID 및 디스크 Read/Write 성능 테스트
1. READ 테스트
# hdparm -tT /dev/sda1
/dev/sda1:
Timing cached reads: 24456 MB in 1.99 seconds = 12280.68 MB/sec
Timing buffered disk reads: 3712 MB in 3.00 seconds = 1237.21 MB/sec
# hdparm -tT /dev/sda2
/dev/sda2:
Timing cached reads: 24666 MB in 1.99 seconds = 12387.11 MB/sec
Timing buffered disk reads: 3158 MB in 3.00 seconds = 1052.08 MB/sec
2. WRITE 테스트
/data1 1MB 1024회 연속쓰기 테스트
# dd if=/dev/zero of=/data1/file bs=1M count=1024
1024+0 records in
1024+0 records out
1024000000 bytes (1.0 GB) copied, 0.541215 s, 1.9 GB/s
/data1 1GB 5회 연속쓰기 테스트
# dd if=/dev/zero of=/data1/file bs=1G count=5
5+0 records in
5+0 records out
5368709120 bytes (5.4 GB) copied, 5.17552 s, 1.0 GB/s
/data2 1MB 1024회 연속쓰기 테스트
# dd if=/dev/zero of=/data2/file bs=1M count=1024
1024+0 records in
1024+0 records out
1024000000 bytes (1.0 GB) copied, 0.537927 s, 1.9 GB/s
/data2 1GB 5회 연속쓰기 테스트
# dd if=/dev/zero of=/data2/file bs=1G count=5
5+0 records in
5+0 records out
5368709120 bytes (5.4 GB) copied, 5.83014 s, 921 MB/s
'IT관심분야 > Linux' 카테고리의 다른 글
Error: Package: php-pecl-imagick (yum update error) (0) | 2018.11.22 |
---|---|
[CentOS6] Java SDK UPDATE(자바 SDK 업데이트) (0) | 2018.11.16 |
[CentOS] 리눅스 명령어 parted (2TB 이상 파티션 설정) (0) | 2018.10.25 |
[CentOS] Subversion 1.9.x 설치/업데이트 (0) | 2018.07.05 |
kipmi0 cpu 100% 점유해결 (0) | 2018.05.15 |
Comments