본문 바로가기
삶을 풍요롭게 하는 어플리케이션/OS

[Linux] /lib/ld-linux.so.2: bad ELF interpreter: 그런 파일이나 디렉터리가 없습니다

by Write the Story of Your Life 2014. 12. 16.

[Problem]

I met the error while installing the Cognos solution.

$ ./issetup
bash: ./issetup: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory


[Cause]

/lib/ld-linux.so.2 does not exist on the computer. The Cognos installer requires this library to work correctly.

This file is a dynamic linker/loader. Why do we need this file? => (Link)


[Solution]

yum -y install glibc.i686


--------------------------------------------------------------------------------


[한글 설명]

Cognos BI 설치중에 아래처럼 에러가 날때,


$ ./issetup
bash: ./issetup: /lib/ld-linux.so.2: bad ELF interpreter: 그런 파일이나 디렉터리가 없습니다

또는 영문 메세지는

bash: ./issetup: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory


솔루션 설치를 하는 중에 공유 라이브러리 호출을 위하여 해당 라이브러리를 설치해야 합니다.

설치 명령어는 다음과 같습니다.

yum -y install glibc.i686

반응형