Error

pchero on November 3rd, 2010

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

pchero on March 12th, 2008

 컴파일중 이상한 오류를 발견했다.. /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>  개운하지가 않다.  문제는 […]

Continue reading about 알수없는 에러….

 우분투에서 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”

pchero on February 14th, 2008

 g++ 컴파일 중 다음과 같은 에러 메시지를 확인했다.  error: multiple types in one declaration  위와 같은 메시지가 발생하는 이유는 간단하다  클래스나 구조체의 마지막에 세미콜론을 잊어 버려서 생기는 에러이다. 생각보다 간단하다.  하지만 이 세미콜론을 잊어버린 곳 찾기가 가끔은 쉽지 않을 경우가 있다. (…나처럼)

Continue reading about error: multiple types in one declaration