5

I'm running x11vnc on Ubuntu as a service at startup. It generally works fine, but I want to run it headless. If I start the server with a monitor connected but off, VNC connects and responds quickly, however if I restart the server without a monitor connected (I want to remove the monitor from my desk) then it's painfully slow to use - like 5 fps response, until I connect a monitor again and then it's fine.

Here's the content of my service file

[Unit]
Description=Start x11vnc at startup
After=multi-user.target

[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -display :0 -geometry 1024x768 -auth guess -forever -loop -noxdamage -repeat -rfbauth /etc/x11vnc.pass -rfbport 5900 -shared -o /var/log/x11vnc.log

[Install]
WantedBy=multi-user.target

Be really grateful if someone can point out where I've gone wrong with this. Thanks

Eddy555
  • 51

1 Answers1

10
  1. Disable Composite tweaks via Start->Window Manager Tweaks->Compositor-> Disable

  2. Disable vsync, xfconf-query -c xfwm4 -p /general/vblank_mode -s off

Reference - https://github.com/LibVNC/x11vnc/issues/102

Anders F. U. Kiær
  • 2,171
  • 1
  • 18
  • 29