본문 바로가기

iperf for windows Windows용 (cmd line 기반) iperf 는 아래 위치에서 Download 받으면 됩니다. http://code.google.com/p/iperf-cygwin/
iperf "No Route to Host" error 발생시 iperf로 테스트시 "No Route to Host" error 발생시 Host 쪽에서 아래와 같이 조치하여 준다. /sbin/iptables -L -n /etc/init.d/iptables save /etc/init.d/iptables stop
리눅스 shell 디렉토리 표시 색상 바꾸기 간혹 리눅스 쉘에서 디렉토리가 파란색으로 표시되어 검정바탕상에서 잘 보이지 않는 경우 아래와 같이 색상을 변경해준다. $ cp /etc/DIR_COLORS ~/.dircolors $ vi .dircolors 여기서 DIR 부분을 검색하여 색상 코드를 변경한다. 34 이 색상 코드 값이며, 아래 색상 목록에서 원하는 값으로 변경한다. DIR 01;34 # directory 0 to restore default color 1 for brighter colors 4 for underlined text 5 for flashing text 30 for black foreground 31 for red foreground 32 for green foreground 33 for yellow (or brown) for..
windows adb shell ls 명령 이용시 windows adb shell 에서 ls 명령을 주면 아래와 같이 보일 때, [1;34msys[0m [1;34msystem[0m adb shell 진입 후 아래와 같이 alias 지정해 주면 보이지 않습니다. alias ls='ls --color=never'
linux ssh 접속하기 ssh id@IP (or hostname) ssh -l id IP (or hostname)
도스 cmd 창에서 특정 위치 및 파일에서 문자열 검색하기 리눅스의 grep 명령어 처럼 도스에서도 findstr 를 이용하여 아래와 같이 검색이 가능하다. 예제) 현 디렉토리 및 하부 디렉토리에서 "hello"가 들어간 파일 경로 및 line 을 출력한다. findstr /isn "hello" .\*.c 리눅스의 grep을 이용하여 같은 동작은 아래와 같이 가능하다. grep -nR --include=*.c "hello" .
Sigaction 예제 SIGINT signal 받았을 때 sigaction()을 이용하여 loop 종료시키고 빠져나오는 예제 #include #include #include static int exit=0; void sig_handler() { exit = 1; } void main() { struct sigaction act; memset(&act, 0, sizeof(act)); act.sa_handler = sig_handler; sigaction(SIGINT, &act, 0); while(1) { sleep(1); printf("loop\n"); if(exit) { printf("exit!\n"); break; } } }
tcsh 관련 - 현재 shell 확인 $ echo $SHELL /bin/tcsh - 기존 path에 새로운 path(/aaa/bbb) 추가 vi .cshrc set path = ($path /aaa/bbb) - shell 변경 +설치된 shell 확인 cat /etc/shells /bin/sh /bin/bash /bin/tcsh +bash로 변경 (userid의 shell을 변경) chsh -s /bin/bash userid