IT(98)
-
svn command
svn command svn blame [filename] 하면 소스코드 라인.. 별로 누가 commit 했는지 이름과...commit number가 써져있다. 그 commit list 를 보려면, You can use svn log -l5 -v . svn info can be used to get the root URL for the repository where your working copy is connected to. 이런방법도 있고 xml file로 저장해 보려면 해당 svn 폴더로 이동해서 svn log -v --xml > repository_log.xml 이런 방법도 있다...
2017.10.20 -
Ubuntu에서 .run 확장자 실행시키기.
우선 Terminal 을 킵니다. ........ 1. chmod +x [.run file]2. ./[.run file] 하면 됨.................................. 으아ㅓ앙 아아아앙
2017.10.19 -
Ubuntu 에서 Teraterm 기능사용하기.(UART)
굳이 말하자면 Teraterm 기능... 자세하게 말하자면 Communicate with hardware using USB cable for Ubuntu. (communicate with development boards via USB) To do this: - Connect the PC via an USB cable to the USB UART port of the Xilinx development board. - Turn the board on. 위에 To do this 를 하고. Port 가 연결되어있는지 확인을 해야하니.. (근데 이게 Window에서 VMware통해 Ubuntu에서 Port연결이 잘 되었나 확인을 해야하니..) 먼저 VMware에서 Port 를 연결하려면, [VMware 메뉴]에..
2017.10.19 -
How do i know if i'm running 32bit or 64bit linux?
Use the command: uname -m i686 : 32bit x86_64 : 64bit
2017.10.19 -
atom + node.js + c++(32bit)
64bit 는 ... 그냥 다운받으면 되는데 32bit 는 따로 그냥 명령어 써놓는다. install 순서는 node.js -> atom ... 1. node.js install curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt-get install -y nodejs ***** uninstall node.js sudo apt-get remove nodejs sudo apt-get remove npmsudo apt-get update 2. atom install sudo add-apt-repository ppa:webupd8team/atomsudo apt-get updatesudo apt-get install atom ㅇㅇ.. ..
2017.10.19 -
이것저것 용어 다시정리 ㅠㅠ
다 까먹었어... 난 까마귀얌... ㅠㅠ + 새 용어 ㅠㅠ MODEM (Modulator and DEModulator)- 데이터 전송하기위한 변복조..장비.. Module- 독립적으로 설치되고 , 교체, 사용 될 수 있는 구성요소를 말함.- 시스템이나 제품 등에서 개별적인 기능이나 역할을 가진 부품, 요소를 칭함. Topology- Node 접속방식 Hop (= datalink)(datalink -> I/O 확인/관찰하는것) WSN ( Wireless sensor network )orWSAN ( Wireless sensor and actuator networks ) SSM ( Spread Spectrum Modulation - 확산 스펙트럼 변조 )- key가 존재. 얇고 넓게 퍼짐.(거의 Noise정도..
2017.10.17 -
LoRa Class
는 http://1byte.tistory.com/20 여기에 잘 나와있습니다. ..... ㅋ ㅋㅋㅋㅋㅋ 으크크크크킄ㅋ ....ㅠㅠ
2017.10.17 -
나의 .vimrc
우선 .vimrc 를 제일 상단 디렉토리에 만든다. 나의 .vimrc 는 " Syntax Highlightingif has("syntax") syntax onendif set ts=4set sw=4set cindentset smartindentset expandtabset hlsearch 나는 주로 C/C++ 만 쓰는 유저이므로 이런 설정이면 충분..(아직까지는) + 그리고 ctags/ssh/subversion 깔고 + g++도 깔고..+ vim도 깔고.. ㅋㅋ
2017.10.17