linux远程桌面----VNCServer与rdesktop
windows远程桌面到linux,需要在linux上安装vncserver,并开启vnc服务,同时需要在windows下使用vnc-viewer访问Linux。vncserver同时支持linux远程桌面到linux。
linux远程桌面到windows,需要在linux上安装rdesktop,同时开启windows的远程桌面访问。
下面分别介绍,以windows7 x64和centOS6.5 x64为例。
一。windows远程桌面到linux,linux远程桌面到linux
1.安装vncserver
yum install tigervnc-server tigervnc
2.配置登录用户
vi /etc/sysconfig/vncservers
在最下面添加如下内容:
VNCSERVERS="1:root 2:test01"
VNCSERVERARGS[1]="-geometry 1024x768 -alwaysshared -depth 24"
VNCSERVERARGS[2]="-geometry 1600x900 -alwaysshared -depth 24"
#说明:
VNCSERVERS:声明需要登录vncserver的用户,多个用户之间加要上空格,并为每个用户设置数字代号
VNCSERVERARGS[1]:[1]中的数字要与VNCSERVERS中声明的用户数字代号对应。
-geometry:打开桌面系统时的桌面分辨率,注意1024x768,中间不是*号,而是字母x。
-alwaysshared:表示同一个显示端口允许多用户同时登录。
-depth:色深,参数有8、16、24、32。
3.设置vnc用户密码
登录vnc的密码需要单独设置,但是必须在当前用户下,或者通过su - 用户名 后执行vncpasswd
4.启动vncserver
service vncserver restart
如果打印如下信息,表示启动成:
关闭 VNC 服务器:1:root 2:test01 [确定] 正在启动 VNC 服务器:1:root New 'localhost:1 (root)' desktop is localhost:1 Starting applications specified in /root/.vnc/xstartup Log file is /root/.vnc/localhost:1.log 2:test01 New 'localhost:2 (test01)' desktop is localhost:2 Starting applications specified in /home/test01/.vnc/xstartup Log file is /home/test01/.vnc/localhost:2.log [确定]
此时查看vnc进程如下:
ps -ef | grep vnc
root 14120 1 0 10:29 pts/0 00:00:00 /usr/bin/Xvnc :1 -desktop localhost:1 (root) -auth /root/.Xauthority -geometry 1024x768 -depth 24 -rfbwait 30000 -rfbauth /root/.vnc/passwd -rfbport 5901 -fp catalogue:/etc/X11/fontpath.d -pn -alwaysshared root 14145 14125 0 10:29 pts/0 00:00:00 vncconfig -iconic test01 14160 1 0 10:29 ? 00:00:00 /usr/bin/Xvnc :2 -desktop localhost:2 (test01) -auth /home/test01/.Xauthority -geometry 1600x900 -depth 24 -rfbwait 30000 -rfbauth /home/test01/.vnc/passwd -rfbport 5902 -fp catalogue:/etc/X11/fontpath.d -pn -alwaysshared test01 14527 14524 0 10:29 ? 00:00:00 vncconfig -iconic
5.关闭vncserver
service vncserver stop
关闭 VNC 服务器:1:root 2:test01 [确定]
也可以单独关闭某一个用户的登录
vncserver -kill :1
6.设置vncserver随系统自启动
chkconfig vncserver on
7.开启vncserver的端口
没设置一个vnc用户,都需要开通一个端口,可以使用如下命令查看当前vncserver占用的端口:
netstat -tunpl | grep vnc
tcp 0 0 0.0.0.0:5901 0.0.0.0:* LISTEN 15914/Xvnc tcp 0 0 0.0.0.0:5902 0.0.0.0:* LISTEN 15987/Xvnc tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN 15914/Xvnc tcp 0 0 0.0.0.0:6002 0.0.0.0:* LISTEN 15987/Xvnc tcp 0 0 :::6001 :::* LISTEN 15914/Xvnc tcp 0 0 :::6002 :::* LISTEN 15987/Xvnc
vi /etc/sysconfig/iptables
# vncserver -A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT
service iptables restart
8.VNC-Viewer登录测试
linux:
在桌面上打开:应用程序----Internet----TigerVNC Viewer
windows7:
下载vnc-viewer: http://www.realvnc.com/download/viewer/
运行vnc-viewer:VNC Server : vncserverIP:数字代号 #以root用户登录 ,比如:192.168.159.150:1
9.安装时遇到的问题
1)由于某种原因意外关闭了vncserver后,无法重启,使用 service vncserver status 查看提示如下信息
Xvnc 已死,但是 subsys 被锁
解决:rm -rf /var/lock/subsys/Xvnc
2)启动vncserver时报如下错误
(EE) Cannot establish any listening sockets - Make sure an X server isn't already running(EE)
解决:说明当前用户已经在主机登录了桌面系统,注销掉即可
二。linux远程桌面到windows
1.windows开启远程桌面
2.linux上安装rdesktop
yum install rdesktop
3.测试
rdesktop:支持命令行的方式开启远程桌面,必须在linux本机操作。
rdesktop 192.168.65.150 #打开默认的窗口 rdesktop -f -a 32 192.168.65.150 #-f全屏 -a色深 rdesktop -g 1024x768 -a 32 192.168.65.150 #-g指定分辨率
也可以通过桌面程序打开远程桌面,需要安装tsclient:
yum install tsclient
通过桌面登录系统后,在桌面上打开:应用程序----Internet----终端服务器客户机。支持多种远程连接,包含vnc。
参考资料:
http://www.ha97.com/4634.html
http://www.360doc.com/content/13/0618/09/1106320_293652417.shtml