1. 网线直连电脑和EAIDK设备
2. 在电脑上下载安装VNC Viewer
3. 在EAIDK设备上配置EAIDK上的网络为192.168.3.100。
网络配置方法:
(1)在EAIDK设备上打开终端
(2)ifconfig查看EAIDK设备的网络,假设网络是eth0
(3)进入目录:/etc/sysconfig/network-scripts/
(4)查看是否有ifcfg-eth0文件,如果没有则创建一个
(5)修改ifcfg-eth0文件里的IPADDR为192.168.3.100。一个样例如下:
DEVICE=eth0
IPADDR=192.168.3.100
NETMASK=255.0.0.0
BOOTPROTO=static
IP6INIT=no
BROADCAST=127.255.255.255
ONBOOT=yes
NAME=loopback
(6)使eth0的配置生效。假设配置文件是ifcfg-eth0:
ifup ifcfg-eth0
4. EAIDK设备一般预装了VNC Server,如果没有则需要自行安装。启动EAIDK上的VNC Server。第一次启动VNCSERVER会提示输入密码,这里分为管理员账户及普通账户,启动方式略有所不同。
管理员:
[root@localhost /]# vncserver
You will require a password to access your desktops.
Password: 123456 #输入vnc 连接密码
Verify: 123456 #确认vnc密码
xauth: creating new authority file /root/.Xauthority
New ‘localhost.localdomain:1 (root)’ desktop is localhost.localdomain:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/localhost.localdomain:1.log
普通用户:
[root@localhost /]#su ceboy #ceboy 是用户名
[ceboy@localhost /]$ vncserver
You will require a password to access your desktops.
Password: 123456 #输入vnc 连接密码
Verify: 123456 #确认vnc密码
xauth: creating new authority file /home/ceboy/.Xauthority
New ‘localhost.localdomain:2 (ceboy)’ desktop is localhost.localdomain:2
Creating default startup script /home/ceboy/.vnc/xstartup Starting applications specified in /home/ceboy/.vnc/xstartup
Log file is /home/ceboy/.vnc/localhost.localdomain:2.log
5. 启动电脑上的VNC Viewer
6. 输入192.168.3.100:1。密码是123456。如果IP、端口、密码自己配置不同,需相应修改。
7. 连接。