VNC远程控制软件在windows平台怎么使用相信大家都不陌生,网上还是有很详细的VNC远程控制教程的。那么,VNC远程控制Linux怎么实现,我们一起来看一下。
VNC配置:
1.检测 VNC服务
rpm -q vnc-server
2.启动服务
vncserver :1
You will require a password to access your desktops.
Password: // 输入VNC密码
Verify: // 重复输入
xauth: creating new authority file /root/.Xauthority
xauth: (stdin):1: bad display name "oracle:1" in "add" command
New 'oracle:1 (root)' desktop is oracle:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/oracle:1.log
3.VNC服务使用的端口号与桌面号的关系
VNC服务使用的端口号与桌面号相关,VNC使用TCP端口从5900开始,对应关系如下:
桌面号为“1” ---- 端口号为5901
桌面号为“2” ---- 端口号为5902
桌面号为“3” ---- 端口号为5903
4.如果Linux开启了防火墙功能,就需要手工开启相应的端口,以开启桌面号为“1”相应的端口为例,命令如下
# iptables -I INPUT -p tcp --dport 5901 -j ACCEPT
# iptables -I INPUT -p tcp --dport 5801 -j ACCEPT
注意:
防火墙关闭,就不需要执行;
5.配置VNC图形桌面环境为KDE或GNOME桌面环境
#vi /root/.vnc/xstartup
将以下语句前“#”去掉,进行保存;
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
6.重新启动VNC
vncserver -kill :1
vncserver :1