Skip to content

Commit 9724a24

Browse files
authored
Fix crashes in x11vnc, credit to @philippmoeller (#882)
1 parent ac482e4 commit 9724a24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

NodeDebug/start-vnc.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ if [ "${START_XVFB}" = true ] ; then
2020
echo "Waiting for Xvfb..."
2121
done
2222

23-
x11vnc ${X11VNC_OPTS} -forever -shared -rfbport 5900 -display ${DISPLAY}
23+
# -noxrecord fixes https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859213 in x11vnc 0.9.13-2
24+
x11vnc ${X11VNC_OPTS} -forever -shared -rfbport 5900 -display ${DISPLAY} -noxrecord
2425
else
2526
echo "Vnc won't start because Xvfb is configured to not start."
2627
fi

0 commit comments

Comments
 (0)