要在Ubuntu上安装novnc服务,可以按照以下步骤操作:
sudo apt-get update
sudo apt-get install novnc websockify
创建一个新的systemd服务文件来管理novnc服务。在终端中输入以下命令:
sudo nano /etc/systemd/system/novnc.service
粘贴以下内容到文件中:
[Unit]
Description=Web-based VNC client
After=network.target
[Service]
ExecStart=/usr/share/novnc/utils/launch.sh --vnc localhost:5900
Restart=on-failure
[Install]
WantedBy=multi-user.target
保存并关闭文件。
sudo systemctl enable novnc
sudo systemctl start novnc
在浏览器中输入服务器的IP地址和novnc的端口号(默认为6080),例如:http://your_server_ip:6080/vnc.html
您应该能够看到novnc的登录页面,输入VNC服务器的IP地址和端口号(默认为5900)进行连接。
这样就完成了在Ubuntu上安装novnc服务的过程。您可以通过浏览器访问novnc来远程连接到VNC服务器。