출처 : http://www.packetinside.com
네트워크 상에서 많이 쓰는 도구중에 하나가 PING 이 아닐까 생각합니다. 네트워크가 안된다면 일단 PING 을 통해서 확인을 시도해 보니까 말이죠. 네트워크에 PING 이 있다면, 디스크에는 IO Latency 를 확인해 볼 수 있는 IOPING 이 있습니다. 세부 정보는 다음 경로에서 확인할 수 있습니다.
https://code.google.com/p/ioping/
다운 받아보면 아주 간단하게 구성되어 있습니다.
# ls
ioping.1 ioping.c ioping.spec Makefile
Makefile 이 이미 존재하므로 바로 make 를 해주면 컴파일이 됩니다.
# make
cc -std=c99 -g -Wall -Wextra -pedantic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DVERSION=\"0.6\" -c -o ioping.o ioping.c
cc -o ioping ioping.o -std=c99 -g -Wall -Wextra -pedantic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -lm
실행해 보면 아래와 같은 도움말을 볼 수 있습니다.
# ./ioping
Usage: ioping [-LCDRq] [-c count] [-w deadline] [-p period] [-i interval]
[-s size] [-S wsize] [-o offset] device|file|directory
ioping -h | -v
-c <count> stop after <count> requests
-w <deadline> stop after <deadline>
-p <period> print raw statistics for every <period> requests
-i <interval> interval between requests (1s)
-s <size> request size (4k)
-S <wsize> working set size (1m)
-o <offset> in file offset
-L use sequential operations (includes -s 256k)
-C use cached I/O
-D use direct I/O
-R seek rate test (same as -q -i 0 -w 3 -S 64m)
-q suppress human-readable output
-h display this message and exit
-v display version and exit
'Linux 이야기. > Ubuntu Rocks~' 카테고리의 다른 글
우분투의 apt-get (Advanced Packaging Tool) 을 이용해 보자. (0) | 2013.04.03 |
---|---|
Ubuntu Static Network 설정과 온라인 패키지 검색 (0) | 2013.04.01 |