Linux73 GetTickCount on Linux Source code #ifdef _GNUC_DWORD GetTickCount(void){ struct timespec tp;struct timeval tv; (void)gettimeofday(&tv, 0);tp.tv_sec = tv.tv_sec;tp.tv_nsec = tv.tv_usec*1000; DWORD dwCount = tp.tv_sec * 1000 + tp.tv_nsec/1000000; // Convert to milli seconds return dwCount;} 2015. 1. 2. 64비트, 32비트 자료형 정리 char : 1byteshort : 2byteint : 4bytelong : 4byte / 8byte http://foxlime.tistory.com/115 2014. 10. 29. scp 사용법 http://dinggur.tistory.com/94 scp -P 22 /root/file1 sslab@192.168.1.75:/file/path scp -P 22 root@ipaddr:/file/path ~/receive/path 2014. 10. 20. ubuntu 언어 설정 http://ismydream.tistory.com/12 2014. 10. 20. 우분투 콘솔모드 / x-windows모드 진입 우분투에서는(로컬에서) 여러개의 가상 세션을 지원한다. 총 F1에서 F7까지 7개의 세션을 지원하는데 부팅 시에는 기본적으로 F7세션을 이용하여 부팅한다. 각 모드의 변환은 컨트롤+알트+평션1~7로 가능하다. 따라서 GUI 부팅 후 콘솔모드로 접근하기 위해서는 C-M-F1~F6을 누르면 된다. 간단하게 정리하면 아래와 같다. 콘솔모드 ctrl + alt + F1 x-windows ctrl + alt + F7 2014. 10. 20. 크로스 컴파일러 라이브러리 주참조 경로 http://stackoverflow.com/questions/15291985/configuring-cross-compiler-to-use-custom-library-search-path arm-linux-gnueabihf-gcc -print-search-dirs | grep libraries | sed 's/:/\n/g' 2014. 10. 19. 이전 1 ··· 7 8 9 10 11 12 13 다음