[Tip 공유] 가상드라이브(virtual drive) 사용 방법 안녕하세요~ Dear All, 이미 알고 계시겠으나 혹시 모르는 분들을 위해서 공유 드립니다. You may know it already but I share one tip below. P4의 디렉토리 depth가 깊을 경우, Eclipse 혹은 Android studio 로 빌드할 때 파일을 찾을 수 없는 등 오류가 발생하는 경우가 있습니다. Sometimes, files’ path length is too long.. TIP 2016.02.03
import error: when importing parcelable class in aidl file. http://www.androidpub.com/356885 TIP 2015.03.05
Debugging knowhow in visual studio If you face access violation during debugging operation in visual studio, you can track the code. => Debug -> "Break All" click Let me tell you another tip. Before starting your application, check all box at Debug->Exceptions. TIP 2013.12.31
How to open file.zip.001 type file? http://answers.yahoo.com/question/index?qid=20071021132443AAZ4NJR At command promptC:\>copy /B file.zip.001 + file.zip.002 + file.zip.003 file.zip TIP 2013.05.01
Top command usage (http://legendfinger.com/356) # top 이와 같이 아무런 옵션이 없는 경우엔 CPU 사용률 순으로 정렬됨 # top -s 실행 후 추가 명령어가 가능함 # top -d 2 2 초간격으로 정보 갱신 ex)=================================================# top -s 5초 간격으로(기본값) 갱신된 정보를 볼수 있다. 이때는 기본값으로 CPU 사용률 순으로 정렬.. TIP 2010.06.11
Linux / Unix Command: nm http://linux.about.com/library/cmd/blcmdl1_nm.htm nm - list symbols from object files TIP 2010.01.19
빈칸(공백)이 들어간 경로 문제 http://blog.naver.com/boy0?Redirect=Log&logNo=100042425117 간혹 makefile 에 path를 넣어야 하는데 경로에 공백이 들어가는 경우가 발생한다. ex) ${ROOT_PATH}/../../../C:/Program Files/Rational/TestRealTime/targets/carm_rvds31/lib 이 경우에 아래와 같이 문제를 해결할 수 있는 듯 하다. ex) ${ROOT_PATH}/../../../C:/progra~1/Rational/TestRealTime/targets/ca.. TIP 2010.01.19
ubuntu network 설정 GUI 환경을 찾지 못하여 이리저리 헤매다가 해결되었다. http://www.yongbok.com/blog/entry/Debain-%B3%D7%C6%AE%BF%F6%C5%A9-%BC%B3%C1%A4 1. ip 설정 >cd /etc/network/interface >vi interfaces ex) auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.0.1 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 dns-names.. TIP 2009.12.08