Error
HP 장비에서 aCC 로 컴파일을 하던도중 아래의 에러가 발생했다. “/opt/aCC/include_std/utility”, line 99: error #2070: incomplete type is not allowed first_type first; ^ detected during: instantiation of class “std::pair<_TypeT, _TypeU> [with _TypeT=const std::string, _TypeU=char *]” at line 97 of “/opt/aCC/include_std/rw/tree” instantiation of class “__rw::__rw_rb_tree_node<_Alloc, _Val, _Key, _KeyOf> [with _Alloc=std::allocator<std::pair<const std::string, char *>>, _Val=std::pair<const std::string, char *>, [...]
워드 프레스를 사용하던 중 아래와 같은 에러를 발견하였다. WordPress Error – Fatal error: Cannot redeclare class Facebook in /wp-content/plugins/simple-facebook-connect/facebook-platform/facebook.php 관리자 계정으로 로그인 하여 글을 수정 하려고 했는데 위와 같은 에러가 발생하면서 로그인이 안되는 현상이었다. 에러 메시지의 원인은 메시지 내용에 나타나있었다. Facebook 관련된 플러그인에서 오류가 발생하여 로그인을 할 수 없다는 내용이다. 오류가 발생한 이유는 중복 선언. [...]
우분투에서 Tora를 설치란 간단한 일이다. 하지만 Tora에 Oracle 접속기를 덧붙이기란 그리 쉽지 않다. Tora에 오라클 접속기를 덧붙여서 설치하기는 아래의 링크를 참조하기 바란다. https://help.ubuntu.com/community/HowToBuildToraWithOracle 필자도 어느정도는 맞아떨어졌으나, 설치도중 역시나 이상한 에러가 발생하였다. dpkg-shlibdeps: error: no dependency information found for /oracle/11g/lib/libclntsh.so.11.1 (used by debian/tora/usr/bin/tora).dh_shlibdeps: dpkg-shlibdeps -Tdebian/tora.substvars debian/tora/usr/bin/tora returned exit code 2make: *** [binary-predeb-IMPL/tora] 오류 9 이게 무슨 [...]
Continue reading about Installing tora with Oracle support in the Ubuntu 10.04
SYBASE 에서 다음의 init 스크립트를 사용중 stop시 locale 에러가 나타나는 것을 확인했다. jonathan@jonathan-laptop:/opt/sybase/ASE-15_0/install$ cat /etc/init.d/sybase #!/bin/sh## Startup script for Sybase ASE# # description: Sybase Adaptive Server Enterprise# is a SQL database server.# processname: dataserver SYBASE=/opt/sybaseSERVER=JONATHANLAPTOPLANG=ko_KR.euckrexport LANG # Source environment variables.. $SYBASE/SYBASE.sh # Find the name of the scriptNAME=`basename $0` # For SELinux we need to [...]
Continue reading about SYBASE – init Script and locale error
컴파일중 이상한 오류를 발견했다.. /usr/local/arm/arm-linux/sys-include/asm/fcntl.h:74: parse error before “pid_t”/usr/local/arm/arm-linux/sys-include/asm/fcntl.h:80: parse error before “loff_t”/usr/local/arm/arm-linux/sys-include/asm/fcntl.h:82: parse error before “l_pid” 단순한 프로그램이었는데…이상했다. 이렇게도 바꾸고 저렇게도 바꾸어서 원인을 찾았는데… 답은 헤더 파일의 입력 순서에 있었다. 원래는.. #include <stdlib.h> #include <unistd.h>#include <sys/mman.h>#include <asm/fcntl.h>#include <stdio.h> 였는데… 이를 다음과 같이 바꾸니 문제가 해결되었다.. #include <stdlib.h>#include <unistd.h>#include <sys/mman.h>#include <asm/fcntl.h>#include <stdio.h> 개운하지가 않다. 문제는 [...]
우분투에서 Amarok 사용시 발생한 에러이다. Music Brainz를 사용하려 했더니 다음과 같은 에러가 발생했다. “Fingerprinting of .mp3 files is not supported” 이는 특정 패키지를 설치하지 않아서 생기는 에러이다. 콘솔창에 다음과 같이 명령어를 입력하면 문제는 해결된다. : ) sudo apt-get install libtunepimp5-mp3 이제 Amarok를 재시작한 후, Music Braiz를 사용해보자. 아주 잘 될것이다. : ) 관련 링크 : http://www.howtogeek.com/howto/ubuntu/fix-amarok-error-fingerprinting-of-mp3-files-is-not-supported/
Continue reading about Ubuntu Amarok error “Fingerprinting of .mp3 files is not supported”
g++ 컴파일 중 다음과 같은 에러 메시지를 확인했다. error: multiple types in one declaration 위와 같은 메시지가 발생하는 이유는 간단하다 클래스나 구조체의 마지막에 세미콜론을 잊어 버려서 생기는 에러이다. 생각보다 간단하다. 하지만 이 세미콜론을 잊어버린 곳 찾기가 가끔은 쉽지 않을 경우가 있다. (…나처럼)
Continue reading about error: multiple types in one declaration


최근 답글