본문 바로가기

분류 전체보기177

[pcap에러] the capture file appears to be damaged or corrupt [Wireshark] the capture file appears to be damaged or corrupt : pcap file has byte packet bigger than maximum of 에러 발생 시 문제: 아래의 그림처럼 패킷캡처를 실행하였을때, the capture file appears to be damaged 메세지가 발생하면서, 패킷이 이상하게 짤려있다.. ㅡㅡ;; (트래픽 분석 해야하는데 이런 젠장이다.) 원인: 원인은 사실 다양할수가 있다. - 원인1) 패킷이 캡처되었는데 길이가 맞지않는 경우 - 원인2) 파일을 캡처하는 동안 하드용량이 꽉 차게되어 Full이 발생한 후 패킷이 캡처될 경우 (필자는 2번의 경우이다.) 조치: 각 원인 별 조치가 다르다. - 원인 1의 조치) .. 2019. 5. 10.
[Linux, Compile] openssl can't locate find.pl in @inc 컴파일 시 아래와 같은 에러 발생 시 openssl can't locate find.pl in @inc 해결 yum install -y perl-Perl4-CoreLibs.noarch 여기서 찾아서 확인함: http://kefhifi.com/?p=352 openssl 打rpm包出错:Can’t locate find.pl in @INC (@INC contains – B&W + perl util/perlpath.pl /usr/bin/perl Can’t locate find.pl in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/per l5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /u.. 2019. 4. 17.
[Linux,C++] getenv.c: undefined reference secure_getenv [Linux] getenv.c: undefined reference secure_getenv [C++] update glibc to 2.17 for CentOS 6 1. 증상 getenv.c undefined reference secure_getenv getenv.c:(.text+0x1): undefined reference to `secure_getenv' 2. 원인 secure_getenv 함수는 glibc 2.17 이상 시 사용 가능하다. **secure_getenv**() first appeared in glibc 2.17. --> secure_getenv 함수 원문: 3. 조치 필자는 CentOS 6 x86_64를 사용하고 있어서, glibc 2.17 centOS 6 버전을 업데이트한다. 여기서.. 2019. 3. 29.
[Linux] /lib/ld-linux.so.2: bad ELF interpreter: 그런 파일이나 디렉터리가 없습니다 [Linux] /lib/ld-linux.so.2: bad ELF interpreter: 그런 파일이나 디렉터리가 없습니다 리눅스에서 크로스 컴파일을 하거나, static 컴파일을 하다보면 아래와 같이 문제가 발생 되는 경우가 있습니다. /lib/ld-linux.so.2: bad ELF interpreter: 그런 파일이나 디렉터리가 없습니다 그럴때는 lib가 없는 관계로 설치해주면 끝~ yum install ld-linux.so.2 혹시 glibc를 찾아서 설치하자. 2019. 3. 29.
[DB/SQL/Oracle] 기존 테이블 구조 확인 방법 테이블 구조 확인하기show crate table [OLD_TABLE]; ​ 2019. 2. 28.
[C/C++] 소켓에서 컴파일 에러 (invalid conversion from int* to socklen_t*) [C/C++] 소켓에서 컴파일 에러 (invalid conversion from int* to socklen_t*) 증상: 소켓 프로그래밍에서 gcc / g++ 컴파일 시 아래와 같이 에러가 발생될 경우error: invalid conversion from int* to socklen_t*자료형이 안맞는 관계로 그렇게 어렵지 않다. ^^ 해결 방안 1: 자료형 선언을 변경한다. int 대신에 socklen_t로 변경// Define clientLen as socklen_t: ​ socklen_t clientLen; ​ // instead of ​ int clientLen; 해결 방안 2: (socklen_t*) 앞에 붙여 자료형을 맞춘다.int clientLen = 0; ​ // Change client.. 2019. 2. 26.
반응형