1、网址
RealVNC
http://www.realvnc.com/
Tight VNC
http://www.tightvnc.com/
UltraVNC
http://www.uvnc.com/
2、下载
image.png
image.png
3、linux系统yum安装vnc相关组件
[root@node1 ~]# yum -y install tigervnc tigervnc-server tigervnc-server-module
4、linux系统复制vnc配置模板文件
[root@node1 ~]# cd /lib/systemd/system/
[root@node1 system]# cp vncserver@.service vncserver.service
[root@node1 system]# vim vncserver.service
image.png
5、修改分辨率大小
[root@node1 ~]# cd /usr/bin/
[root@node1 bin]# vim vnserver
$geometry = "1024x768";
6、启动前删除无用文件
[root@node1 ~]# rm -rf /tmp/.X11-unix
尖叫提示:如果不删除,可能会导致vnc启动不了
7、vnc常用命令
//启动VNC
[root@node1 ~]# systemctl start vncserver@:1.service
//开机自动启动VNC
[root@node1 ~]# systemctl enable vncserver@:1.service
//关闭VNC
[root@node1 ~]# systemctl stop vncserver@:1.service
//禁止开机自动启动
[root@node1 ~]# systemctl disable vncserver@:1.service
//查看VNC 状态
[root@node1 ~]# systemctl status vncserver@:1.service
[root@node1 ~]# systemctl status -l vncserver@:1.service
//查看VNC
[root@node1 ~]# vncserver -list
//干掉VNC
[root@node1 ~]# vncserver -kill :2
[root@node1 ~]# vncserver :1
[root@node1 ~]# vncviewer 192.168.1.106
尖叫提示:默认端口5901, vncserver :1命令,冒号前有空格
8、修改密码
[root@node1 ~]# vncpasswd
9、开机启动
方式一
[root@node1 ~]# echo 'vncserver :1 ' >> /etc/rc.local
方式二
[root@node1 ~]# systemctl enable vncserver@:1.service
10、Window安装VNC Server 、VNC Viewer
image.png
11、VNC Viewer 客户端使用
image.png
image.png
12、VNC Server 服务端使用
image.png
设置选项
image.png
设置加密方式
image.png
设置客户端访问权限
image.png
密码设置
image.png
文件传输
image.png
选择要发送的文件,完成传输
image.png
无密码登录
image.png