Ubuntu18.04 LTS 安装 VNC Server

之前在公司里的服务器上面安装了几台Ubuntu desktop 版的虚拟机,都是使用的 x11vnc, 这次也没有多想,直接开整:

# 安装 x11vnc
sudo apt install x11vnc -y
# 配置访问密码
sudo x11vnc -storepasswd /etc/x11vnc.pass
# 创建服务
vim  /lib/systemd/system/x11vnc.service
### 粘贴如下代码,最后 :wq 保存,请使用root用户,否则没有权限。

[Unit]
Description=Start x11vnc at startup.
After=multi-user.target
[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /etc/x11vnc.pass -rfbport 5902 -shared
[Install]
WantedBy=multi-user.target

# 修改防火墙配置,配置和启动服务 #
sudo ufw allow 5902
sudo systemctl enable x11vnc.service
sudo systemctl daemon-reload

# 重启。
sudo reboot

重启后,使用另外的机器连接,显示refused。

防火墙也没开,什么原因呢,百度吧:

https://blog.csdn.net/weixin_39465823/article/details/83820217

https://cloud.tencent.com/developer/article/1350304

我又测试了tigervncserver,没有使用xfce桌面,能够连接上,但是一个灰屏,啥也干不了,xfce桌面真心不想用

后来,看到https://www.jianshu.com/p/f58fe5cdeb5f 这篇博文,我也放弃折腾开源软件了,

转而 https://www.realvnc.com/en/connect/download/vnc/,

下载

Ubuntu18.04 LTS 安装 VNC Server_第1张图片

安装 dpkg -i VNC-Server-6.4.1-Linux-x64.deb,注册请问度娘,最后配置成功:

Ubuntu18.04 LTS 安装 VNC Server_第2张图片

远程效果:

Ubuntu18.04 LTS 安装 VNC Server_第3张图片

你可能感兴趣的:(其它(随笔))