728x90
# ./something
-bash: ./something: /lib/ld-linux.so.2: bad ELF interpreter: 그런 파일이나 디렉토리가 없음
# file somethingsomething: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), stripped
-> 32bit 머신에서 컴파일
# yum install glibc.i686
# ldd something
linux-gate.so.1 => (0xffffe000)
libpthread.so.0 => /home/xxx/lib/libpthread.so.0 (0x00cbf000)
libc.so.6 => /home/xxx/lib/libc.so.6 (0x00b77000)
/lib/ld-linux.so.2 (0xf77e0000)
참고 :
http://stackoverflow.com/questions/8328250/centos-64-bit-bad-elf-interpreter
참고 :
http://stackoverflow.com/questions/8328250/centos-64-bit-bad-elf-interpreter
'Engineering > Etc' 카테고리의 다른 글
WORM(write once read many) (0) | 2012.02.02 |
---|---|
Windows XP 에서 필요없는 하위 디렉토리/파일 삭제 (0) | 2012.01.26 |
Head First HTML with CSS & XHTML (0) | 2011.11.30 |
CD/DVD 굽기 프로그램(CD/DVD Burning 무료 프로그램들 (0) | 2011.09.17 |
unix(linux) 에서 date 를 unixtime 형태로 변환 (0) | 2011.07.27 |