리눅스 분류
webalizer 실행시 libgd.so.2 오류 발생
작성자 정보
- 베스트회장 작성
- 작성일
컨텐츠 정보
- 1,625 조회
- 1 댓글
- 0 추천
- 목록
본문
제가 바로 대답을 하게 되었네요..
http://www.superuser.co.kr/home/superuserboard/view.html?id=77&code=weblog&start=&position=
저와 같은 에러..
I get 'libgd not found' errors when compiling?
The Webalizer uses the gd graphics library written by Tom Boutell for producing it's inline graphics. If you don't have this library or have it installed correctly, you will get this error. The Webalizer expects this library to be in the standard library path (ie: /usr/lib), so if you have it someplace else, you need to add an '-L[path]' flag to CFLAGS in the Makefile. If you don't have the library, get it at www.boutell.com/gd/.
이 내용보니..
/usr/lib에서 모듈을 찾는데.. gd 모듈은 /usr/local/lib에 있더군요..
그래서
/usr/local/lib 에 있는 libgd 관련파일을 /usr/lib에 복사하고 하니까 바로 되네요!!
모두 좋은하루 보내세요.
http://www.superuser.co.kr/home/superuserboard/view.html?id=77&code=weblog&start=&position=
저와 같은 에러..
I get 'libgd not found' errors when compiling?
The Webalizer uses the gd graphics library written by Tom Boutell for producing it's inline graphics. If you don't have this library or have it installed correctly, you will get this error. The Webalizer expects this library to be in the standard library path (ie: /usr/lib), so if you have it someplace else, you need to add an '-L[path]' flag to CFLAGS in the Makefile. If you don't have the library, get it at www.boutell.com/gd/.
이 내용보니..
/usr/lib에서 모듈을 찾는데.. gd 모듈은 /usr/local/lib에 있더군요..
그래서
/usr/local/lib 에 있는 libgd 관련파일을 /usr/lib에 복사하고 하니까 바로 되네요!!
모두 좋은하루 보내세요.
관련자료
-
이전
-
다음
댓글 1
이선주님의 댓글
- 이선주
- 작성일
아 넘 고맙습니다. 저도 님처럼 해서 바로 해결했습니다^^