如果之前没有安装X window的,先配置好YUM源,运行以下命令
[root@los520 ~]# yum install xorg* gnome*
windows下用vncviewer来连接linux
下载地址:在下面下载链接
我把linux和windows之间的vnc配置过程写给你看吧
1.在linux下安装vnc
[root@los520 ~]# rpm -ivh vnc-4.1.2-14.el5_5.4
[root@los520 ~]# rpm -ivh vnc-server-4.1.2-14.el5_5.4
或者配置有YUM的话直接
[root@los520 ~]# yum install vnc
[root@los520 ~]#yum install vnc-server
2.写入:
[root@los520 ~]# vncserver
New 'los520:6 (root)' desktop is los520:6
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/los520:6.log
3.编辑文件:
[root@los520 ~]# vi /root/.vnc/xstsrtup#unset SESSION_MANAGER#exec /etc/X11/xinit/xinitrc将上面两行的#号去掉,使其生效
注释twm & 添加一行gnome - session &
保存退出
4.重启VNC[root@los520 ~]# service vncserver restart
5.Kill掉以前的连接号:
[root@los520 ~]# vncserver -kill linux.com:连接号 (注:连接号第一个为1,第二个为2)
[root@los520 ~]# vncserver -kill :6
6启动vnc连接号:
[root@los520 ~]# vncserver这样将会得到一个连接号
7.在windows下安装安装vnc viewer
8.运行vnc viewer,输入ip+连接号 例如:192.168.0.11:6 我这里显示的连接号是6,表示1-6号都可以登陆
9.实现开机自动启动
[root@los520 ~]#vim /etc/sysconfig/vncserver
在后面添加两行
VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
VNCSERVERS="1:root"
保存退出
[root@los520 ~]#chkconfig --level 35 vncserver on
[root@los520 ~]#chkconfig --list vncserver
重启即可
从浏览器远程控制
启动VNC Server 后直接打开浏览器,在地址栏中输入被控端的网址或IP地址,并在网址后加上“:5800+显示编号”的端口号即可操控该计算机。
例如:http://192.168.01.:5801 (如果显示编号为1,一般第一次设置的显示编号都是1,就用5800+1=5801。)