# /usr/local/php/bin/phpize
Configuring for:
PHP Api Version: 20041225
Zend Module Api No: 20060613
Zend Extension Api No: 220060519 Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable is set correctly and then rerun this script.
autoconf 를 설치 하라고 합니다.
** m4설치
# wget http://ftp.gnu.org/gnu/m4/m4-1.4.9.tar.gz
# tar -zvxf m4-1.4.9.tar.gz
# cd m4-1.4.9/
# ./configure && make && make install
** autoconf 설치
# wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.62.tar.gz
# tar -zvxf autoconf-2.62.tar.gz
# cd autoconf-2.62/
# ./configure && make && make install
해당 패키지들을 설치 후 phpize 실행. 별 코멘트가 없다면 모듈 컴파일 진행 하면 됩니다.
tcpdump flag 필터링 To capture only TCP SYN packets: # tcpdump -i <interface> "tcp[tcpflags] & (tcp-syn) != 0" To capture only TCP ACK packets: # tcpdump -i <interface> "tcp[tcpflags] & (tcp-ack) != 0" To capture only TCP FIN packets: # tcpdump -i <interface> "tcp[tcpflags] & (tcp-fin) != 0" To capture only TCP SYN or ACK packets: # tcpdump -r <interface> "tcp[tcpflags] & (tcp-syn|tcp-ack)...
** FTP 한글명 파일 깨짐 현상 * feat. PROFTP, CONVMV [ 원인 발생 ] 어느 고객의 ftp서버를 관리 하던 도중 하드디스크 용량 부족으로 인해 디스크 교체 작업을 진행 리눅스 서버에 하드 디스크 용량 증설 및 데이터 이전 작업은 정상적으로 처리 되었습니다. 하지만, 이전 후 파일들의 한글명들이 깨지는 현상이 발행.... 원인은 기존 디스크를 도킹장치로 물려서 신규 디스크로 데이터 이전이 었던거 같습니다. ftp를 리눅스 서버로 사용 하고...