Forrest logo
back to the x11vnc tool

x11vnc:tldr:78922

x11vnc: Launch a VNC server in view-only mode, and which won't terminate once the last client disconnects.
$ x11vnc -forever -viewonly
try on your machine

The command "x11vnc -forever -viewonly" is used to start the x11vnc server in a view-only mode and run it indefinitely.

Here's a breakdown of the options:

  • "x11vnc": It is the name of the command or program used to start the x11vnc server.
  • "-forever": This option tells x11vnc to run continuously, without exiting after the first connection. It keeps the server up and running for further connections.
  • "-viewonly": This option sets the server to view-only mode, meaning that connected clients can only view the remote desktop and cannot interact with it or send any input. It's useful when you want to allow others to see your screen but not control it.

Overall, this command starts the x11vnc server, allowing others to view your remote desktop without controlling it, and it keeps the server running indefinitely, ensuring multiple connections can be made.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the x11vnc tool