File size: 302 Bytes
a15e291 911103b a15e291 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/sh
export DISPLAY=:1.0
# Start novnc
/root/noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860 &
# Start the VNC server
vncserver -geometry 1280x800 -depth 24
# Start autocutsel to sync clipboard
autocutsel -fork
tail /root/.vnc/*.log # <---- this is where the VNC logs are
|