Network

1. USB LAN 드라이버 설정하기 (PC)
    기존의 PCIe 네트워크 어댑터- 공유 설정

2. LAN 케이블 연결

3. DHCP 자동 설정하기
    $ vi /etc/network/interfaces
auto lo
iface lo inet loopback
//수정
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
    $ /etc/inid/networking restart

4. 동적 할당된 ip 주소 확인
    $ ifconfig
eth0 …
         inet addr:192.168.137.166 

5. sshd 설치
$ apt-get install openssh-server
$ service ssh restart
$ service ssh status
ssh start/running, process 634
$ ps -ef | grep sshd        // 서버 확인

6. teraterm에서 ssh로 DE1-SoC에 접속
    user/pw -linaro

7. vncserver 설치
$ apt-get install gnome-core
$ apt-get install tightvncserver
$ vncserver
    password: <설정>
    verify: <설정>

8. xstartup파일 수정
$ cp ~/.vnc/xstartup ~/.vnc/xstartup.old
$ vi ~/.vnc/xstartup
#!/bin/sh
export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
gnome-panel &
gnome-settings-daemon &
metacity &
nautilus &
gnome-terminal &
$ vncserver -geometry 1024x768

9. vnc viewer 접속
tightVCNviewer 설치 후 접속
192.168.137.166:2 or 192.168.137.166::5902