Spaces:
Paused
Paused
File size: 407 Bytes
b4f6d1c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash
# Start TurboVNC server
/opt/TurboVNC/bin/vncserver :1 -geometry 1280x1024 -depth 24 -SecurityTypes None
# Start Fluxbox
startfluxbox &
# Start Chromium
google-chrome --no-sandbox --disable-gpu --disable-dev-shm-usage \
--disable-session-crashed-bubble --no-first-run --start-maximized --display=:1 &
# Start noVNC
/usr/share/novnc/utils/launch.sh --vnc localhost:5901 --listen $NOVNC_PORT
|