一:简介
VNC (Virtual Network Console),即 虚拟网络控制台。它是一款优秀的远程控制工具软件,而且是基于 UNIX 和 Linux 操作系统的免费开源的。
二:VNC 服务端安装(CentOS 6.*)
1.检查服务器是否安装了 VNC;
rpm -qa | grep vnc
2.如果没有安装VNC,输入以下命令进行安装;
yum install tigervnc tigervnc-server -y
3.安装之后,编辑文件进行配置;
vim /etc/sysconfig/vncservers
复制最后两行并去掉行首注释符,然后修改,如下所示:
https://img-blog.csdnimg.cn/20181211183537467.png
配置说明:
- 1、VNCSERVERS 配置登录远程桌面的用户名;
- 2、VNC 的默认监听端口是 5900,监听端口规则为590+usernumber【如 2:root对应端口号5902】
- 3、VNCSERVERARGS[2] 登录桌面配置;【2 为用户序号,1366x768 为分辨率,-nolisten tcp 为阻止tcp包,-nohttpd 为阻止http包,-localhost 代表只监听本地。如:VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"】
4.设置密码,两次输入即可;
vncpasswd
5.启动 vncserver 服务
/etc/init.d/vncserver start
或
service vncserver start
或重启
service vncserver restart
6.配置使用GNOME桌面
vim /root/.vnc/xstartup
注释掉twm &,结尾添加一行 gnome & ,如图所示:
https://img-blog.csdnimg.cn/20181211190638248.png注意: 如果没有安装 Linux 图形界面,则需要安装:
rpm -qa |grep gnome 【检查是否安装了图形界面】
yum groupinstall "X Window System" "Chinese Support" "Desktop" 【安装】
7.若 Linux开启了防火墙,就需要手工开启相应的端口;
iptables -I INPUT -p tcp --dport 5902 -j ACCEPT
8.设置vncserver服务开机自启动,重启 Linux 完成;
chkconfig vncserver on