본문 바로가기

Error3

리눅스 에러 해결 목록 linux error configure: error: no acceptable C compiler found in $PATHyum -y install gcc configure: error: C++ preprocessor "/lib/cpp" fails sanity checkyum -y install gcc-c++ checking for ssl libraries configure error cannot find ssl librariesyum install openssl-devel install the TCL dev package yum -y install tcl-devel Failed to find libxml2yum -y install libxml2 no xml parser was found expat or libxml 2 x.. 2014. 4. 15.
[ERROR] InnoDB: Unable to lock ./ibdata1, error: 11 에러 나올때 대처방법 mysql 를 재시작하는데 # service mysqld start Timeout error occurred trying to start MySQL Daemon. Starting MySQL: [FAILED] 라는 메시지가 나오면서 재시작이 안되는 문제 발견 mysql 로그를 살펴보니 # tail -f mysqld.log InnoDB: Check that you do not already have another mysqld process InnoDB: using the same InnoDB data or log files. InnoDB: Unable to lock ./ibdata1, error: 11 라는 메시지 뜸. 구글링을 해보니 디비 관련 파일에 문제가 생겼다는 거 같음 문제처리방법 # mv ibda.. 2014. 1. 14.
unresolved external symbol이 생기는 이유 http://blog.naver.com/sainthkh/140074257990 프로그래밍 하다가 제일 난감한 경우 중에 하나가 unresolved external symbol이라는 메세지를 만났을 때입니다. 다른 에러들은 F4나 더블 클릭으로 해당 위치로 이동을 해 주는 친절함을 보여주는 반면, 도대체 이 에러는 찾아 주지도 않는 매우 불성실함을 보이기 때문입니다. 그러면 이 메세지가 어떤 때 등장하는지 알아보겠습니다. 이 메세지가 생기는 근본적인 이유는 선언을 하고 정의를 하지 않았기 때문입니다. 세가지 경우를 보겠습니다. 1. 전역 함수 선언을 하고 정의하지 않은 경우. foo.h--------------------------------------------------------------------.. 2013. 5. 14.