当前位置:   article > 正文

ubuntu16.04安装vncserver

ubuntu16.04安装vncserver

步骤 1 - 安装 X11VNC

sudo apt-get install x11vnc -y

步骤 2 - 配置访问密码

sudo x11vnc -storepasswd /etc/x11vnc.pass

步骤 3 - 创建服务

sudo -i
cat > /lib/systemd/system/x11vnc.service << EOF
[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 5900 -shared
[Install]
WantedBy=multi-user.target
EOF

步骤 4 - 配配置防火墙端口,配置和启动服务

echo “Configure firewall”
sudo ufw allow 5900
echo “Configure Services”
sudo systemctl enable x11vnc.service
sudo systemctl daemon-reload

步骤 5 - 重启

gsettings set org.gnome.Vino require-encryption false
sleep 5s
sudo shutdown -r now

客户端安装,直接https://www.realvnc.com/en/connect/download/viewer/ 官网下载一个

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/199457
推荐阅读
相关标签
  

闽ICP备14008679号