二、安装vnc服务端
1. 安装vnc服务端;
[[email protected] ~] # yum -y install vnc *vnc-server*
|
2. 修改vnc主配置文件;
[[email protected] ~] # vim /etc/sysconfig/vncservers
|
3. 设置VNCserver远程连接密码;
[[email protected] ~] # vncserver
|
4. 修改vnc桌面配置文件. vnc连接密码设置完后会在root目录下生产一个.vnc目录;
[[email protected] ~] # vim /root/.vnc/xstartup
|
5. 关闭iptables/selinux防火墙;
[[email protected] ~] # iptables -F
|
6. 为用户设置vnc连接密码;
[[email protected] ~] # su - user2
|
7. 重启vnc服务端,让配置文件生效;
[[email protected] ~] #service vncserver restart
|
8. 停止vnc窗口;
[[email protected] ~] # vncserver -kill:2
|
二、客户端连接
[[email protected] ~] # vncserver :2
|