본문 바로가기

Running Eclipse on Windows 7 64 bit Yesterday I’ve kicked Vista out of my machine and installed Windows 7 Ultimate 64 bit. Installation was very smooth on my Lenovo T61p, the only driver I had to install manually was the one for the graphic device. Then I came to the point to install all the applications and frameworks that I need for development. Of course I wanted to install the 64 bit versions whereever possible, and so I did f.. 더보기
JFFS2 파일시스템 데이터를 호스트에 마운트하기 jffs2 파일시스템으로 만들어진 데이터 파일이 있을 경우 호스트에서는 $ sudo mount -tjffs2 -oloop ImageFile.jffs2 rootfs 와 같이 할 경우 마운팅이 안되는 경우가 있다. 커널 컴파일을 새로 하면 되긴 하겠지만 귀찮으니깐 modprobe mtdblock modprobe mtdram modprobe jffs2 dd if=YourImageFile of=/dev/mtdblock/0 mount /dev/mtdblock/0 /mnt/disk -t jffs2 이렇게 마운팅이 가능하다. dd로 복사를 하는 형태니깐 수정을 가했다면 새로 jffs2 파일 시스템으로 만들어 줘야 한다. 참조 url : http://wep-linux.berlios.de/mtddevices.html 출.. 더보기
emacs로 원격 파일 편집하기 emacs로 원격 파일 편집하기 (editing remote file with emacs) emacs 2008/03/23 23:26 by manywaypark tramp를 쓰면 간단히 해결된다. TRAMP는 "Transparent Remote (file) Access, Multiple Protocol"의 줄임말이다. .emacs에 다음 내용을 추가한다. (require 'tramp) (setq tramp-default-method "scp") 파일을 열때 (C-x C-f) 입력형식: /host:path/to/file 원격 파일을 편집하는 도중에 M-x shell을 해보라. 원격지의 shell이 뜬다. 이게 아마도 file을 괄호친 이유일까? 언제봐도 emacs는 간결하고 아름답다. 참고: Tramp: R.. 더보기