1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

x11vnc: wording tweaks (#1324)

* x11vnc: wording tweaks

* x11vnc: clarify monitor vs. display vs. screen

See http://stackoverflow.com/a/1210332 and https://en.wikipedia.org/wiki/X_Window_System#Nomenclature
This commit is contained in:
Waldir Pimenta 2017-04-18 14:04:53 +01:00 committed by Jeef
parent aa22af277a
commit c644c19a8c

View file

@ -1,24 +1,24 @@
# x11vnc # x11vnc
> A VNC server that will enable VNC on an existing display. > A VNC server that will enable VNC on an existing display ser.
> By default, once a client disconnects the server will terminate. > By default, the server will automatically terminate once all clients disconnect from it.
- Launch a VNC server that allows multiple clients to connect: - Launch a VNC server that allows multiple clients to connect:
`x11vnc -shared` `x11vnc -shared`
- Launch the server where the user can only view the screen, and will continue to run even after the last client disconnects: - Launch a VNC server in view-only mode, and which won't terminate once the last client disconnects:
`x11vnc -forever -viewonly` `x11vnc -forever -viewonly`
- Launch a VNC server on a specific display and screen: - Launch a VNC server on a specific display and screen (both starting at index zero):
`x11vnc -display :{{screen}}.{{display}}` `x11vnc -display :{{display}}.{{screen}}`
- Launch a VNC server on screen 2 with the default display: - Launch a VNC server on the third display's default screen:
`x11vnc -display :{{2}}` `x11vnc -display :{{2}}`
- Launch a VNC server on the second monitor: - Launch a VNC server on the first display's second screen:
`x11vnc -display :{{0}}.{{1}}` `x11vnc -display :{{0}}.{{1}}`