728x90

문제 : eclipse실행 시 Failed to create the Java Virtual Machine

 

해결 : eclipse.ini 수정

-vm 및  javaw.exe 경로 추가

 

256M을 128M으로 수정(2군데) : 256으로 했더니 start up 할때 멈추는 증상이 있었다.

 

 

728x90
728x90

find 이후 옵션으로 명령어를 실행하기

 

# find /work/dir -name "*.tmp" -exec rm -rf {} \;

 

같은 원리로 복사나 이동이 가능

 

# find /work/dir -name "*.tmp" -exec cp {} /des/dir \;

 

# find /work/dir -name "*.tmp" -exec mv {} /des/dir \;

 

 

 

728x90
728x90

Alsa util 설치 중 만난 오류

./configure 이후


checking for stdint.h... yes

checking for unistd.h... yes

checking panel.h usability... no

checking panel.h presence... no

checking for panel.h... no

configure: error: required curses helper header not found


solution:

apt-get install libncursesw5-dev gettext xmlto

728x90
728x90

i686(64bit)에서 

/usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory 

와 같은 오류가 발생할 때


solution:

apt-get install gcc-multilib



728x90

+ Recent posts