add noVNC service

main
Links 2022-04-14 14:16:21 +02:00
rodzic 8dc6589ade
commit db23535cc5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 68FB9F01C0C482FC
3 zmienionych plików z 19 dodań i 0 usunięć

Wyświetl plik

@ -32,6 +32,13 @@ after armbian init setup, a VNC server will be running on port 5900 powerd by li
Note:
the bad build in WiFi Antenna can make a VNC connection Instable very fast.
## noVNC
the VNC server can be accessed via a webbrowser:
```
http://<x6100 IP>:6080/vnc_auto.html
```
# WiFi / Network config
on the comand line use `nmtui` or use the Network Manager UI after login.

Wyświetl plik

@ -71,6 +71,7 @@ Main() {
systemctl enable x6100_chroot.service
systemctl enable x6100_app.service
systemctl enable lightdm_x6100.service
systemctl enable novnc.service
# disable not needed services
systemctl disable smbd.service

Wyświetl plik

@ -0,0 +1,11 @@
[Unit]
Description=noVNC for lightdm
Requires=lightdm.service
[Service]
Type=simple
ExecStart=/usr/bin/websockify --web=/usr/share/novnc/ 6080 localhost:5900
Restart=on-failure
[Install]
WantedBy=multi-user.target