summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrunge <runge>2007-02-12 23:44:39 +0000
committerrunge <runge>2007-02-12 23:44:39 +0000
commit241f3ed566d34bf5b6c67ebebcc00727134d93b2 (patch)
treee42ddc70dc6a50503a2e22aef238c7a1fde7fb43
parent0016cd4280ee9a0d088454a508a9c7f6bde33f62 (diff)
downloadlibtdevnc-241f3ed5.tar.gz
libtdevnc-241f3ed5.zip
x11vnc: add avahi (aka mDNS/Zeroconf/Bonjour...) support thanks to Diego Petteno. add -find -create
-rw-r--r--configure.ac27
-rw-r--r--x11vnc/ChangeLog5
-rw-r--r--x11vnc/Makefile.am9
-rw-r--r--x11vnc/README3192
-rw-r--r--x11vnc/avahi.c207
-rw-r--r--x11vnc/avahi.h11
-rw-r--r--x11vnc/cleanup.c5
-rw-r--r--x11vnc/help.c68
-rw-r--r--x11vnc/options.c5
-rw-r--r--x11vnc/options.h2
-rw-r--r--x11vnc/remote.c24
-rw-r--r--x11vnc/screen.c12
-rwxr-xr-xx11vnc/tkx11vnc1
-rw-r--r--x11vnc/tkx11vnc.h1
-rw-r--r--x11vnc/user.c22
-rw-r--r--x11vnc/win_utils.c1
-rw-r--r--x11vnc/x11vnc.182
-rw-r--r--x11vnc/x11vnc.c6
-rw-r--r--x11vnc/x11vnc_defs.c2
19 files changed, 2083 insertions, 1599 deletions
diff --git a/configure.ac b/configure.ac
index b54cafd..8d35af3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -335,6 +335,33 @@ elif test "x$uname_s" = "xDarwin"; then
ld_minus_R="no"
fi
+AH_TEMPLATE(HAVE_AVAHI, [Avahi/mDNS client build environment present])
+AC_ARG_WITH(avahi,
+[ --without-avahi disable support for Avahi/mDNS]
+[ --with-avahi=DIR use avahi include/library files in DIR],,)
+if test "x$with_avahi" != "xno"; then
+ printf "checking for avahi... "
+ if test ! -z "$with_avahi" -a "x$with_avahi" != "xyes"; then
+ AVAHI_CFLAGS="-I$with_avahi/include"
+ AVAHI_LIBS="-L$with_avahi/lib -lavahi-common -lavahi-client"
+ echo "using $with_avahi"
+ with_avahi=yes
+ elif pkg-config --atleast-version=0.6.4 avahi-client >/dev/null 2>&1; then
+ AVAHI_CFLAGS=`pkg-config --cflags avahi-client`
+ AVAHI_LIBS=`pkg-config --libs avahi-client`
+ with_avahi=yes
+ echo yes
+ else
+ with_avahi=no
+ echo no
+ fi
+fi
+if test "x$with_avahi" = "xyes"; then
+ AC_DEFINE(HAVE_AVAHI)
+ AC_SUBST(AVAHI_CFLAGS)
+ AC_SUBST(AVAHI_LIBS)
+fi
+
AC_ARG_WITH(jpeg,
[ --without-jpeg disable support for jpeg]
[ --with-jpeg=DIR use jpeg include/library files in DIR],,)
diff --git a/x11vnc/ChangeLog b/x11vnc/ChangeLog
index e7993af..713630b 100644
--- a/x11vnc/ChangeLog
+++ b/x11vnc/ChangeLog
@@ -1,3 +1,8 @@
+2007-02-12 Karl Runge <runge@karlrunge.com>
+ * x11vnc: add avahi (aka mDNS/Zeroconf/Bonjour...)
+ support thanks to Diego Pettenò. -avahi/-mdns.
+ Add -find and -create FINDISPLAY aliases.
+
2007-02-11 Karl Runge <runge@karlrunge.com>
* x11vnc: add -grabalways, -forcedpms, -clientdpms, and
-noserverdpms (ultravnc viewer) for improvements in
diff --git a/x11vnc/Makefile.am b/x11vnc/Makefile.am
index c3b7f1a..bd04821 100644
--- a/x11vnc/Makefile.am
+++ b/x11vnc/Makefile.am
@@ -17,11 +17,12 @@ LD_CYGIPC=-lcygipc
endif
bin_PROGRAMS=x11vnc
-x11vnc_SOURCES = 8to24.c cleanup.c connections.c cursor.c gui.c help.c inet.c keyboard.c linuxfb.c macosx.c macosxCG.c macosxCGP.c macosxCGS.c options.c pm.c pointer.c rates.c remote.c scan.c screen.c selection.c solid.c sslcmds.c sslhelper.c uinput.c unixpw.c user.c userinput.c util.c v4l.c win_utils.c x11vnc.c x11vnc_defs.c xdamage.c xevents.c xinerama.c xkb_bell.c xrandr.c xrecord.c xwrappers.c 8to24.h allowed_input_t.h blackout_t.h cleanup.h connections.h cursor.h enums.h gui.h help.h inet.h keyboard.h linuxfb.h macosx.h macosxCG.h macosxCGP.h macosxCGS.h nox11.h nox11_funcs.h options.h params.h pm.h pointer.h rates.h remote.h scan.h screen.h scrollevent_t.h selection.h solid.h sslcmds.h sslhelper.h ssltools.h tkx11vnc.h uinput.h unixpw.h user.h userinput.h util.h v4l.h win_utils.h winattr_t.h x11vnc.h xdamage.h xevents.h xinerama.h xkb_bell.h xrandr.h xrecord.h xwrappers.h
+x11vnc_SOURCES = 8to24.c avahi.c cleanup.c connections.c cursor.c gui.c help.c inet.c keyboard.c linuxfb.c macosx.c macosxCG.c macosxCGP.c macosxCGS.c options.c pm.c pointer.c rates.c remote.c scan.c screen.c selection.c solid.c sslcmds.c sslhelper.c uinput.c unixpw.c user.c userinput.c util.c v4l.c win_utils.c x11vnc.c x11vnc_defs.c xdamage.c xevents.c xinerama.c xkb_bell.c xrandr.c xrecord.c xwrappers.c 8to24.h allowed_input_t.h avahi.h blackout_t.h cleanup.h connections.h cursor.h enums.h gui.h help.h inet.h keyboard.h linuxfb.h macosx.h macosxCG.h macosxCGP.h macosxCGS.h nox11.h nox11_funcs.h options.h params.h pm.h pointer.h rates.h remote.h scan.h screen.h scrollevent_t.h selection.h solid.h sslcmds.h sslhelper.h ssltools.h tkx11vnc.h uinput.h unixpw.h user.h userinput.h util.h v4l.h win_utils.h winattr_t.h x11vnc.h xdamage.h xevents.h xinerama.h xkb_bell.h xrandr.h xrecord.h xwrappers.h
if HAVE_X
-INCLUDES=@X_CFLAGS@
-x11vnc_LDADD=$(LDADD) @SSL_LIBS@ @CRYPT_LIBS@ @X_LIBS@ $(LD_CYGIPC)
+INCLUDES=@X_CFLAGS@ @AVAHI_CFLAGS@
+x11vnc_LDADD=$(LDADD) @SSL_LIBS@ @CRYPT_LIBS@ @X_LIBS@ @AVAHI_LIBS@ $(LD_CYGIPC)
else
-x11vnc_LDADD=$(LDADD) @SSL_LIBS@ @CRYPT_LIBS@ $(LD_CYGIPC)
+INCLUDES=@AVAHI_CFLAGS@
+x11vnc_LDADD=$(LDADD) @SSL_LIBS@ @CRYPT_LIBS@ @AVAHI_LIBS@ $(LD_CYGIPC)
endif
diff --git a/x11vnc/README b/x11vnc/README
index 0790d65..b883a45 100644
--- a/x11vnc/README
+++ b/x11vnc/README
@@ -1,5 +1,5 @@
-x11vnc README file Date: Sun Feb 11 21:31:23 EST 2007
+x11vnc README file Date: Mon Feb 12 17:29:28 EST 2007
The following information is taken from these URLs:
@@ -27,31 +27,31 @@ x11vnc: a VNC server for real X displays
It has built-in [7]SSL encryption and authentication, UNIX [8]account
and password support, server-side [9]scaling, [10]single port HTTPS
- and VNC, and TightVNC and UltraVNC [11]file-transfer. It has also been
- extended to work with non-X devices: [12]webcams and TV tuner capture
- devices, [13]embedded Linux systems such as Qtopia Core, and natively
- on [14]Mac OS X Aqua/Quartz.
+ and VNC, [11]mDNS service advertising, and TightVNC and UltraVNC
+ [12]file-transfer. It has also been extended to work with non-X
+ devices: [13]webcams and TV tuner capture devices, [14]embedded Linux
+ systems such as Qtopia Core, and natively on [15]Mac OS X Aqua/Quartz.
- It also provides an encrypted [15]Terminal Services mode ([16]-svc
- option) based on Unix usernames and passwords where the user does not
- need to memorize his VNC display number.
+ It also provides an encrypted [16]Terminal Services mode ([17]-svc and
+ [18]-xdmsvc options) based on Unix usernames and passwords where the
+ user does not need to memorize his VNC display/port number.
I wrote x11vnc back in 2002 because x0rfbserver was basically
impossible to build on Solaris and had poor performance. The primary
x0rfbserver build problems centered around esoteric C++ toolkits.
- x11vnc is written in plain C and uses only standard libraries and so
+ x11vnc is written in plain C and needs only standard libraries and so
should work on nearly all Unixes. I also added some enhancements to
improve the interactive response, many esoteric features, etc.
- This page and the [17]FAQ contain a lot of information [18][*],
+ This page and the [19]FAQ contain a lot of information [20][*],
solutions to many problems, and interesting applications, but
- nevertheless please feel free to [19]contact me if you have problems
+ nevertheless please feel free to [21]contact me if you have problems
or questions.
- Please help [20]beta test the new performance speedup feature using
- [21]viewer-side pixel caching. Let me know how it goes; thanks.
+ Please help [22]beta test the new performance speedup feature using
+ [23]viewer-side pixel caching. Let me know how it goes; thanks.
- An x11vnc side-project provides an [22]Enhanced TightVNC Viewer
+ An x11vnc side-project provides an [24]Enhanced TightVNC Viewer
package (ssvnc) with automatic SSL and/or SSH tunnelling support, SSL
Certificate creation, and on Unix: NewFBSize, ZRLE, cursor
alphablending, and low color modes support. This bundle could be
@@ -72,10 +72,10 @@ x11vnc: a VNC server for real X displays
framebuffer (RFB) protocol.
Some VNC links:
- * [23]http://www.realvnc.com
- * [24]http://www.tightvnc.com
- * [25]http://www.ultravnc.com/
- * [26]http://www.redstonesoftware.com/
+ * [25]http://www.realvnc.com
+ * [26]http://www.tightvnc.com
+ * [27]http://www.ultravnc.com/
+ * [28]http://www.redstonesoftware.com/
For Unix, the traditional VNC implementation includes a "virtual" X11
server Xvnc (usually launched via the vncserver command) that is not
@@ -86,7 +86,7 @@ x11vnc: a VNC server for real X displays
The VNC protocol is in most cases better suited for remote connections
with low bandwidth and high latency than is the X11 protocol because
- it involves far fewer "roundtrips" (an exception is the [27]cached
+ it involves far fewer "roundtrips" (an exception is the [29]cached
pixmap data on the viewing-end provided by X). Also, with no state
maintained the viewing-end can crash, be rebooted, or relocated and
the applications and desktop continue running. Not so with X11.
@@ -114,11 +114,11 @@ x11vnc: a VNC server for real X displays
display you wish to view is "far-away.east:0" and the workstation you
are presently working at is "sitting-here.west".
- Step 0. Download x11vnc ([28]see below) and have it available to run
+ Step 0. Download x11vnc ([30]see below) and have it available to run
on far-away.east (on some linux distros it is as easy as "apt-get
install x11vnc", "emerge x11vnc", etc.) Similarly, have a VNC viewer
(e.g. vncviewer) ready to run on sitting-here.west. We recommend
- [29]TightVNC Viewers (see [30]also here.)
+ [31]TightVNC Viewers (see [32]also here.)
Step 1. By some means log in to far-away.east and get a command shell
running there. You can use ssh, or even rlogin, telnet, or any other
@@ -137,11 +137,11 @@ x11vnc: a VNC server for real X displays
display (i.e. no viewer clients yet).
Common Gotcha: To get X11 permissions right, you may also need to set
- the XAUTHORITY environment variable (or use the [31]-auth option) to
+ the XAUTHORITY environment variable (or use the [33]-auth option) to
point to the correct MIT-MAGIC-COOKIE file (e.g.
/home/joe/.Xauthority). If x11vnc does not have the authority to
connect to the display it exits immediately. More on how to fix this
- [32]below.
+ [34]below.
If you suspect an X11 permissions problem do this simple test: while
sitting at the physical X display open a terminal window
@@ -149,7 +149,7 @@ x11vnc: a VNC server for real X displays
successfully in that terminal without any need for command line
options. If that works OK then you know X11 permissions are the only
thing preventing it from working when you try to start x11vnc via a
- remote shell. Then fix this with the tips [33]below.
+ remote shell. Then fix this with the tips [35]below.
When x11vnc starts up there will then be much chatter printed out (use
"-q" to quiet it), until it finally says something like:
@@ -168,8 +168,8 @@ x11vnc: a VNC server for real X displays
viewers for Unix, Windows, MacOS, Java-enabled web browsers, and even
for PDA's like the Palm Pilot! You can use any of them to connect to
x11vnc (see the above VNC links under "Background:" on how to obtain a
- viewer for your platform or see [34]this FAQ. For Solaris, vncviewer
- is available in the [35]Companion CD package SFWvnc).
+ viewer for your platform or see [36]this FAQ. For Solaris, vncviewer
+ is available in the [37]Companion CD package SFWvnc).
In this example we'll use the Unix vncviewer program on sitting-here
by typing the following command in a second terminal window:
@@ -179,13 +179,13 @@ x11vnc: a VNC server for real X displays
That should pop up a viewer window on sitting-here.west showing and
allowing interaction with the far-away.east:0 X11 desktop. Pretty
nifty! When finished, exit the viewer: the remote x11vnc process will
- shutdown automatically (or you can use the [36]-forever option to have
+ shutdown automatically (or you can use the [38]-forever option to have
it wait for additional viewer connections).
Shortcut: Of course if you left x11vnc running on far-away.east:0 in a
- terminal window with the [37]-forever option or as a [38]service,
+ terminal window with the [39]-forever option or as a [40]service,
you'd only have to do Step 3 as you moved around. Be sure to use a VNC
- [39]Password or [40]other measures if you do that.
+ [41]Password or [42]other measures if you do that.
Desktop Sharing: The above more or less assumed nobody was sitting at
@@ -201,7 +201,7 @@ x11vnc: a VNC server for real X displays
For these cases it should be obvious how it is done. The above steps
will work, but more easily the user sitting at far-away.east:0 simply
starts up x11vnc from a terminal window, after which the guests would
- start their VNC viewers. For this usage mode the "[41]-connect
+ start their VNC viewers. For this usage mode the "[43]-connect
host1,host2" option may be of use to automatically connect to the
vncviewers in "-listen" mode on the list of hosts.
_________________________________________________________________
@@ -233,13 +233,13 @@ x11vnc: a VNC server for real X displays
Note that "x11vnc -localhost ..." limits incoming vncviewer
connections to only those from the same machine. This is very natural
for ssh tunnelling (the redirection appears to come from the same
- machine). Use of a [42]VNC password is also strongly recommended.
+ machine). Use of a [44]VNC password is also strongly recommended.
Some VNC viewers will do the ssh tunnelling for you automatically, the
TightVNC vncviewer does this when the "-via far-away.east" option is
supplied to it (this requires x11vnc to be already running on
- far-away.east or having it started by [43]inetd(8)). See the 3rd
- script example [44]below for more info.
+ far-away.east or having it started by [45]inetd(8)). See the 3rd
+ script example [46]below for more info.
Note the -t we used above (force allocate pseudoterminal), it actually
seems to improve interactive typing response via VNC!
@@ -249,11 +249,11 @@ x11vnc: a VNC server for real X displays
gateway machine), then you need to change the above to, e.g.: "-L
5900:OtherHOST:5900". Once logged in, you'll need to do a second login
(ssh, rsh, etc.) to the workstation machine 'OtherHOST' and then start
- up x11vnc on it (if it isn't already running). (The "[45]-connect
+ up x11vnc on it (if it isn't already running). (The "[47]-connect
gateway:59xx" option may be another alternative here with the viewer
already in -listen mode). For an automatic way to use a gateway and
have all the network traffic encrypted (including inside the firewall)
- see [46]chaining ssh's
+ see [48]chaining ssh's
_________________________________________________________________
@@ -262,11 +262,11 @@ x11vnc: a VNC server for real X displays
above port and display numbers may change a bit (e.g. -> 5901 and :1).
However, if you "know" port 5900 will be free on the local and remote
machines, you can easily automate the above two steps by using the
- x11vnc option [47]-bg (forks into background after connection to the
+ x11vnc option [49]-bg (forks into background after connection to the
display is set up) or using the -f option of ssh. Some example scripts
are shown below.
- You may also want to look at the [48]Enhanced TightVNC Viewer (ssvnc)
+ You may also want to look at the [50]Enhanced TightVNC Viewer (ssvnc)
bundles because they contain scripts and guis to automatically set up
SSH tunnels (e.g. "ssl_tightvncviewer -ssh user@far-away.east:0")
_________________________________________________________________
@@ -298,7 +298,7 @@ done
#2. Another method is to start the VNC viewer in listen mode
"vncviewer -listen" and have x11vnc initiate a reverse connection
- using the [49]-connect option:
+ using the [51]-connect option:
#!/bin/sh
# usage: x11vnc_ssh <host>:<xdisplay>
# e.g.: x11vnc_ssh snoopy.peanuts.com:0
@@ -341,7 +341,7 @@ export VNC_VIA_CMD
vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
Of course if you already have the x11vnc running waiting for
- connections (or have it started out of [50]inetd(8)), you can simply
+ connections (or have it started out of [52]inetd(8)), you can simply
use the TightVNC "vncviewer -via gateway host:port" in its default
mode to provide secure ssh tunnelling.
_________________________________________________________________
@@ -349,37 +349,37 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
VNC password file: Also note in the #1. example script that the
- [51]option "-rfbauth .vnc/passwd" provides additional protection by
+ [53]option "-rfbauth .vnc/passwd" provides additional protection by
requiring a VNC password for every VNC viewer that connects. The
- vncpasswd or storepasswd programs, or the x11vnc [52]-storepasswd
+ vncpasswd or storepasswd programs, or the x11vnc [54]-storepasswd
option can be used to create the password file. x11vnc also has the
- slightly less secure [53]-passwdfile and "-passwd XXXXX" [54]options
+ slightly less secure [55]-passwdfile and "-passwd XXXXX" [56]options
to specify passwords.
Very Important: It is up to YOU to tell x11vnc to use password
protection (-rfbauth or -passwdfile), it will NOT do it for you
- automatically or force you to (use [55]-usepw if you want to be forced
+ automatically or force you to (use [57]-usepw if you want to be forced
to). The same goes for encrypting the channel between the viewer and
- x11vnc: it is up to you to use ssh, stunnel, [56]-ssl mode, a VPN,
- etc. (use the [57]Enhanced TightVNC Viewer (ssvnc) GUI if you want to
+ x11vnc: it is up to you to use ssh, stunnel, [58]-ssl mode, a VPN,
+ etc. (use the [59]Enhanced TightVNC Viewer (ssvnc) GUI if you want to
be forced to use SSL or SSH). For additional safety, also look into
- the -allow and -localhost [58]options and building x11vnc with
- [59]tcp_wrappers support to limit host access.
+ the -allow and -localhost [60]options and building x11vnc with
+ [61]tcp_wrappers support to limit host access.
_________________________________________________________________
Tunnelling x11vnc via SSL:
One can also encrypt the VNC traffic using an SSL tunnel such as
- [60]stunnel (also [61]stunnel.mirt.net) or using the built-in
- (Mar/2006) [62]-ssl openssl mode. A SSL-enabled Java applet VNC Viewer
+ [62]stunnel (also [63]stunnel.mirt.net) or using the built-in
+ (Mar/2006) [64]-ssl openssl mode. A SSL-enabled Java applet VNC Viewer
is also provided (and https can be used to download it).
Although not as ubiquitous as ssh, SSL tunnelling still provides a
- useful alternative. See [63]this FAQ on -ssl and -stunnel modes for
+ useful alternative. See [65]this FAQ on -ssl and -stunnel modes for
details and examples.
- The [64]Enhanced TightVNC Viewer (ssvnc) bundles contain some
+ The [66]Enhanced TightVNC Viewer (ssvnc) bundles contain some
convenient utilities to automatically set up an SSL tunnel from the
viewer-side (i.e. to connect to "x11vnc -ssl ..."). And other
enhancements too.
@@ -387,29 +387,29 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
Downloading x11vnc:
- x11vnc is a contributed program to the [65]LibVNCServer project at
+ x11vnc is a contributed program to the [67]LibVNCServer project at
SourceForge.net. I use libvncserver for all of the VNC aspects; I
couldn't have done without it. The full source code may be found and
downloaded (either file-release tarball or CVS tree) from the above
- link. As of Feb 2007, the [66]x11vnc-0.8.4.tar.gz source package is
- released (recommended download). The [67]x11vnc 0.8.4 release notes.
+ link. As of Feb 2007, the [68]x11vnc-0.8.4.tar.gz source package is
+ released (recommended download). The [69]x11vnc 0.8.4 release notes.
The x11vnc package is the subset of the libvncserver package needed to
build the x11vnc program. Also, you can get a copy of my latest,
- bleeding edge [68]x11vnc-0.8.5.tar.gz tarball to build the most up to
+ bleeding edge [70]x11vnc-0.8.5.tar.gz tarball to build the most up to
date one.
- Precompiled Binaries/Packages: See the [69]FAQ below for information
+ Precompiled Binaries/Packages: See the [71]FAQ below for information
about where you might obtain a precompiled x11vnc binary from 3rd
parties and some ones I create.
VNC Viewers: To obtain VNC viewers for the viewing side (Windows, Mac
OS, or Unix) try these links:
- * [70]http://www.tightvnc.com/download.html
- * [71]http://www.realvnc.com/download-free.html
- * [72]http://sourceforge.net/projects/cotvnc/
- * [73]http://www.ultravnc.com/
- * [74]Our Enhanced TightVNC Viewer (ssvnc)
+ * [72]http://www.tightvnc.com/download.html
+ * [73]http://www.realvnc.com/download-free.html
+ * [74]http://sourceforge.net/projects/cotvnc/
+ * [75]http://www.ultravnc.com/
+ * [76]Our Enhanced TightVNC Viewer (ssvnc)
More tools: Here is a rsh/ssh wrapper script rx11vnc that attempts to
@@ -420,8 +420,8 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
rx11vnc.pl that attempts to tunnel the vnc traffic through an ssh port
redirection (and does not assume port 5900 is free). Have a look at
them to see what they do and customize as needed:
- * [75]rx11vnc wrapper script
- * [76]rx11vnc.pl wrapper script to tunnel traffic thru ssh
+ * [77]rx11vnc wrapper script
+ * [78]rx11vnc.pl wrapper script to tunnel traffic thru ssh
_________________________________________________________________
@@ -452,8 +452,8 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
Note: Currently gcc is recommended to build libvncserver. In some
cases it will build with non-gcc compilers, but the resulting binary
sometimes fails to run properly. For Solaris pre-built gcc binaries
- are at [77]http://www.sunfreeware.com/. Some Solaris pre-built x11vnc
- binaries are [78]here.
+ are at [79]http://www.sunfreeware.com/. Some Solaris pre-built x11vnc
+ binaries are [80]here.
However, one user reports it does work fine when built with Sun Studio
10, so YMMV. In fact, here is a little build script to do this on
@@ -473,12 +473,12 @@ export MAKE AM_CFLAGS
$MAKE
In general you can use the "make -e" trick if you don't like
- libvncserver's choice of AM_CFLAGS. See the [79]build scripts below
+ libvncserver's choice of AM_CFLAGS. See the [81]build scripts below
for more ideas. Scripts similar to the above have been shown to work
with vendor C compilers on HP-UX (ccom: HP92453-01) and Tru64 (Compaq
C V6.5-011).
- You can find information on [80]Misc. Build problems here.
+ You can find information on [82]Misc. Build problems here.
_________________________________________________________________
@@ -516,9 +516,9 @@ r/sfw; make'
If your system does not have these libraries at all you can get the
source for the libraries to build them: libjpeg is available at
- [81]ftp://ftp.uu.net/graphics/jpeg/ and zlib at
- [82]http://www.gzip.org/zlib/. See also
- [83]http://www.sunfreeware.com/ for Solaris binary packages of these
+ [83]ftp://ftp.uu.net/graphics/jpeg/ and zlib at
+ [84]http://www.gzip.org/zlib/. See also
+ [85]http://www.sunfreeware.com/ for Solaris binary packages of these
libraries as well as for gcc. Normally they will install into
/usr/local but you can install them anywhere with the
--prefix=/path/to/anywhere, etc.
@@ -589,7 +589,7 @@ ls -l ./x11vnc/x11vnc
script.
If you need to build on Solaris 2.5.1 or earlier or other older Unix
- OS's, see [84]this workaround FAQ.
+ OS's, see [86]this workaround FAQ.
Building on FreeBSD, OpenBSD, ...: The jpeg libraries seem to be in
@@ -625,7 +625,7 @@ make
up by the configure and make.
- Building on Mac OS X: There is now [85]native Mac OS X support for
+ Building on Mac OS X: There is now [87]native Mac OS X support for
x11vnc by using the raw framebuffer feature. This mode does not use or
need X11 at all. To build you may need to disable X11:
./configure --without-x ...
@@ -639,7 +639,7 @@ make
OpenSSL: Starting with version 0.8.3 x11vnc can now be built with
- [86]SSL support. For this to be enabled the libssl.so library needs to
+ [88]SSL support. For this to be enabled the libssl.so library needs to
be available at build time. So you may need to have additional
CPPFLAGS and LDFLAGS items if your libssl.so is in a non-standard
place.
@@ -657,23 +657,23 @@ make
Spring 2007.
The version 0.8.5 beta tarball is kept here:
- [87]x11vnc-0.8.5.tar.gz
+ [89]x11vnc-0.8.5.tar.gz
There are also some Linux, Solaris, Mac OS X, and other OS test
- binaries [88]here. Please kick the tires and report bugs, performance
- regressions, undesired behavior, etc. to [89]me.
+ binaries [90]here. Please kick the tires and report bugs, performance
+ regressions, undesired behavior, etc. to [91]me.
- To aid testing of the [90]built-in SSL support for x11vnc, a number of
+ To aid testing of the [92]built-in SSL support for x11vnc, a number of
VNC Viewer packages for Unix, Mac OS X, and Windows have been created
that provide SSL Support for the TightVNC Viewer (this is done by
- [91]wrapper scripts and a GUI that start STUNNEL, [92]more details
+ [93]wrapper scripts and a GUI that start STUNNEL, [94]more details
here). It should be pretty convenient for automatic SSL and SSH
connections. It is described and can be downloaded from the
- [93]Enhanced TightVNC Viewer (ssvnc) page.
+ [95]Enhanced TightVNC Viewer (ssvnc) page.
Here are some features that will appear in the 0.8.5 release:
- * [94]Viewer-side pixmap caching. This one will benefit from much
+ * [96]Viewer-side pixmap caching. This one will benefit from much
testing. A large area of pixels (at least 2-3 times as big as the
framebuffer itself; the bigger the better...) is placed below the
framebuffer to act as a buffer/cache area for pixel data. The VNC
@@ -681,31 +681,36 @@ make
work). Until we start modifying viewers you will be able to see
the cache area if you scroll down (this makes it easier to
debug!). For testing the default is "-ncache 12". The unix
- Enhanced TightVNC Viewer has a nice [95]-ycrop option to help hide
+ Enhanced TightVNC Viewer has a nice [97]-ycrop option to help hide
the pixel cache area from view.
- * Implementations of UltraVNC's SingleWindow and ServerInput
- extensions (require ultravnc viewer). They toggle the selection of
- a single window ([96]-id), and disable (friendly) user input and
- viewing at the VNC server.
- * Short aliases "[97]-svc" and "[98]-xdmsvc" for commonly used
- FINDCREATEDISPLAY usage modes.
+ * [98]VNC Service advertising via mDNS / ZeroConf with the Avahi
+ client library. Enable via "[99]-avahi".
* A simple way to emulate inetd(8) to some degree via the
- "[99]-loopbg" option.
- * Monitor the accuracy of XDAMAGE and apply "[100]-noxdamage" if it
- is not working well. OpenGL applications like like [101]beryl have
+ "[100]-loopbg" option.
+ * Implementations of UltraVNC's SingleWindow and ServerInput
+ extensions (requires ultravnc viewer). They toggle the selection
+ of a single window ([101]-id), and disable (friendly) user input
+ and viewing (monitor blank) at the VNC server.
+ * New options to control the Monitor power state and keyboard/mouse
+ grabbing: [102]-forcedpms, [103]-clientdpms, [104]-noserverdpms,
+ and [105]-grabalways.
+ * Short aliases "[106]-find", "[107]-create", "[108]-svc", and
+ "[109]-xdmsvc" for commonly used FINDCREATEDISPLAY usage modes.
+ * Monitor the accuracy of XDAMAGE and apply "[110]-noxdamage" if it
+ is not working well. OpenGL applications like like [111]beryl have
been shown to make XDAMAGE not work properly.
Here are some features that appeared in the 0.8.4 release:
- * Native [102]Mac OS X Aqua/Quartz support. (i.e. OSXvnc
+ * Native [112]Mac OS X Aqua/Quartz support. (i.e. OSXvnc
alternative; some activities are faster)
- * A [103]new login mode: "-display WAIT:cmd=FINDCREATEDISPLAY
+ * A [113]new login mode: "-display WAIT:cmd=FINDCREATEDISPLAY
-unixpw ..." that will Create a new X session (either virtual or
real and with or without a display manager, e.g. kdm) for the user
if it cannot find the user's X session display via the FINDDISPLAY
- method. See the [104]-svc and the [105]-xdmsvc aliases.
- * x11vnc can act as a VNC [106]reflector/repeater using the
- "[107]-reflect host:N" option. Instead of polling an X display,
+ method. See the [114]-svc and the [115]-xdmsvc aliases.
+ * x11vnc can act as a VNC [116]reflector/repeater using the
+ "[117]-reflect host:N" option. Instead of polling an X display,
the remote VNC Server host:N is connected to and re-exported via
VNC. This is intended for use in broadcasting a display to many
(e.g. > 16; classroom or large demo) VNC viewers where bandwidth
@@ -713,16 +718,16 @@ make
number of repeaters.
* Wireframe copyrect detection for local user activity (e.g. someone
sitting at the physical display moving windows) Use
- [108]-nowireframelocal to disable.
- * The "[109]-N" option couples the VNC Display number to the X
+ [118]-nowireframelocal to disable.
+ * The "[119]-N" option couples the VNC Display number to the X
Display number. E.g. if your X DISPLAY is :2 then the VNC display
will be :2 (i.e. using port 5902). If that port is taken x11vnc
will exit.
- * Option [110]-nodpms to avoid problems with programs like KDE's
+ * Option [120]-nodpms to avoid problems with programs like KDE's
kdesktop_lock that keep restarting the screen saver every few
seconds.
* To automatically fix the common mouse motion problem on XINERAMA
- (multi-headed) displays, the [111]-xwarppointer option is enabled
+ (multi-headed) displays, the [121]-xwarppointer option is enabled
by default when XINERAMA is active.
If you have a Mac please try out the native Mac OS X support, build
@@ -732,62 +737,62 @@ make
Here are some features that appeared in the 0.8.3 release:
- * The [112]-ssl option provides SSL encryption and authentication
- natively via the [113]www.openssl.org library. One can use from a
+ * The [122]-ssl option provides SSL encryption and authentication
+ natively via the [123]www.openssl.org library. One can use from a
simple self-signed certificate server certificate up to full CA
and client certificate authentication schemes.
- * Similar to -ssl, the [114]-stunnel option starts up a SSL tunnel
+ * Similar to -ssl, the [124]-stunnel option starts up a SSL tunnel
server stunnel (that must be installed separately on the system:
- [115]www.stunnel.org [116]stunnel.mirt.net ) to allow only
+ [125]www.stunnel.org [126]stunnel.mirt.net ) to allow only
encrypted SSL connections from the network.
- * The [117]-sslverify option allows for authenticating VNC clients
+ * The [127]-sslverify option allows for authenticating VNC clients
via their certificates in either -ssl or -stunnel modes.
* Certificate creation and management tools are provide in the
- [118]-sslGenCert, [119]-sslGenCA, and [120]related options.
+ [128]-sslGenCert, [129]-sslGenCA, and [130]related options.
* An SSL enabled Java applet VNC Viewer applet is provided in
classes/ssl/VncViewer.jar. In addition to normal HTTP, the applet
may be loaded into the web browser via HTTPS (HTTP over SSL). (one
can use the VNC port, e.g. https://host:5900/, or also the
- separate [121]-https port option). A wrapper shell script
- [122]ss_vncviewer is also provided that sets up a stunnel
- client-side tunnel on Unix systems. See [123]Enhanced TightVNC
+ separate [131]-https port option). A wrapper shell script
+ [132]ss_vncviewer is also provided that sets up a stunnel
+ client-side tunnel on Unix systems. See [133]Enhanced TightVNC
Viewer (ssvnc) for other SSL/SSH viewer possibilities.
- * The [124]-unixpw option supports Unix username and password
- authentication (a simpler variant is the [125]-unixpw_nis option
+ * The [134]-unixpw option supports Unix username and password
+ authentication (a simpler variant is the [135]-unixpw_nis option
that works in environments where the encrypted passwords are
- readable, e.g. NIS). The [126]-ssl or [127]-localhost +
- [128]-stunnel options are enforced in this mode to prevent
+ readable, e.g. NIS). The [136]-ssl or [137]-localhost +
+ [138]-stunnel options are enforced in this mode to prevent
password sniffing. As a convenience, these requirements are lifted
if a SSH tunnel can be deduced (but -localhost still applies).
- * Coupling [129]-unixpw with "[130]-display WAIT:cmd=FINDDISPLAY" or
+ * Coupling [139]-unixpw with "[140]-display WAIT:cmd=FINDDISPLAY" or
"-display WAIT:cmd=FINDCREATEDISPLAY" provides a way to allow a
user to login with their UNIX password and have their display
- connected to [131]automatically. See the [132]-svc and the
- [133]-xdmsvc aliases.
- * Hooks are provided in the [134]-unixpw_cmd and "[135]-passwdfile
+ connected to [141]automatically. See the [142]-svc and the
+ [143]-xdmsvc aliases.
+ * Hooks are provided in the [144]-unixpw_cmd and "[145]-passwdfile
cmd:,custom:..." options to allow you to supply your own
authentication and password lookup programs.
* x11vnc can be configured and built to not depend on X11 libraries
- "./configure --without-x" for [136]-rawfb only operation (e.g.
+ "./configure --without-x" for [146]-rawfb only operation (e.g.
embedded linux console devices).
- * The [137]-rotate option enables you to rotate or reflect the
+ * The [147]-rotate option enables you to rotate or reflect the
screen before exporting via VNC. This is intended for use on
handhelds and other devices where the rotation orientation is not
"natural".
- * The "[138]-ultrafilexfer" alias is provided and improved UltraVNC
+ * The "[148]-ultrafilexfer" alias is provided and improved UltraVNC
filetransfer rates have been achieved.
- * Under the "[139]-connect_or_exit host" option x11vnc will exit
+ * Under the "[149]-connect_or_exit host" option x11vnc will exit
immediately unless the reverse connection to host succeeds. The
"-rfbport 0" option disables TCP listening for connections (useful
for this mode).
- * The "[140]-rawfb rand" and "-rawfb none" options are useful for
+ * The "[150]-rawfb rand" and "-rawfb none" options are useful for
testing automation scripts, etc., without requiring a full
desktop.
- * Reduced spewing of information at startup, use "[141]-verbose"
+ * Reduced spewing of information at startup, use "[151]-verbose"
(also "-v") to turn it back on for debugging or if you are going
to send me a problem report.
- Here are some [142]Previous Release Notes
+ Here are some [152]Previous Release Notes
_________________________________________________________________
Some Notes:
@@ -814,11 +819,11 @@ make
protocol.) I suggest using xsetroot, dtstyle or similar utility to set
a solid background while using x11vnc. You can turn the pretty
background image back on when you are using the display directly.
- Update: As of Feb/2005 x11vnc has the [143]-solid [color] option that
+ Update: As of Feb/2005 x11vnc has the [153]-solid [color] option that
works on recent GNOME, KDE, and CDE and also on classic X (background
image is on the root window).
- I also find the [144]TightVNC encoding gives the best response for my
+ I also find the [154]TightVNC encoding gives the best response for my
usage (Unix <-> Unix over cable modem). One needs a tightvnc-aware
vncviewer to take advantage of this encoding.
@@ -830,17 +835,17 @@ make
is X11's default listening port). Had port 5900 been taken by some
other application, x11vnc would have next tried 5901. That would mean
the viewer command above should be changed to vncviewer
- far-away.east:1. You can force the port with the "[145]-rfbport NNNN"
+ far-away.east:1. You can force the port with the "[155]-rfbport NNNN"
option where NNNN is the desired port number. If that port is already
- taken, x11vnc will exit immediately. The "[146]-N" option will try to
+ taken, x11vnc will exit immediately. The "[156]-N" option will try to
match the VNC display number to the X display. (also see the "SunRay
Gotcha" note below)
Options: x11vnc has (far too) many features that may be activated
- via its [147]command line options. Useful options are, e.g., -scale to
+ via its [157]command line options. Useful options are, e.g., -scale to
do server-side scaling, and -rfbauth passwd-file to use VNC password
protection (the vncpasswd or storepasswd programs, or the x11vnc
- [148]-storepasswd option can be used to create the password file).
+ [158]-storepasswd option can be used to create the password file).
Algorithm: How does x11vnc do it? Rather brute-forcedly: it
continuously polls the X11 framebuffer for changes using
@@ -867,7 +872,7 @@ make
first testing out the programs. You get an interesting
recursive/feedback effect where vncviewer images keep popping up each
one contained in the previous one and slightly shifted a bit by the
- window manager decorations. There will be an [149]even more
+ window manager decorations. There will be an [159]even more
interesting effect if -scale is used. Also, if the XKEYBOARD is
supported and the XBell "beeps" once, you get an infinite loop of
beeps going off. Although all of this is mildly exciting it is not
@@ -877,8 +882,8 @@ make
Sun Ray Notes:
- You can run x11vnc on your (connected or disconnected) [150]SunRay
- session. Here are some [151]notes on SunRay usage with x11vnc.
+ You can run x11vnc on your (connected or disconnected) [160]SunRay
+ session. Here are some [161]notes on SunRay usage with x11vnc.
_________________________________________________________________
@@ -890,7 +895,7 @@ make
than you normally do to minimize the effects (e.g. do fullpage
paging rather than line-by-line scrolling, and move windows in a
single, quick motion). Recent work has provided the
- [152]-scrollcopyrect and [153]-wireframe speedups using the
+ [162]-scrollcopyrect and [163]-wireframe speedups using the
CopyRect VNC encoding and other things, but they only speed up
certain activities, not all.
* A rate limiting factor for x11vnc performance is that video
@@ -937,14 +942,14 @@ make
it may be of use for special purpose applications.
Also, a faster and more accurate way is to use the "dummy"
XFree86/Xorg device driver (or our Xdummy wrapper script). See
- [154]this FAQ for details.
+ [164]this FAQ for details.
* Somewhat surprisingly, the X11 mouse (cursor) shape is write-only
and cannot be queried from the X server. So traditionally in
x11vnc the cursor shape stays fixed at an arrow. (see the "-cursor
- X" and "-cursor some" [155]options, however, for a partial hack
+ X" and "-cursor some" [165]options, however, for a partial hack
for the root window, etc.). However, on Solaris using the SUN_OVL
overlay extension, x11vnc can show the correct mouse cursor when
- the [156]-overlay option is also supplied. A similar thing is done
+ the [166]-overlay option is also supplied. A similar thing is done
on IRIX as well when -overlay is supplied.
More generally, as of Dec/2004 x11vnc supports the new XFIXES
extension (in Xorg and Solaris 10) to query the X server for the
@@ -952,18 +957,18 @@ make
with transparency (alpha channel) need to approximated to solid
RGB values (some cursors look worse than others).
* Audio from applications is of course not redirected (separate
- redirectors do exist, e.g. esd [157]the FAQ on this below.) The
+ redirectors do exist, e.g. esd [167]the FAQ on this below.) The
XBell() "beeps" will work if the X server supports the XKEYBOARD
extension. (Note that on Solaris XKEYBOARD is disabled by default.
Passing +kb to Xsun enables it).
- * The scroll detection algorithm for the [158]-scrollcopyrect option
+ * The scroll detection algorithm for the [168]-scrollcopyrect option
can give choppy or bunched up transient output and occasionally
painting errors.
* Using -threads can expose some bugs in libvncserver.
- Please feel free to [159]contact me if you have any questions,
+ Please feel free to [169]contact me if you have any questions,
problems, or comments about x11vnc, etc.
- Also, some people ask if they can make a donation, see [160]this link
+ Also, some people ask if they can make a donation, see [170]this link
for that.
_________________________________________________________________
@@ -972,354 +977,358 @@ make
[Building and Starting]
- [161]Q-1: I can't get x11vnc to start up. It says "XOpenDisplay failed
+ [171]Q-1: I can't get x11vnc to start up. It says "XOpenDisplay failed
(null)" or "Xlib: connection to ":0.0" refused by server Xlib: No
protocol specified" and then exits. What do I need to do?
- [162]Q-2: I can't get x11vnc and/or libvncserver to compile.
+ [172]Q-2: I can't get x11vnc and/or libvncserver to compile.
- [163]Q-3: I just built x11vnc successfully, but when I use it my
+ [173]Q-3: I just built x11vnc successfully, but when I use it my
keystrokes and mouse button clicks are ignored (I am able to move the
mouse though).
- [164]Q-4: Help, I need to run x11vnc on Solaris 2.5.1 (or other old
+ [174]Q-4: Help, I need to run x11vnc on Solaris 2.5.1 (or other old
Unix/Linux) and it doesn't compile!
- [165]Q-5: Where can I get a precompiled x11vnc binary for my Operating
+ [175]Q-5: Where can I get a precompiled x11vnc binary for my Operating
System?
- [166]Q-6: Where can I get a VNC Viewer binary (or source code) for the
+ [176]Q-6: Where can I get a VNC Viewer binary (or source code) for the
Operating System I will be viewing from?
- [167]Q-7: How can I see all of x11vnc's command line options and
+ [177]Q-7: How can I see all of x11vnc's command line options and
documentation on how to use them?
- [168]Q-8: I don't like typing arcane command line options every time I
+ [178]Q-8: I don't like typing arcane command line options every time I
start x11vnc. What can I do? Is there a config file? Or a GUI?
- [169]Q-9: How can I get the GUI to run in the System Tray, or at least
+ [179]Q-9: How can I get the GUI to run in the System Tray, or at least
be a smaller, simpler icon?
- [170]Q-10: How can I get x11vnc to listen on a different port besides
+ [180]Q-10: How can I get x11vnc to listen on a different port besides
the default VNC port (5900)?
- [171]Q-11: Can I make x11vnc more quiet and also go into the
+ [181]Q-11: Can I make x11vnc more quiet and also go into the
background after starting up?
- [172]Q-12: Sometimes when a VNC viewer dies abruptly, x11vnc also dies
+ [182]Q-12: Sometimes when a VNC viewer dies abruptly, x11vnc also dies
with the error message like: "Broken pipe". I'm using the -forever
mode and I want x11vnc to keep running.
- [173]Q-13: Are there any build-time customizations possible, e.g.
+ [183]Q-13: Are there any build-time customizations possible, e.g.
change defaults, create a smaller binary, etc?
[Win2VNC Related]
- [174]Q-14: I have two separate machine displays in front of me, one
+ [184]Q-14: I have two separate machine displays in front of me, one
Windows the other X11: can I use x11vnc in combination with Win2VNC in
dual-screen mode to pass the keystrokes and mouse motions to the X11
display?
- [175]Q-15: I am running Win2VNC on my Windows machine and "x11vnc
+ [185]Q-15: I am running Win2VNC on my Windows machine and "x11vnc
-nofb" on Unix to pass keyboard and mouse to the Unix monitor.
Whenever I start Win2VNC it quickly disconnects and x11vnc says:
rfbProcessClientNormalMessage: read: Connection reset by peer
- [176]Q-16: Can I run "x11vnc -nofb" on a Mac OS X machine to redirect
+ [186]Q-16: Can I run "x11vnc -nofb" on a Mac OS X machine to redirect
mouse and keyboard input to it from Windows and X11 machines via
Win2VNC and x2vnc, respectively?
[Color Issues]
- [177]Q-17: The X display I run x11vnc on is only 8 bits per pixel
+ [187]Q-17: The X display I run x11vnc on is only 8 bits per pixel
(bpp) PseudoColor (i.e. only 256 distinct colors). The x11vnc colors
may start out OK, but after a while they are incorrect in certain
windows.
- [178]Q-18: Color problems: Why are the colors for some windows
+ [188]Q-18: Color problems: Why are the colors for some windows
incorrect in x11vnc? BTW, my X display has nice overlay/multi-depth
visuals of different color depths: e.g. there are both depth 8 and 24
visuals available at the same time.
- [179]Q-19: How do I figure out the window id to supply to the -id
+ [189]Q-19: How do I figure out the window id to supply to the -id
windowid option?
- [180]Q-20: Why don't menus or other transient windows come up when I
+ [190]Q-20: Why don't menus or other transient windows come up when I
am using the -id windowid option to view a single application window?
- [181]Q-21: My X display is depth 24 at 24bpp (instead of the normal
+ [191]Q-21: My X display is depth 24 at 24bpp (instead of the normal
depth 24 at 32bpp). I'm having lots of color and visual problems with
x11vnc and/or vncviewer. What's up?
[Xterminals]
- [182]Q-22: Can I use x11vnc to view and interact with an Xterminal
+ [192]Q-22: Can I use x11vnc to view and interact with an Xterminal
(e.g. NCD) that is not running UNIX and so x11vnc cannot be run on it
directly?
- [183]Q-23: How do I get my X permissions (MIT-MAGIC-COOKIE file)
+ [193]Q-23: How do I get my X permissions (MIT-MAGIC-COOKIE file)
correct for a Unix/Linux machine acting as an Xterminal?
[Sun Rays]
- [184]Q-24: I'm having trouble using x11vnc with my Sun Ray session.
+ [194]Q-24: I'm having trouble using x11vnc with my Sun Ray session.
[Remote Control]
- [185]Q-25: How do I stop x11vnc once it is running in the background?
+ [195]Q-25: How do I stop x11vnc once it is running in the background?
- [186]Q-26: Can I change settings in x11vnc without having to restart
+ [196]Q-26: Can I change settings in x11vnc without having to restart
it? Can I remote control it?
[Security and Permissions]
- [187]Q-27: How do I create a VNC password for use with x11vnc?
+ [197]Q-27: How do I create a VNC password for use with x11vnc?
- [188]Q-28: Can I make it so -storepasswd doesn't show my password on
+ [198]Q-28: Can I make it so -storepasswd doesn't show my password on
the screen?
- [189]Q-29: Can I have two passwords for VNC viewers, one for full
+ [199]Q-29: Can I have two passwords for VNC viewers, one for full
access and the other for view-only access to the display?
- [190]Q-30: Can I have as many full-access and view-only passwords as I
+ [200]Q-30: Can I have as many full-access and view-only passwords as I
like?
- [191]Q-31: Does x11vnc support Unix usernames and passwords? Can I
+ [201]Q-31: Does x11vnc support Unix usernames and passwords? Can I
further limit the set of Unix usernames who can connect to the VNC
desktop?
- [192]Q-32: Can I supply an external program to provide my own custom
+ [202]Q-32: Can I supply an external program to provide my own custom
login method (e.g. Dynamic/One-time passwords or non-Unix (LDAP)
usernames and passwords)?
- [193]Q-33: Why does x11vnc exit as soon as the VNC viewer disconnects?
+ [203]Q-33: Why does x11vnc exit as soon as the VNC viewer disconnects?
And why doesn't it allow more than one VNC viewer to connect at the
same time?
- [194]Q-34: Can I limit which machines incoming VNC clients can connect
+ [204]Q-34: Can I limit which machines incoming VNC clients can connect
from?
- [195]Q-35: How do I build x11vnc/libvncserver with libwrap
+ [205]Q-35: How do I build x11vnc/libvncserver with libwrap
(tcp_wrappers) support?
- [196]Q-36: Can I have x11vnc only listen on one network interface
+ [206]Q-36: Can I have x11vnc only listen on one network interface
(e.g. internal LAN) rather than having it listen on all network
interfaces and relying on -allow to filter unwanted connections out?
- [197]Q-37: Now that -localhost implies listening only on the loopback
+ [207]Q-37: Now that -localhost implies listening only on the loopback
interface, how I can occasionally allow in a non-localhost via the -R
allowonce remote control command?
- [198]Q-38: Can I fine tune what types of user input are allowed? E.g.
+ [208]Q-38: Can I fine tune what types of user input are allowed? E.g.
have some users just be able to move the mouse, but not click or type
anything?
- [199]Q-39: Can I prompt the user at the local X display whether the
+ [209]Q-39: Can I prompt the user at the local X display whether the
incoming VNC client should be accepted or not? Can I decide to make
some clients view-only? How about running an arbitrary program to make
the decisions?
- [200]Q-40: I start x11vnc as root because it is launched via inetd(8)
+ [210]Q-40: I start x11vnc as root because it is launched via inetd(8)
or a display manager like gdm(1). Can I have x11vnc later switch to a
different user?
- [201]Q-41: I use a screen-lock when I leave my workstation (e.g.
+ [211]Q-41: I use a screen-lock when I leave my workstation (e.g.
xscreensaver or xlock). When I remotely access my workstation desktop
via x11vnc I can unlock the desktop fine, but I am worried people will
see my activities on the physical monitor. What can I do to prevent
this, or at least make it more difficult?
- [202]Q-42: Can I have x11vnc automatically lock the screen when I
+ [212]Q-42: Can I have x11vnc automatically lock the screen when I
disconnect the VNC viewer?
[Encrypted Connections]
- [203]Q-43: How can I tunnel my connection to x11vnc via an encrypted
+ [213]Q-43: How can I tunnel my connection to x11vnc via an encrypted
SSH channel between two Unix machines?
- [204]Q-44: How can I tunnel my connection to x11vnc via an encrypted
+ [214]Q-44: How can I tunnel my connection to x11vnc via an encrypted
SSH channel from Windows using an SSH client like Putty?
- [205]Q-45: How can I tunnel my connection to x11vnc via an encrypted
+ [215]Q-45: How can I tunnel my connection to x11vnc via an encrypted
SSL channel using an external tool like stunnel?
- [206]Q-46: Does x11vnc have built-in SSL tunneling?
+ [216]Q-46: Does x11vnc have built-in SSL tunneling?
- [207]Q-47: How do I use VNC Viewers with built-in SSL tunneling?
+ [217]Q-47: How do I use VNC Viewers with built-in SSL tunneling?
- [208]Q-48: How do I use VNC Viewers with built-in SSL tunneling when
+ [218]Q-48: How do I use VNC Viewers with built-in SSL tunneling when
going through a Web Proxy?
- [209]Q-49: Can Apache web server act as a gateway for users to connect
+ [219]Q-49: Can Apache web server act as a gateway for users to connect
via SSL from the Internet with a Web browser to x11vnc running on
their workstations behind a firewall?
- [210]Q-50: Can I create and use my own SSL Certificate Authority (CA)
+ [220]Q-50: Can I create and use my own SSL Certificate Authority (CA)
with x11vnc?
[Display Managers and Services]
- [211]Q-51: How can I run x11vnc as a "service" that is always
+ [221]Q-51: How can I run x11vnc as a "service" that is always
available?
- [212]Q-52: How can I use x11vnc to connect to an X login screen like
+ [222]Q-52: How can I use x11vnc to connect to an X login screen like
xdm, GNOME gdm, KDE kdm, or CDE dtlogin? (i.e. nobody is logged into
an X session yet).
- [213]Q-53: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
+ [223]Q-53: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
+
+ [224]Q-54: Can I have x11vnc advertise its VNC service and port via
+ mDNS / Zeroconf (e.g. Avahi) so VNC viewers on the local network can
+ detect it automatically?
- [214]Q-54: Can I have x11vnc allow a user to log in with her UNIX
+ [225]Q-55: Can I have x11vnc allow a user to log in with her UNIX
username and password and then have it find her X session display on
that machine and then connect to it? How about starting an X session
if one cannot be found?
- [215]Q-55: Can I have x11vnc restart itself after it terminates?
+ [226]Q-56: Can I have x11vnc restart itself after it terminates?
- [216]Q-56: How do I make x11vnc work with the Java VNC viewer applet
+ [227]Q-57: How do I make x11vnc work with the Java VNC viewer applet
in a web browser?
- [217]Q-57: Are reverse connections (i.e. the VNC server connecting to
+ [228]Q-58: Are reverse connections (i.e. the VNC server connecting to
the VNC viewer) using "vncviewer -listen" and vncconnect(1) supported?
- [218]Q-58: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a
+ [229]Q-59: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a
real display, but for a virtual one I keep around).
- [219]Q-59: How can I use x11vnc on "headless" machines? Why might I
+ [230]Q-60: How can I use x11vnc on "headless" machines? Why might I
want to?
[Resource Usage and Performance]
- [220]Q-60: I have lots of memory, but why does x11vnc fail with
+ [231]Q-61: I have lots of memory, but why does x11vnc fail with
shmget: No space left on device or Minor opcode of failed
request: 1 (X_ShmAttach)?
- [221]Q-61: How can I make x11vnc use less system resources?
+ [232]Q-62: How can I make x11vnc use less system resources?
- [222]Q-62: How can I make x11vnc use MORE system resources?
+ [233]Q-63: How can I make x11vnc use MORE system resources?
- [223]Q-63: I use x11vnc over a slow link with high latency (e.g.
+ [234]Q-64: I use x11vnc over a slow link with high latency (e.g.
dialup modem or broadband), is there anything I can do to speed things
up?
- [224]Q-64: Does x11vnc support the X DAMAGE Xserver extension to find
+ [235]Q-65: Does x11vnc support the X DAMAGE Xserver extension to find
modified regions of the screen quickly and efficiently?
- [225]Q-65: My OpenGL application shows no screen updates unless I
+ [236]Q-66: My OpenGL application shows no screen updates unless I
supply the -noxdamage option to x11vnc.
- [226]Q-66: When I drag windows around with the mouse or scroll up and
+ [237]Q-67: When I drag windows around with the mouse or scroll up and
down things really bog down (unless I do the drag in a single, quick
motion). Is there anything to do to improve things?
- [227]Q-67: Why not do something like wireframe animations to avoid the
+ [238]Q-68: Why not do something like wireframe animations to avoid the
windows "lurching" when being moved or resized?
- [228]Q-68: Can x11vnc try to apply heuristics to detect when a window
+ [239]Q-69: Can x11vnc try to apply heuristics to detect when a window
is scrolling its contents and use the CopyRect encoding for a speedup?
- [229]Q-69: Can x11vnc do client-side caching of pixel data? I.e. so
+ [240]Q-70: Can x11vnc do client-side caching of pixel data? I.e. so
when that pixel data is needed again it does not have to be
retransmitted over the network.
[Mouse Cursor Shapes]
- [230]Q-70: Why isn't the mouse cursor shape (the little icon shape
+ [241]Q-71: Why isn't the mouse cursor shape (the little icon shape
where the mouse pointer is) correct as I move from window to window?
- [231]Q-71: When using XFIXES cursorshape mode, some of the cursors
+ [242]Q-72: When using XFIXES cursorshape mode, some of the cursors
look really bad with extra black borders around the cursor and other
cruft. How can I improve their appearance?
- [232]Q-72: In XFIXES mode, are there any hacks to handle cursor
+ [243]Q-73: In XFIXES mode, are there any hacks to handle cursor
transparency ("alpha channel") exactly?
[Mouse Pointer]
- [233]Q-73: Why does the mouse arrow just stay in one corner in my
+ [244]Q-74: Why does the mouse arrow just stay in one corner in my
vncviewer, whereas my cursor (that does move) is just a dot?
- [234]Q-74: Can I take advantage of the TightVNC extension to the VNC
+ [245]Q-75: Can I take advantage of the TightVNC extension to the VNC
protocol where Cursor Positions Updates are sent back to all connected
clients (i.e. passive viewers can see the mouse cursor being moved
around by another viewer)?
- [235]Q-75: Is it possible to swap the mouse buttons (e.g. left-handed
+ [246]Q-76: Is it possible to swap the mouse buttons (e.g. left-handed
operation), or arbitrarily remap them? How about mapping button clicks
to keystrokes, e.g. to partially emulate Mouse wheel scrolling?
[Keyboard Issues]
- [236]Q-76: How can I get my AltGr and Shift modifiers to work between
+ [247]Q-77: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages?
- [237]Q-77: When I try to type a "<" (i.e. less than) instead I get ">"
+ [248]Q-78: When I try to type a "<" (i.e. less than) instead I get ">"
(i.e. greater than)! Strangely, typing ">" works OK!!
- [238]Q-78: When I try to type a "<" (i.e. less than) instead I get
+ [249]Q-79: When I try to type a "<" (i.e. less than) instead I get
"<," (i.e. an extra comma).
- [239]Q-79: I'm using an "international" keyboard (e.g. German "de", or
+ [250]Q-80: I'm using an "international" keyboard (e.g. German "de", or
Danish "dk") and the -modtweak mode works well if the VNC viewer is
run on a Unix/Linux machine with a similar keyboard. But if I run
the VNC viewer on Unix/Linux with a different keyboard (e.g. "us") or
Windows with any keyboard, I can't type some keys like: "@", "$",
"<", ">", etc. How can I fix this?
- [240]Q-80: When typing I sometimes get double, triple, or more of my
+ [251]Q-81: When typing I sometimes get double, triple, or more of my
keystrokes repeated. I'm sure I only typed them once, what can I do?
- [241]Q-81: The x11vnc -norepeat mode is in effect, but I still get
+ [252]Q-82: The x11vnc -norepeat mode is in effect, but I still get
repeated keystrokes!!
- [242]Q-82: The machine where I run x11vnc has an AltGr key, but the
+ [253]Q-83: The machine where I run x11vnc has an AltGr key, but the
local machine where I run the VNC viewer does not. Is there a way I
can map a local unused key to send an AltGr? How about a Compose key
as well?
- [243]Q-83: I have a Sun machine I run x11vnc on. Its Sun keyboard has
+ [254]Q-84: I have a Sun machine I run x11vnc on. Its Sun keyboard has
just one Alt key labelled "Alt" and two Meta keys labelled with little
diamonds. The machine where I run the VNC viewer only has Alt keys.
How can I send a Meta keypress? (e.g. emacs needs this)
- [244]Q-84: Running x11vnc on HP-UX I cannot type "#" I just get a "3"
+ [255]Q-85: Running x11vnc on HP-UX I cannot type "#" I just get a "3"
instead.
- [245]Q-85: Can I map a keystroke to a mouse button click on the remote
+ [256]Q-86: Can I map a keystroke to a mouse button click on the remote
machine?
- [246]Q-86: How can I get Caps_Lock to work between my VNC viewer and
+ [257]Q-87: How can I get Caps_Lock to work between my VNC viewer and
x11vnc?
[Screen Related Issues and Features]
- [247]Q-87: The remote display is larger (in number of pixels) than the
+ [258]Q-88: The remote display is larger (in number of pixels) than the
local display I am running the vncviewer on. I don't like the
vncviewer scrollbars, what I can do?
- [248]Q-88: Does x11vnc support server-side framebuffer scaling? (E.g.
+ [259]Q-89: Does x11vnc support server-side framebuffer scaling? (E.g.
to make the desktop smaller).
- [249]Q-89: Does x11vnc work with Xinerama? (i.e. multiple monitors
+ [260]Q-90: Does x11vnc work with Xinerama? (i.e. multiple monitors
joined together to form one big, single screen).
- [250]Q-90: Can I use x11vnc on a multi-headed display that is not
+ [261]Q-91: Can I use x11vnc on a multi-headed display that is not
Xinerama (i.e. separate screens :0.0, :0.1, ... for each monitor)?
- [251]Q-91: Can x11vnc show only a portion of the display? (E.g. for a
+ [262]Q-92: Can x11vnc show only a portion of the display? (E.g. for a
special purpose rfb application).
- [252]Q-92: Does x11vnc support the XRANDR (X Resize, Rotate and
+ [263]Q-93: Does x11vnc support the XRANDR (X Resize, Rotate and
Reflection) extension? Whenever I rotate or resize the screen x11vnc
just seems to crash.
- [253]Q-93: Independent of any XRANDR, can I have x11vnc rotate and/or
+ [264]Q-94: Independent of any XRANDR, can I have x11vnc rotate and/or
reflect the screen that the VNC viewers see? (e.g. for a handheld
whose screen is rotated 90 degrees).
- [254]Q-94: Why is the view in my VNC viewer completely black? Or why
+ [265]Q-95: Why is the view in my VNC viewer completely black? Or why
is everything flashing around randomly?
- [255]Q-95: I use Linux Virtual Consoles (VC's) to implement 'Fast User
+ [266]Q-96: I use Linux Virtual Consoles (VC's) to implement 'Fast User
Switching' between users' sessions (e.g. Betty is on Ctrl-Alt-F7,
Bobby is on Ctrl-Alt-F8, and Sid is on Ctrl-Alt-F1: they use those
keystrokes to switch between their sessions). How come the view in a
@@ -1327,68 +1336,68 @@ make
otherwise all messed up unless the X session x11vnc is attached to is
in the active VC?
- [256]Q-96: I am using x11vnc where my local machine has "popup/hidden
+ [267]Q-97: I am using x11vnc where my local machine has "popup/hidden
taskbars" and the remote display where x11vnc runs also has
"popup/hidden taskbars" and they interfere and fight with eachother.
What can I do?
- [257]Q-97: Help! x11vnc and my KDE screensaver keep switching each
+ [268]Q-98: Help! x11vnc and my KDE screensaver keep switching each
other on and off every few seconds.
- [258]Q-98: I am running the beryl 3D window manager (or MythTv, Google
+ [269]Q-99: I am running the beryl 3D window manager (or MythTv, Google
Earth, or some other OpenGL app) and I do not get screen updates in
x11vnc.
- [259]Q-99: Can I use x11vnc to view my VMWare session remotely?
+ [270]Q-100: Can I use x11vnc to view my VMWare session remotely?
[Exporting non-X11 devices via VNC]
- [260]Q-100: Can non-X devices (e.g. a raw framebuffer) be viewed (and
+ [271]Q-101: Can non-X devices (e.g. a raw framebuffer) be viewed (and
even controlled) via VNC with x11vnc?
- [261]Q-101: Can I export via VNC a Webcam or TV tuner framebuffer
+ [272]Q-102: Can I export via VNC a Webcam or TV tuner framebuffer
using x11vnc?
- [262]Q-102: Can I connect via VNC to a Qt-embedded/Qtopia application
+ [273]Q-103: Can I connect via VNC to a Qt-embedded/Qtopia application
running on my handheld or PC using the Linux console framebuffer (i.e.
not X11)?
- [263]Q-103: Now that non-X11 devices can be exported via VNC using
+ [274]Q-104: Now that non-X11 devices can be exported via VNC using
x11vnc, can I build it with no dependencies on X11 header files and
libraries?
- [264]Q-104: Does x11vnc support Mac OS X Aqua/Quartz displays natively
+ [275]Q-105: Does x11vnc support Mac OS X Aqua/Quartz displays natively
(i.e. no X11 involved)?
- [265]Q-105: Can x11vnc be used as a VNC reflector/repeater to improve
+ [276]Q-106: Can x11vnc be used as a VNC reflector/repeater to improve
performance for the case of a large number of simultaneous VNC viewers
(e.g. classroom broadcasting or a large demo)?
[Misc: Clipboard, File Transfer/Sharing, Printing, Sound, Beeps,
Thanks, etc.]
- [266]Q-106: Does the Clipboard/Selection get transferred between the
+ [277]Q-107: Does the Clipboard/Selection get transferred between the
vncviewer and the X display?
- [267]Q-107: Can I use x11vnc to record a Shock Wave Flash (or other
+ [278]Q-108: Can I use x11vnc to record a Shock Wave Flash (or other
format) video of my desktop, e.g. to record a tutorial or demo?
- [268]Q-108: Can I transfer files back and forth with x11vnc?
+ [279]Q-109: Can I transfer files back and forth with x11vnc?
- [269]Q-109: Can I (temporarily) mount my local (viewer-side)
+ [280]Q-110: Can I (temporarily) mount my local (viewer-side)
Windows/Samba File share on the machine where x11vnc is running?
- [270]Q-110: Can I redirect CUPS print jobs from the remote desktop
+ [281]Q-111: Can I redirect CUPS print jobs from the remote desktop
where x11vnc is running to a printer on my local (viewer-side)
machine?
- [271]Q-111: How can I hear the sound (audio) from the remote
+ [282]Q-112: How can I hear the sound (audio) from the remote
applications on the desktop I am viewing via x11vnc?
- [272]Q-112: Why don't I hear the "Beeps" in my X session (e.g. when
+ [283]Q-113: Why don't I hear the "Beeps" in my X session (e.g. when
typing tput bel in an xterm)?
- [273]Q-113: Thanks for your program and for your help! Can I make a
+ [284]Q-114: Thanks for your program and for your help! Can I make a
donation?
_________________________________________________________________
@@ -1401,7 +1410,7 @@ make
For the former error, you need to specify the X display to connect to
(it also needs to be on the same machine the x11vnc process is to run
- on). Set your DISPLAY environment variable or use the [274]-display
+ on). Set your DISPLAY environment variable or use the [285]-display
option to specify it. Nearly always the correct value will be ":0" (in
fact, x11vnc will now assume :0 if given no other information).
@@ -1418,9 +1427,9 @@ make
working when you try to start x11vnc via, say, a remote shell.
How to Solve: See the xauth(1), Xsecurity(7), and xhost(1) man pages
- or [275]this Howto for much info on X11 permissions. For example, you
+ or [286]this Howto for much info on X11 permissions. For example, you
may need to set your XAUTHORITY environment variable or use the
- [276]-auth option to point to the correct MIT-MAGIC-COOKIE file (e.g.
+ [287]-auth option to point to the correct MIT-MAGIC-COOKIE file (e.g.
/home/joe/.Xauthority or /var/gdm/:0.Xauth or /var/lib/kdm/A:0-crWk72K
or /tmp/.gdmzndVlR, etc.), or simply be sure you run x11vnc as the
correct user (i.e. the user who is logged into the X session you wish
@@ -1442,7 +1451,7 @@ make
x11vnc -display :0 -auth /var/gdm/:0.Xauth
(this is for the display manager gdm and requires root permission to
- read the gdm cookie file, see [277]this faq for other display manager
+ read the gdm cookie file, see [288]this faq for other display manager
cookie file names). While running x11vnc as root, remember it comes
with no warranty ;-).
@@ -1452,7 +1461,7 @@ make
(from the same machine). The person could then type "xhost -localhost"
after x11vnc has connected to go back to the default permissions.
Also, for some situations the "-users lurk=" option may be of use
- (please read the documentation on the [278]-users option).
+ (please read the documentation on the [289]-users option).
To test out your X11 permissions from a remote shell, set DISPLAY and
possibly XAUTHORITY (see your shell's man page, bash(1), tcsh(1), on
@@ -1630,7 +1639,7 @@ h
earlier and perhaps non-Solaris):
First use the environment settings (CPPFLAGS, LDFLAGS, etc.) in the
- above [279]Solaris build script to run the configure command. That
+ above [290]Solaris build script to run the configure command. That
should succeed without failure. Then you have to hand edit the
autogenerated rfb/rfbconfig.h file in the source tree, and just before
the last #endif at the bottom of that file insert these workaround
@@ -1656,7 +1665,7 @@ typedef unsigned int in_addr_t;
on other older OS (Solaris, Linux, ...) releases.
Here are some notes for similar steps that need to be done to build on
- [280]SunOS 4.x
+ [291]SunOS 4.x
Please let us know if you had to use the above workaround (and whether
it worked or not). If there is enough demand we will try to push clean
@@ -1666,28 +1675,28 @@ typedef unsigned int in_addr_t;
Q-5: Where can I get a precompiled x11vnc binary for my Operating
System?
- Hopefully the [281]build steps above and [282]FAQ provide enough info
+ Hopefully the [292]build steps above and [293]FAQ provide enough info
for a painless compile for most environments. Please report problems
with the x11vnc configure, make, etc. on your system (if your system
is known to compile other GNU packages successfully).
There are precompiled x11vnc binaries built by other groups that are
available at the following locations:
- Debian: (.deb) [283]http://packages.debian.org/x11vnc
-
- Slackware: (.tgz) [284]http://www.linuxpackages.net/ Redhat/Fedora:
- (.rpm) [285]http://dag.wieers.com/packages/x11vnc/
- [286]http://dries.ulyssis.org/rpm/packages/x11vnc SuSE: (.rpm)
- [287]http://linux01.gwdg.de/~pbleser/ Solaris: (pkg)
- [288]http://www.sunfreeware.com/ FreeBSD: (.tbz)
- [289]http://www.freebsd.org/ [290]http://www.freshports.org/net/x11vnc
- OpenBSD: (.tgz) [291]http://www.openbsd.org/ NetBSD: (src)
- [292]http://pkgsrc.se/x11/x11vnc Nokia 770 (.deb)
- [293]http://mike.saunby.googlepages.com/x11vncfornokia7702 Sharp
- Zaurus [294]http://www.pdaxrom.org/ and [295]http://www.focv.com/
+ Debian: (.deb) [294]http://packages.debian.org/x11vnc
+
+ Slackware: (.tgz) [295]http://www.linuxpackages.net/ Redhat/Fedora:
+ (.rpm) [296]http://dag.wieers.com/packages/x11vnc/
+ [297]http://dries.ulyssis.org/rpm/packages/x11vnc SuSE: (.rpm)
+ [298]http://linux01.gwdg.de/~pbleser/ Solaris: (pkg)
+ [299]http://www.sunfreeware.com/ FreeBSD: (.tbz)
+ [300]http://www.freebsd.org/ [301]http://www.freshports.org/net/x11vnc
+ OpenBSD: (.tgz) [302]http://www.openbsd.org/ NetBSD: (src)
+ [303]http://pkgsrc.se/x11/x11vnc Nokia 770 (.deb)
+ [304]http://mike.saunby.googlepages.com/x11vncfornokia7702 Sharp
+ Zaurus [305]http://www.pdaxrom.org/ and [306]http://www.focv.com/
If the above binaries don't work and building x11vnc on your OS fails
- (and all else fails!) you can try one of [296]my collection of
+ (and all else fails!) you can try one of [307]my collection of
binaries for various OS's and x11vnc releases.
As a general note, the x11vnc program is simple enough you don't
@@ -1705,7 +1714,7 @@ typedef unsigned int in_addr_t;
If you use a standalone binary like this and also want x11vnc to serve
up the Java VNC Viewer jar file (either SSL enabled or regular one),
then you will need to extract the classes subdirectory from the source
- tarball and point x11vnc to it via the [297]-httpdir option. E.g.:
+ tarball and point x11vnc to it via the [308]-httpdir option. E.g.:
x11vnc -httpdir /path/to/x11vnc-0.8.3/classes/ssl ...
@@ -1714,11 +1723,11 @@ typedef unsigned int in_addr_t;
To obtain VNC viewers for the viewing side (Windows, Mac OS, or Unix)
try here:
- * [298]http://www.tightvnc.com/download.html
- * [299]http://www.realvnc.com/download-free.html
- * [300]http://sourceforge.net/projects/cotvnc/
- * [301]http://www.ultravnc.com/
- * [302]Our Enhanced TightVNC Viewer (ssvnc)
+ * [309]http://www.tightvnc.com/download.html
+ * [310]http://www.realvnc.com/download-free.html
+ * [311]http://sourceforge.net/projects/cotvnc/
+ * [312]http://www.ultravnc.com/
+ * [313]Our Enhanced TightVNC Viewer (ssvnc)
Q-7: How can I see all of x11vnc's command line options and
@@ -1726,7 +1735,7 @@ typedef unsigned int in_addr_t;
Run: x11vnc -opts to list just the option names or run: x11vnc
-help for long descriptions about each option. The output is listed
- [303]here as well. Yes, x11vnc does have a lot of options, doesn't
+ [314]here as well. Yes, x11vnc does have a lot of options, doesn't
it...
@@ -1758,10 +1767,10 @@ display :0
program is needed for operation. The gui is not particularly
user-friendly, it just provides a point and click mode to set all the
many x11vnc parameters and obtain help on them. It is also very useful
- for testing. See the [304]-gui option for more info. Examples: "x11vnc
+ for testing. See the [315]-gui option for more info. Examples: "x11vnc
... -gui" and "x11vnc ... -gui other:0" in the latter case the gui is
displayed on other:0, not the X display x11vnc is polling. There is
- also a "[305]-gui tray" system tray mode.
+ also a "[316]-gui tray" system tray mode.
Q-9: How can I get the GUI to run in the System Tray, or at least be a
@@ -1796,7 +1805,7 @@ display :0
PORT=59xx line to see which port it found, then subtract 5900 from it
for the VNC display number to enter into the VNC Viewer(s).
- The "[306]-N" option will try to match the VNC display number to the X
+ The "[317]-N" option will try to match the VNC display number to the X
display (e.g. X11 DISPLAY of :5 (port 6005) will have VNC display :5
(port 5905)).
@@ -1804,11 +1813,11 @@ display :0
Q-11: Can I make x11vnc more quiet and also go into the background
after starting up?
- Use the [307]-q and [308]-bg options, respectively. (also: -quiet is
+ Use the [318]-q and [319]-bg options, respectively. (also: -quiet is
an alias for -q)
Note that under -bg the stderr messages will be lost unless you use
- the "[309]-o logfile" option.
+ the "[320]-o logfile" option.
Q-12: Sometimes when a VNC viewer dies abruptly, x11vnc also dies with
@@ -1829,7 +1838,7 @@ display :0
There are some options. They are enabled by adding something like
-Dxxxx=1 to the CPPFLAGS environment variable before running configure
- (see the [310]build notes for general background).
+ (see the [321]build notes for general background).
/*
* Mar/2006
* Build-time customization via CPPFLAGS.
@@ -1900,21 +1909,21 @@ display :0
dual-screen mode to pass the keystrokes and mouse motions to the X11
display?
- Yes, for best response start up x11vnc with the "[311]-nofb" option
+ Yes, for best response start up x11vnc with the "[322]-nofb" option
(disables framebuffer polling, and does other optimizations) on the
secondary display (X11) machine. Then start up Win2VNC on the primary
display (Windows) referring it to the secondary display.
- This will also work X11 to X11 using [312]x2vnc, however you would
+ This will also work X11 to X11 using [323]x2vnc, however you would
probably just want to avoid VNC and use x2x for that.
For reference, here are some links to Win2VNC-like programs for
multiple monitor setups:
- * [313]Original Win2VNC
- * [314]Enhanced Win2VNC and [315]sourceforge link
- * [316]x2vnc
- * [317]x2x also [318]here
- * [319]zvnc (MorphOS)
+ * [324]Original Win2VNC
+ * [325]Enhanced Win2VNC and [326]sourceforge link
+ * [327]x2vnc
+ * [328]x2x also [329]here
+ * [330]zvnc (MorphOS)
All of them will work with x11vnc (except x2x where it is not needed).
@@ -1934,7 +1943,7 @@ display :0
on your display to be depth 24 TrueColor? Sun machines often have 8+24
overlay/multi-depth visuals, and you can make the default visual depth
24 TrueColor (see fbconfig(1) and Xsun(1)). 2) As of Feb/2004 x11vnc
- has the [320]-visual option to allow you to force the framebuffer
+ has the [331]-visual option to allow you to force the framebuffer
visual to whatever you want (this usually messes up the colors unless
you are very clever). In this case, the option provides a convenient
workaround for the Win2VNC bug:
@@ -1948,7 +1957,7 @@ display :0
and keyboard input to it from Windows and X11 machines via Win2VNC and
x2vnc, respectively?
- Yes, as of Nov/2006 [321]you can. There may be a trick or two you'll
+ Yes, as of Nov/2006 [332]you can. There may be a trick or two you'll
need to do to get the Clipboard exchange between the machines to work.
@@ -1959,7 +1968,7 @@ display :0
PseudoColor (i.e. only 256 distinct colors). The x11vnc colors may
start out OK, but after a while they are incorrect in certain windows.
- Use the [322]-flashcmap option to have x11vnc watch for changes in the
+ Use the [333]-flashcmap option to have x11vnc watch for changes in the
colormap, and propagate those changes back to connected clients. This
can be slow (since the whole screen must be updated over the network
whenever the colormap changes). This flashing colormap behavior often
@@ -1968,13 +1977,13 @@ display :0
example of this. Consider reconfiguring the system to 16 bpp or depth
24 TrueColor if at all possible.
- Also note the option [323]-8to24 (Jan/2006) can often remove the need
+ Also note the option [334]-8to24 (Jan/2006) can often remove the need
for flashing the colormap. Everything is dynamically transformed to
depth 24 at 32 bpp using the colormaps. There may be painting errors
however (see the following FAQ for tips on reducing and correcting
them).
- In some rare cases the [324]-notruecolor option has corrected colors
+ In some rare cases the [335]-notruecolor option has corrected colors
on 8bpp displays. The red, green, and blue masks were non-zero in 8bpp
PseudoColor on an obscure setup, and this option corrected the
problems.
@@ -1985,13 +1994,13 @@ display :0
different color depths: e.g. there are both depth 8 and 24 visuals
available at the same time.
- You may want to review the [325]previous question regarding 8 bpp
+ You may want to review the [336]previous question regarding 8 bpp
PseudoColor.
- On some hardware (Sun/SPARC and SGI), the [326]-overlay option
+ On some hardware (Sun/SPARC and SGI), the [337]-overlay option
discussed a couple paragraphs down may solve this for you (you may
want to skip to it directly). On other hardware the less robust
- [327]-8to24 option may help (also discussed below).
+ [338]-8to24 option may help (also discussed below).
Run xdpyinfo(1) to see what the default visual is and what the depths
of the other visuals are. Does the default visual have a depth of 8
@@ -2027,7 +2036,7 @@ TrueColor defdepth 24
The -overlay mode: Another option is if the system with overlay
visuals is a Sun system running Solaris or SGI running IRIX you can
- use the [328]-overlay x11vnc option (Aug/2004) to have x11vnc use the
+ use the [339]-overlay x11vnc option (Aug/2004) to have x11vnc use the
Solaris XReadScreen(3X11) function to poll the "true view" of the
whole screen at depth 24 TrueColor. XReadDisplay(3X11) is used on
IRIX. This is useful for Legacy applications (older versions of
@@ -2052,7 +2061,7 @@ TrueColor defdepth 24
Xsun, e.g. in your /etc/dt/config/Xservers file).
- The -8to24 mode: The [329]-8to24 x11vnc option (Jan/2006) is a kludge
+ The -8to24 mode: The [340]-8to24 x11vnc option (Jan/2006) is a kludge
to try to dynamically rewrite the pixel values so that the 8bpp part
of the screen is mapped onto depth 24 TrueColor. This is less robust
than the -overlay mode because it is done by x11vnc outside of the X
@@ -2066,11 +2075,11 @@ TrueColor defdepth 24
32bpp view is exported via VNC.
Even on pure 8bpp displays it can be used as an alternative to
- [330]-flashcmap to avoid color flashing completely.
+ [341]-flashcmap to avoid color flashing completely.
This scheme is approximate and can often lead to painting errors. You
can manually correct most painting errors by pressing 3 Alt_L's in a
- row, or by using something like: [331]-fixscreen V=3.0 to
+ row, or by using something like: [342]-fixscreen V=3.0 to
automatically refresh the screen every 3 seconds. Also -fixscreen
8=3.0 has been added to just refresh the non-default visual parts of
the screen.
@@ -2083,23 +2092,23 @@ TrueColor defdepth 24
nogetimage can give a nice speedup if the default depth 24 X server
supports hiding the 8bpp bits in bits 25-32 of the framebuffer data.
On very slow machines -8to24 poll=0.2,cachewin=5.0 gives an useful
- speedup. See the [332]-8to24 help description for information on
+ speedup. See the [343]-8to24 help description for information on
tunable parameters, etc.
Colors still not working correctly? Run xwininfo on the application
with the incorrect colors to verify that the depth of its visual is
different from the default visual depth (gotten from xdpyinfo). One
- possible workaround in this case is to use the [333]-id option to
+ possible workaround in this case is to use the [344]-id option to
point x11vnc at the application window itself. If the application is
complicated (lots of toplevel windows and popup menus) this may not be
acceptable, and may even crash x11vnc (but not the application).
It is theoretically possible to solve this problem in general (see
xwd(1) for example), but it does not seem trivial or sufficiently fast
- for x11vnc to be able to do so in real time. The [334]-8to24 method
+ for x11vnc to be able to do so in real time. The [345]-8to24 method
does this approximately and is somewhat usable. Fortunately the
- [335]-overlay option works for Solaris machines with overlay visuals
+ [346]-overlay option works for Solaris machines with overlay visuals
where most of this problem occurs.
@@ -2110,9 +2119,9 @@ TrueColor defdepth 24
the desired application window. After clicking, it will print out much
information, including the window id (e.g. 0x6000010). Also, the
visual and depth of the window printed out is often useful in
- debugging x11vnc [336]color problems.
+ debugging x11vnc [347]color problems.
- Also, as of Dec/2004 you can use "[337]-id pick" to have x11vnc run
+ Also, as of Dec/2004 you can use "[348]-id pick" to have x11vnc run
xwininfo(1) for you and after you click the window it extracts the
windowid. Besides "pick" there is also "id:root" to allow you to go
back to root window when doing remote-control.
@@ -2130,7 +2139,7 @@ TrueColor defdepth 24
you should be able to see these transient windows.
If things are not working and you still want to do the single window
- polling, try the [338]-sid windowid option ("shifted" windowid).
+ polling, try the [349]-sid windowid option ("shifted" windowid).
Q-21: My X display is depth 24 at 24bpp (instead of the normal depth
@@ -2165,7 +2174,7 @@ TrueColor defdepth 24
handle 24bpp from the server, so you may want to use those. They
evidently request 32 bpp and libvncserver obliges.
- Update: as of Apr/2006 you can use the [339]-24to32 option to have
+ Update: as of Apr/2006 you can use the [350]-24to32 option to have
x11vnc dynamically transform the 24bpp pixel data to 32bpp. This extra
transformation could slow things down further however.
@@ -2184,15 +2193,15 @@ TrueColor defdepth 24
since you will be polling the X display over the network as opposed to
over the local hardware. To do this, run x11vnc on a UNIX machine as
close as possible network-wise (e.g. same switch) to the Xterminal
- machine. Use the [340]-display option to point the display to that of
+ machine. Use the [351]-display option to point the display to that of
the Xterminal (you'll of course need basic X11 permission to do that)
- and finally supply the [341]-noshm option (this enables the polling
+ and finally supply the [352]-noshm option (this enables the polling
over the network).
The response will likely be sluggish (maybe only one "frame" per
second). This mode is not recommended except for "quick checks" of
hard to get to X servers. Use something like "-wait 150" to cut down
- on the polling rate. You may also need [342]-flipbyteorder if the
+ on the polling rate. You may also need [353]-flipbyteorder if the
colors get messed up due to endian byte order differences.
Q-23: How do I get my X permissions (MIT-MAGIC-COOKIE file) correct
@@ -2216,7 +2225,7 @@ TrueColor defdepth 24
copied to the Xterminal. If $HOME/.Xauthority is exported via NFS
(this is insecure of course, but has been going on for decades), then
x11vnc can simply pick it up via NFS (you may need to use the
- [343]-auth option to point to the correct file). Other options include
+ [354]-auth option to point to the correct file). Other options include
copying the auth file using scp, or something like:
central-server> xauth nextract - xterm123:0 | ssh xterm123 xauth nmerge -
@@ -2228,7 +2237,7 @@ TrueColor defdepth 24
details.
If the display name in the cookie file needs to be changed between the
- two hosts, see [344]this note on the "xauth add ..." command.
+ two hosts, see [355]this note on the "xauth add ..." command.
A less secure option is to run something like "xhost +127.0.0.1" while
sitting at the Xterminal box to allow cookie-free local access for
@@ -2242,7 +2251,7 @@ TrueColor defdepth 24
occasional app more efficiently locally on the Xterminal box (e.g.
realplayer).
- Not recommended, but as a last resort, you could have x11vnc [345]poll
+ Not recommended, but as a last resort, you could have x11vnc [356]poll
the Xterminal Display over the network. For this you would run a
"x11vnc -noshm ..." process on the central-server (and hope the
network admin doesn't get angry...)
@@ -2271,13 +2280,13 @@ TrueColor defdepth 24
Q-24: I'm having trouble using x11vnc with my Sun Ray session.
- The [346]Sun Ray technology is a bit like "VNC done in hardware" (the
+ The [357]Sun Ray technology is a bit like "VNC done in hardware" (the
Sun Ray terminal device, DTU, playing the role of the vncviewer).
Completely independent of that, the SunRay user's session is still an
X server that speaks the X11 protocol and so x11vnc simply talks to
the X server part to export the SunRay desktop to any place in the
world (i.e. not only to a Sun Ray terminal device), creating a sort of
- "Soft Ray". Please see [347]this discussion of Sun Ray issues for
+ "Soft Ray". Please see [358]this discussion of Sun Ray issues for
solutions to problems.
[Remote Control]
@@ -2285,18 +2294,18 @@ TrueColor defdepth 24
Q-25: How do I stop x11vnc once it is running in the background?
As of Dec/2004 there is a remote control feature. It can change a huge
- amount of things on the fly: see the [348]-remote and [349]-query
+ amount of things on the fly: see the [359]-remote and [360]-query
options. To shut down the running x11vnc server just type "x11vnc -R
stop". To disconnect all clients do "x11vnc -R disconnect:all", etc.
- If the [350]-forever option has not been supplied, x11vnc will
+ If the [361]-forever option has not been supplied, x11vnc will
automatically exit after the first client disconnects. In general if
you cannot use the remote control, then you will have to kill the
x11vnc process This can be done via: "kill NNNNN" (where NNNNN is the
x11vnc process id number found from ps(1)), or "pkill x11vnc", or
"killall x11vnc" (Linux only).
- If you have not put x11vnc in the background via the [351]-bg option
+ If you have not put x11vnc in the background via the [362]-bg option
or shell & operator, then simply press Ctrl-C in the shell where
x11vnc is running to stop it.
@@ -2306,15 +2315,15 @@ TrueColor defdepth 24
down state in the Xserver. Tapping the stuck key (either via a new
x11vnc or at the physical console) will release it from the stuck
state. If the keyboard seems to be acting strangely it is often fixed
- by tapping Ctrl, Shift, and Alt. Alternatively, the [352]-clear_mods
- option and [353]-clear_keys option can be used to release pressed keys
+ by tapping Ctrl, Shift, and Alt. Alternatively, the [363]-clear_mods
+ option and [364]-clear_keys option can be used to release pressed keys
at startup and exit.
Q-26: Can I change settings in x11vnc without having to restart it?
Can I remote control it?
- Look at the [354]-remote (same as -R) and [355]-query (same as -Q)
+ Look at the [365]-remote (same as -R) and [366]-query (same as -Q)
options added in Dec/2004. They allow nearly everything to be changed
dynamically and settings to be queried. Examples: "x11vnc -R shared",
"x11vnc -R forever", "x11vnc -R scale:3/4", "x11vnc -Q modtweak",
@@ -2325,7 +2334,7 @@ TrueColor defdepth 24
correctly for communication to be possible.
There is also a simple Tcl/Tk gui based on this remote control
- mechanism. See the [356]-gui option for more info. You will need to
+ mechanism. See the [367]-gui option for more info. You will need to
have Tcl/Tk (i.e. /usr/bin/wish) installed for it to work. It can also
run in the system tray: "-gui tray" or as a standalone icon window:
"-gui icon".
@@ -2340,12 +2349,12 @@ TrueColor defdepth 24
vncpasswd(1) program from those packages.
As of Jun/2004 x11vnc supports the -storepasswd "pass" "file"
- [357]option, which is the same functionality of storepasswd. Be sure
+ [368]option, which is the same functionality of storepasswd. Be sure
to quote the "pass" if it contains shell meta characters, spaces, etc.
Example:
x11vnc -storepasswd 'sword*fish' $HOME/myvncpasswd
- You then use the password via the x11vnc option: "[358]-rfbauth
+ You then use the password via the x11vnc option: "[369]-rfbauth
$HOME/myvncpasswd"
As of Jan/2006 if you do not supply any arguments:
@@ -2357,11 +2366,11 @@ TrueColor defdepth 24
~/.mypass", the password you are prompted for will be stored in that
file.
- x11vnc also has the [359]-passwdfile and -passwd/-viewpasswd plain
+ x11vnc also has the [370]-passwdfile and -passwd/-viewpasswd plain
text (i.e. not obscured like the -rfbauth VNC passwords) password
options.
- You can use the [360]-usepw option to automatically use any password
+ You can use the [371]-usepw option to automatically use any password
file you have in ~/.vnc/passwd or ~/.vnc/passwdfile (the latter is
used with the -passwdfile option).
@@ -2393,14 +2402,14 @@ TrueColor defdepth 24
Q-29: Can I have two passwords for VNC viewers, one for full access
and the other for view-only access to the display?
- Yes, as of May/2004 there is the [361]-viewpasswd option to supply the
- view-only password. Note the full-access password option [362]-passwd
+ Yes, as of May/2004 there is the [372]-viewpasswd option to supply the
+ view-only password. Note the full-access password option [373]-passwd
must be supplied at the same time. E.g.: -passwd sword -viewpasswd
fish.
To avoid specifying the passwords on the command line (where they
could be observed via the ps(1) command by any user) you can use the
- [363]-passwdfile option to specify a file containing plain text
+ [374]-passwdfile option to specify a file containing plain text
passwords. Presumably this file is readable only by you, and ideally
it is located on the machine x11vnc is run on (to avoid being snooped
on over the network). The first line of this file is the full-access
@@ -2408,7 +2417,7 @@ TrueColor defdepth 24
it is taken as the view-only password. (use "__EMPTY__" to supply an
empty one).
- View-only passwords currently do not work for the [364]-rfbauth
+ View-only passwords currently do not work for the [375]-rfbauth
password option (standard VNC password storing mechanism). FWIW, note
that although the output (usually placed in $HOME/.vnc/passwd) by the
vncpasswd or storepasswd programs (or from x11vnc -storepasswd) looks
@@ -2421,7 +2430,7 @@ TrueColor defdepth 24
Q-30: Can I have as many full-access and view-only passwords as I
like?
- Yes, as of Jan/2006 in the libvncserver CVS the [365]-passwdfile
+ Yes, as of Jan/2006 in the libvncserver CVS the [376]-passwdfile
option has been extended to handle as many passwords as you like. You
put the view-only passwords after a line __BEGIN_VIEWONLY__.
@@ -2431,7 +2440,7 @@ TrueColor defdepth 24
Q-31: Does x11vnc support Unix usernames and passwords? Can I further
limit the set of Unix usernames who can connect to the VNC desktop?
- Update: as of Feb/2006 x11vnc has the [366]-unixpw option that does
+ Update: as of Feb/2006 x11vnc has the [377]-unixpw option that does
this outside of the VNC protocol and libvncserver. The standard su(1)
program is used to validate the user's password. A familiar "login:"
and "Password:" dialog is presented to the user on a black screen
@@ -2441,7 +2450,7 @@ TrueColor defdepth 24
A list of allowed Unix usernames may also be supplied along with
per-user settings.
- There is also the [367]-unixpw_nis option for non-shadow-password
+ There is also the [378]-unixpw_nis option for non-shadow-password
(typically NIS environments, hence the name) systems where the
traditional getpwnam() and crypt() functions are used instead of
su(1). The encrypted user passwords must be accessible to the user
@@ -2450,11 +2459,11 @@ TrueColor defdepth 24
shadow(5).
Two settings are enforced in the -unixpw and -unixpw_nis modes to
- provide extra security: the 1) [368]-localhost and 2) [369]-stunnel or
- [370]-ssl options. Without these one might send the Unix username and
+ provide extra security: the 1) [379]-localhost and 2) [380]-stunnel or
+ [381]-ssl options. Without these one might send the Unix username and
password data in clear text over the network which is a very bad idea.
They can be relaxed if you want to provide encryption other than
- stunnel or [371]-ssl (the constraint is automatically relaxed if
+ stunnel or [382]-ssl (the constraint is automatically relaxed if
SSH_CONNECTION is set and indicates you have ssh-ed in, however the
-localhost requirement is still enforced).
@@ -2473,13 +2482,13 @@ TrueColor defdepth 24
approximate at best.
One approximate method involves starting x11vnc with the
- [372]-localhost option. This basically requires the viewer user to log
+ [383]-localhost option. This basically requires the viewer user to log
into the workstation where x11vnc is running via their Unix username
and password, and then somehow set up a port redirection of his
vncviewer connection to make it appear to emanate from the local
machine. As discussed above, ssh is useful for this: "ssh -L
5900:localhost:5900 user@hostname ..." See the ssh wrapper scripts
- mentioned [373]elsewhere on this page. [374]stunnel does this as well.
+ mentioned [384]elsewhere on this page. [385]stunnel does this as well.
Of course a malicious user could allow other users to get in through
his channel, but that is a problem with every method. Another thing to
@@ -2490,7 +2499,7 @@ TrueColor defdepth 24
traditional way would be to further require a VNC password to supplied
(-rfbauth, -passwd, etc) and only tell the people allowed in what the
VNC password is. A scheme that avoids a second password involves using
- the [375]-accept option that runs a program to examine the connection
+ the [386]-accept option that runs a program to examine the connection
information to determine which user is connecting from the local
machine. That may be difficult to do, but, for example, the program
could use the ident service on the local machine (normally ident
@@ -2526,7 +2535,7 @@ exit 1 # reject it
method (e.g. Dynamic/One-time passwords or non-Unix (LDAP) usernames
and passwords)?
Yes, there are several possibilities. For background see the FAQ on
- the [376]-accept where an external program may be run to decide if a
+ the [387]-accept where an external program may be run to decide if a
VNC client should be allowed to try to connect and log in. If the
program (or local user prompted by a popup) answers "yes", then
-accept proceeds to the normal VNC and x11vnc authentication methods,
@@ -2534,26 +2543,26 @@ exit 1 # reject it
To provide more direct coupling to the VNC client's username and/or
supplied password the following options were added in Sep/2006:
- * [377]-unixpw_cmd command
- * [378]-passwdfile cmd:command
- * [379]-passwdfile custom:command
+ * [388]-unixpw_cmd command
+ * [389]-passwdfile cmd:command
+ * [390]-passwdfile custom:command
In each case "command" is an external command run by x11vnc. You
supply it. For example, it may couple to your LDAP system or other
servers you set up.
- For [380]-unixpw_cmd the normal [381]-unixpw Login: and Password:
+ For [391]-unixpw_cmd the normal [392]-unixpw Login: and Password:
prompts are supplied to the VNC viewer and the strings the client
returns are then piped into "command" as the first two lines of its
standard input. If the command returns success, i.e. exit(0), the VNC
client is accepted, otherwise it is rejected.
- For "[382]-passwdfile cmd:command" the command is run and it returns a
- password list (like a password file, see the [383]-passwdfile
+ For "[393]-passwdfile cmd:command" the command is run and it returns a
+ password list (like a password file, see the [394]-passwdfile
read:filename mode). Perhaps a dynamic, one-time password is retrieved
from a server this way.
- For "[384]-passwdfile custom:command" one gets complete control over
+ For "[395]-passwdfile custom:command" one gets complete control over
the VNC challenge-response dialog with the VNC client. x11vnc sends
out a string of random bytes (16 by the VNC spec) and the client
returns the same number of bytes in a way the server can verify only
@@ -2567,7 +2576,7 @@ exit 1 # reject it
it is rejected.
In all cases the "RFB_*" enviornment variables are set as under
- [385]-accept. These variables can provide useful information for the
+ [396]-accept. These variables can provide useful information for the
externally supplied program to use.
@@ -2577,15 +2586,15 @@ exit 1 # reject it
These defaults are simple safety measures to avoid someone unknowingly
leaving his X11 desktop exposed (to the internet, say) for long
- periods of time. Use the [386]-forever option (aka -many) to have
+ periods of time. Use the [397]-forever option (aka -many) to have
x11vnc wait for more connections after the first client disconnects.
- Use the [387]-shared option to have x11vnc allow multiple clients to
+ Use the [398]-shared option to have x11vnc allow multiple clients to
connect simultaneously.
- Recommended additional safety measures include using ssh ([388]see
- above), stunnel, [389]-ssl, or a VPN to authenticate and encrypt the
+ Recommended additional safety measures include using ssh ([399]see
+ above), stunnel, [400]-ssl, or a VPN to authenticate and encrypt the
viewer connections or to at least use the -rfbauth passwd-file
- [390]option to use VNC password protection (or [391]-passwdfile) It is
+ [401]option to use VNC password protection (or [402]-passwdfile) It is
up to YOU to apply these security measures, they will not be done for
you automatically.
@@ -2593,7 +2602,7 @@ exit 1 # reject it
Q-34: Can I limit which machines incoming VNC clients can connect
from?
- Yes, look at the [392]-allow and [393]-localhost options to limit
+ Yes, look at the [403]-allow and [404]-localhost options to limit
connections by hostname or IP address. E.g.
x11vnc -allow 192.168.0.1,192.168.0.2
@@ -2605,7 +2614,7 @@ exit 1 # reject it
Note that -localhost achieves the same thing as "-allow 127.0.0.1"
For more control, build libvncserver with libwrap support
- [394](tcp_wrappers) and then use /etc/hosts.allow See hosts_access(5)
+ [405](tcp_wrappers) and then use /etc/hosts.allow See hosts_access(5)
for complete details.
@@ -2625,7 +2634,7 @@ exit 1 # reject it
is "vnc", e.g.:
vnc: 192.168.100.3 .example.com
- Note that if you run x11vnc out of [395]inetd you do not need to build
+ Note that if you run x11vnc out of [406]inetd you do not need to build
x11vnc with libwrap support because the /usr/sbin/tcpd reference in
/etc/inetd.conf handles the tcp_wrappers stuff.
@@ -2634,15 +2643,15 @@ exit 1 # reject it
internal LAN) rather than having it listen on all network interfaces
and relying on -allow to filter unwanted connections out?
- As of Mar/2005 there is the "[396]-listen ipaddr" option that enables
+ As of Mar/2005 there is the "[407]-listen ipaddr" option that enables
this. For ipaddr either supply the desired network interface's IP
address (or use a hostname that resolves to it) or use the string
"localhost". For additional filtering simultaneously use the
- "[397]-allow host1,..." option to allow only specific hosts in.
+ "[408]-allow host1,..." option to allow only specific hosts in.
This option is useful if you want to insure that no one can even begin
a dialog with x11vnc from untrusted network interfaces (e.g. ppp0).
- The option [398]-localhost now implies "-listen localhost" since that
+ The option [409]-localhost now implies "-listen localhost" since that
is what most people expect it to do.
@@ -2650,7 +2659,7 @@ exit 1 # reject it
interface, how I can occasionally allow in a non-localhost via the -R
allowonce remote control command?
- To do this specify "[399]-allow localhost". Unlike [400]-localhost
+ To do this specify "[410]-allow localhost". Unlike [411]-localhost
this will leave x11vnc listening on all interfaces (but of course only
allowing in local connections, e.g. ssh redirs). Then you can later
run "x11vnc -R allowonce:somehost" or use to gui to permit a one-shot
@@ -2661,7 +2670,7 @@ exit 1 # reject it
some users just be able to move the mouse, but not click or type
anything?
- As of Feb/2005, the [401]-input option allows you to do this. "K",
+ As of Feb/2005, the [412]-input option allows you to do this. "K",
"M", "B", and "C" stand for Keystroke, Mouse-motion, Button-clicks,
and Clipboard, respectively. The setting: "-input M" makes attached
viewers only able to move the mouse. "-input KMBC,M" lets normal
@@ -2676,7 +2685,7 @@ exit 1 # reject it
some clients view-only? How about running an arbitrary program to make
the decisions?
- Yes, look at the "[402]-accept command" option, it allows you to
+ Yes, look at the "[413]-accept command" option, it allows you to
specify an external command that is run for each new client. (use
quotes around the command if it contains spaces, etc.). If the
external command returns 0 the client is accepted, otherwise the
@@ -2695,7 +2704,7 @@ exit 1 # reject it
own simple popup window. To accept the client press "y" or click mouse
on the "Yes" button. To reject the client press "n" or click mouse on
the "No" button. To accept the client View-only, press "v" or click
- mouse on the "View" button. If the [403]-viewonly option has been
+ mouse on the "View" button. If the [414]-viewonly option has been
supplied, the "View" action will not be present: the whole display is
view only in that case.
@@ -2711,7 +2720,7 @@ exit 1 # reject it
program to prompt the user whether the client should be accepted or
not. This requires that you have xmessage installed and available via
PATH. In case it is not already on your system, the xmessage program
- is available at [404]ftp://ftp.x.org/
+ is available at [415]ftp://ftp.x.org/
To include view-only decisions for the external commands, prefix the
command something like this: "yes:0,no:*,view:3 mycommand ..." This
@@ -2750,7 +2759,7 @@ elif [ $rc = 4 ]; then
fi
exit 1
- Stefan Radman has written a nice dtksh script [405]dtVncPopup for use
+ Stefan Radman has written a nice dtksh script [416]dtVncPopup for use
in CDE environments to do the same sort of thing. Information on how
to use it is found at the top of the file. He encourages you to
provide feedback to him to help improve the script.
@@ -2759,13 +2768,13 @@ exit 1
popup is being run, so attached clients will not receive screen
updates, etc during this period.
- To run a command when a client disconnects, use the "[406]-gone
+ To run a command when a client disconnects, use the "[417]-gone
command" option. This is for the user's convenience only: the return
code of the command is not interpreted by x11vnc. The same environment
variables are set as in "-accept command" (except that RFB_MODE will
be "gone").
- As of Jan/2006 the "[407]-afteraccept command" option will run the
+ As of Jan/2006 the "[418]-afteraccept command" option will run the
command only after the VNC client has been accepted and authenticated.
Like -gone the return code is not interprted. RFB_MODE will be
"afteraccept").
@@ -2775,7 +2784,7 @@ exit 1
display manager like gdm(1). Can I have x11vnc later switch to a
different user?
- As of Feb/2005 x11vnc has the [408]-users option that allows things
+ As of Feb/2005 x11vnc has the [419]-users option that allows things
like this. Please read the documentation on it (also in the x11vnc
-help output) carefully for features and caveats. It's use can often
decrease security unless care is taken.
@@ -2800,7 +2809,7 @@ exit 1
In any event, as of Jun/2004 there is an experimental utility to make
it more difficult for nosey people to see your x11vnc activities. The
- source for it is [409]blockdpy.c The idea behind it is simple (but
+ source for it is [420]blockdpy.c The idea behind it is simple (but
obviously not bulletproof): when a VNC client attaches to x11vnc put
the display monitor in the DPMS "off" state, if the DPMS state ever
changes immediately start up the screen-lock program. The x11vnc user
@@ -2816,8 +2825,8 @@ exit 1
bulletproof. A really robust solution would likely require X server
and perhaps even video hardware support.
- The blockdpy utility is launched by the [410]-accept option and told
- to exit via the [411]-gone option (the vnc client user should
+ The blockdpy utility is launched by the [421]-accept option and told
+ to exit via the [422]-gone option (the vnc client user should
obviously re-lock the screen before disconnecting!). Instructions can
be found in the source code for the utility at the above link. Roughly
it is something like this:
@@ -2826,17 +2835,17 @@ exit 1
but please read the top of the file.
Update: As of Feb/2007 there is some builtin support for this:
- [412]-forcedpms and [413]-clientdpms however, they are probably less
+ [423]-forcedpms and [424]-clientdpms however, they are probably less
robust than the above blockdpy.c scheme, since if the person floods
the physical machine with mouse or pointer input he can usually see
flashes of the screen before the monitor is powered off again. See
- also the [414]-grabkbd, [415]-grabptr, and [416]-grabalways options.
+ also the [425]-grabkbd, [426]-grabptr, and [427]-grabalways options.
Q-42: Can I have x11vnc automatically lock the screen when I
disconnect the VNC viewer?
- Yes, a user mentions he uses the [417]-gone option under CDE to run a
+ Yes, a user mentions he uses the [428]-gone option under CDE to run a
screen lock program:
x11vnc -display :0 -forever -gone 'dtaction LockDisplay'
@@ -2845,7 +2854,7 @@ exit 1
x11vnc -display :0 -forever -gone 'kdesktop_lock'
x11vnc -display :0 -forever -gone 'xlock &'
- Here is a scheme using the [418]-afteraccept option (in version 0.7.3)
+ Here is a scheme using the [429]-afteraccept option (in version 0.7.3)
to unlock the screen after the first valid VNC login and to lock the
screen after the last valid VNC login disconnects:
x11vnc -display :0 -forever -shared -afteraccept ./myxlocker -gone ./myxlocke
@@ -2876,21 +2885,21 @@ fi
Q-43: How can I tunnel my connection to x11vnc via an encrypted SSH
channel between two Unix machines?
- See the description earlier on this page on [419]how to tunnel VNC via
+ See the description earlier on this page on [430]how to tunnel VNC via
SSH from Unix to Unix. A number of ways are described along with some
issues you may encounter.
Other secure encrypted methods exists, e.g. stunnel, IPSEC, various
VPNs, etc.
- See also the [420]Enhanced TightVNC Viewer (ssvnc) page where much of
+ See also the [431]Enhanced TightVNC Viewer (ssvnc) page where much of
this is now automated.
Q-44: How can I tunnel my connection to x11vnc via an encrypted SSH
channel from Windows using an SSH client like Putty?
- [421]Above we described how to tunnel VNC via SSH from Unix to Unix,
+ [432]Above we described how to tunnel VNC via SSH from Unix to Unix,
you may want to review it. To do this from Windows using Putty it
would go something like this:
* In the Putty dialog window under 'Session' enter the hostname or
@@ -2911,11 +2920,11 @@ fi
:0 (plus other cmdline options) in the 'Remote command' Putty setting
under 'Connections/SSH'.
- See also the [422]Enhanced TightVNC Viewer (ssvnc) page where much of
+ See also the [433]Enhanced TightVNC Viewer (ssvnc) page where much of
this is now automated via the Putty plink utility.
- For extra protection feel free to run x11vnc with the [423]-localhost
- and [424]-rfbauth/[425]-passwdfile options.
+ For extra protection feel free to run x11vnc with the [434]-localhost
+ and [435]-rfbauth/[436]-passwdfile options.
If the machine you SSH into via Putty is not the same machine with the
X display you wish to view (e.g. your company provides incoming SSH
@@ -2923,11 +2932,11 @@ fi
dialog setting to: 'Destination: otherhost:5900', Once logged in,
you'll need to do a second login (ssh or rsh) to the workstation
machine 'otherhost' and then start up x11vnc on it. This can also be
- automated by [426]chaining ssh's.
+ automated by [437]chaining ssh's.
- As discussed [427]above another option is to first start the VNC
+ As discussed [438]above another option is to first start the VNC
viewer in "listen" mode, and then launch x11vnc with the
- "[428]-connect localhost" option to establish the reverse connection.
+ "[439]-connect localhost" option to establish the reverse connection.
In this case a Remote port redirection (not Local) is needed for port
5500 instead of 5900 (i.e. 'Source port: 5500' and
'Destination: localhost:5500' for a Remote connection).
@@ -2937,7 +2946,7 @@ fi
channel using an external tool like stunnel?
It is possible to use a "lighter weight" encryption setup than SSH or
- IPSEC. SSL tunnels such as [429]stunnel (also [430]stunnel.mirt.net)
+ IPSEC. SSL tunnels such as [440]stunnel (also [441]stunnel.mirt.net)
provide an encrypted channel without the need for Unix users,
passwords, and key passphrases required for ssh (and at the other
extreme SSL can also provide a complete signed certificate chain of
@@ -2945,12 +2954,12 @@ fi
often let its port through, ssh is frequently the path of least
resistance (it also nicely manages public keys for you).
- Update: As of Feb/2006 x11vnc has the options [431]-ssl,
- [432]-stunnel, and [433]-sslverify to provide integrated SSL schemes.
- They are discussed [434]in the Next FAQ (you may want to skip to it
+ Update: As of Feb/2006 x11vnc has the options [442]-ssl,
+ [443]-stunnel, and [444]-sslverify to provide integrated SSL schemes.
+ They are discussed [445]in the Next FAQ (you may want to skip to it
now).
- Here are some basic examples using [435]stunnel but the general idea
+ Here are some basic examples using [446]stunnel but the general idea
for any SSL tunnel utility is the same:
* Start up x11vnc and constrain it to listen on localhost.
* Then start up the SSL tunnel running on the same machine to
@@ -2974,7 +2983,7 @@ fi
The above two commands are run on host "far-away.east". The
stunnel.pem is the self-signed PEM file certificate created when
- stunnel is built. One can also create certificates [436]signed by
+ stunnel is built. One can also create certificates [447]signed by
Certificate Authorities or self-signed if desired using the x11vnc
utilities described there.
@@ -2988,7 +2997,7 @@ fi
Then point the viewer to the local tunnel on port 5902:
vncviewer -encodings "copyrect tight zrle hextile" localhost:2
- That's it. (note that the [437]ss_vncviewer script can automate
+ That's it. (note that the [448]ss_vncviewer script can automate
this.)
Be sure to use a VNC password because unlike ssh by default the
@@ -2996,13 +3005,13 @@ fi
some extra configuration one could also set up certificates to provide
authentication of either or both sides as well (and hence avoid
man-in-the-middle attacks). See the stunnel and openssl documentation
- and also [438]the key management section for details.
+ and also [449]the key management section for details.
stunnel has also been ported to Windows, and there are likely others
to choose from for that OS. Much info for using it on Windows can be
- found at the stunnel site and in this [439]article The article also
+ found at the stunnel site and in this [450]article The article also
shows the detailed steps to set up all the authentication
- certificates. (for both server and clients, see also the [440]x11vnc
+ certificates. (for both server and clients, see also the [451]x11vnc
utilities that do this). The default Windows client setup (no certs)
is simpler and only 4 files are needed in a folder: stunnel.exe,
stunnel.conf, libssl32.dll, libeay32.dll. We used an stunnel.conf
@@ -3023,7 +3032,7 @@ connect = far-away.east:5901
As an aside, if you don't like the little "gap" of unencrypted TCP
traffic (and a localhost listening socket) on the local machine
between stunnel and x11vnc it can actually be closed by having stunnel
- start up x11vnc in [441]-inetd mode:
+ start up x11vnc in [452]-inetd mode:
stunnel -p /path/to/stunnel.pem -P none -d 5900 -l ./x11vnc_sh
Where the script x11vnc_sh starts up x11vnc:
@@ -3066,28 +3075,28 @@ connect = 5900
they probably wouldn't work since the SSL negotiation is likely
embedded in the VNC protocol unlike our case where it is external.
- Note: as of Mar/2006 libvncserver/x11vnc provides a [442]SSL-enabled
- Java applet that can be served up via the [443]-httpdir or [444]-http
- options when [445]-ssl is enabled. It will also be served via HTTPS
+ Note: as of Mar/2006 libvncserver/x11vnc provides a [453]SSL-enabled
+ Java applet that can be served up via the [454]-httpdir or [455]-http
+ options when [456]-ssl is enabled. It will also be served via HTTPS
via either the VNC port (e.g. https://host:5900/) or a 2nd port via
- the [446]-https option.
+ the [457]-https option.
In general current SSL VNC solutions are not particularly "seemless".
But it can be done, and with a wrapper script on the viewer side and
- the [447]-stunnel or [448]-ssl option on the server side it works well
- and is convenient. Here is a simple script [449]ss_vncviewer that
+ the [458]-stunnel or [459]-ssl option on the server side it works well
+ and is convenient. Here is a simple script [460]ss_vncviewer that
automates running stunnel on the VNC viewer side on Unix a little more
carefully than the commands printed above. (One could probably do a
similar thing with a .BAT file on Windows in the stunnel folder.)
- Update Jul/2006: we now provide an [450]Enhanced TightVNC Viewer
+ Update Jul/2006: we now provide an [461]Enhanced TightVNC Viewer
(ssvnc) package that starts up STUNNEL automatically along with some
other features. All binaries are provided in the package.
Q-46: Does x11vnc have built-in SSL tunneling?
- You can read about non-built-in methods [451]in the Previous FAQ
+ You can read about non-built-in methods [462]in the Previous FAQ
SSL tunnels provide an encrypted channel without the need for Unix
users, passwords, and key passphrases required for ssh (and at the
@@ -3098,14 +3107,14 @@ connect = 5900
Built-in SSL x11vnc options:
- As of Feb/2006 the x11vnc [452]-ssl and [453]-stunnel options automate
- the SSL tunnel creation on the x11vnc server side. An [454]SSL-enabled
+ As of Feb/2006 the x11vnc [463]-ssl and [464]-stunnel options automate
+ the SSL tunnel creation on the x11vnc server side. An [465]SSL-enabled
Java Viewer applet is also provided that can be served via HTTP or
HTTPS to automate SSL on the client side.
- The [455]-ssl mode uses the [456]www.openssl.org library if available
- at build time. The [457]-stunnel mode requires the
- [458]www.stunnel.org command stunnel(8) to be installed on the system.
+ The [466]-ssl mode uses the [467]www.openssl.org library if available
+ at build time. The [468]-stunnel mode requires the
+ [469]www.stunnel.org command stunnel(8) to be installed on the system.
Both modes require an SSL certificate and key (i.e. .pem file). These
are usually created via the openssl(1) (in fact in for options "-ssl"
@@ -3157,12 +3166,12 @@ connect = 5900
is to encrypt the key with a passphrase (note however this requires
supplying the passphrase each time x11vnc is started up).
- See the discussion on [459]x11vnc Key Management for some utilities
+ See the discussion on [470]x11vnc Key Management for some utilities
provided for creating and managing certificates and keys and even for
creating your own Certificate Authority (CA) for signing VNC server
and client certificates. This may be done by importing the certificate
into Web Browser or Java plugin keystores, or pointing stunnel to it.
- The wrapper script [460]ss_vncviewer provides an example on unix
+ The wrapper script [471]ss_vncviewer provides an example on unix
(-verify option).
Here are some notes on the simpler default (non-CA) operation. To have
@@ -3178,7 +3187,7 @@ connect = 5900
to machines where the VNC Viewer will be run to enable authenticating
the x11vnc SSL VNC server to the clients. When authentication takes
place this way (or via the more sophisticated CA signing described
- [461]here), then Man-In-The-Middle-Attacks are prevented. Otherwise,
+ [472]here), then Man-In-The-Middle-Attacks are prevented. Otherwise,
the SSL encryption only provides protection against passive network
traffic "sniffing". Nowadays, most people seem mostly concerned about
only the latter (and the default x11vnc SSL modes protect against it.)
@@ -3203,7 +3212,7 @@ connect = 5900
including using https to download it into the browser and connect to
x11vnc.
- See the [462]next FAQ for SSL enabled VNC Viewers.
+ See the [473]next FAQ for SSL enabled VNC Viewers.
Q-47: How do I use VNC Viewers with built-in SSL tunneling?
@@ -3214,9 +3223,9 @@ connect = 5900
The SSL enabled Java VNC Viewer (VncViewer.jar) in the x11vnc package
supports only SSL based connections by default (set the applet
parameter disableSSL=yes in index.vnc to override). As mentioned above
- the [463]-httpdir can be used to specify the path to .../classes/ssl.
+ the [474]-httpdir can be used to specify the path to .../classes/ssl.
A typical location might be /usr/local/share/x11vnc/classes/ssl. Or
- [464]-http can be used to try to have it find the directory
+ [475]-http can be used to try to have it find the directory
automatically.
The Java viewer uses SSL to communicate securely with x11vnc. Note
@@ -3241,7 +3250,7 @@ connect = 5900
example) can occasionally be slow or unreliable (it has to read some
input and try to guess if the connection is VNC or HTTP). If it is
unreliable and you still want to serve the Java applet via https, use
- the [465]-https option to get an additional port dedicated to https
+ the [476]-https option to get an additional port dedicated to https
(its URL will also be printed in the output).
Another possibility is to add the GET applet parameter:
@@ -3254,7 +3263,7 @@ connect = 5900
You may also use "urlPrefix=somestring" to have /somestring prepended
to /request.https.vnc.connection". Perhaps you are using a web server
- [466]proxy scheme to enter a firewall or otherwise have rules applied
+ [477]proxy scheme to enter a firewall or otherwise have rules applied
to the URL. If you need to have any slashes "/" in "somestring" use
"_2F_" (a deficiency in libvncserver prevents using the more natural
"%2F".)
@@ -3278,11 +3287,11 @@ connect = 5900
connection is VNC instead of the HTTPS it actually is (but since you
have paused too long at the dialog the GET request comes too late).
Often hitting Reload and going through the dialogs more quickly will
- let you connect. Use the [467]-https option if you want a dedicated
+ let you connect. Use the [478]-https option if you want a dedicated
port for HTTPS connections instead of sharing the VNC port.
To see example x11vnc output for a successful https://host:5900/
- connection with the Java Applet see [468]This Page.
+ connection with the Java Applet see [479]This Page.
Notes on the VNC Viewer ss_vncviewer wrapper script:
@@ -3290,10 +3299,10 @@ connect = 5900
If you want to use a native VNC Viewer with the SSL enabled x11vnc you
will need to run an external SSL tunnel on the Viewer side. There do
not seem to be any native SSL VNC Viewers outside of the x11vnc
- package. The basic ideas of doing this were discussed [469]for
+ package. The basic ideas of doing this were discussed [480]for
external tunnel utilities here.
- The [470]ss_vncviewer script provided with x11vnc can set up the
+ The [481]ss_vncviewer script provided with x11vnc can set up the
stunnel tunnel automatically on unix as long as the stunnel command is
installed on the Viewer machine and available in PATH (and vncviewer
too of course). Note that on Debian based system you will need to
@@ -3325,14 +3334,14 @@ connect = 5900
The fifth one shows that Web proxies can be used if that is the only
way to get out of the firewall. If the "double proxy" situation arises
- separate the two by commas. See [471]this page for more information on
+ separate the two by commas. See [482]this page for more information on
how Web proxies come into play.
- If one uses a Certificate Authority (CA) scheme described [472]here,
+ If one uses a Certificate Authority (CA) scheme described [483]here,
the wrapper script would use the CA cert instead of the server cert:
3') ss_vncviewer -verify ./cacert.crt far-away.east:0
- Update Jul/2006: we now provide an [473]Enhanced TightVNC Viewer
+ Update Jul/2006: we now provide an [484]Enhanced TightVNC Viewer
(ssvnc) package that starts up STUNNEL automatically along with some
other features. All binaries are provided in the package.
@@ -3368,7 +3377,7 @@ connect = 5900
(instead of the unsigned one in https://yourmachine.com:5900/ that
gives the default index.vnc)
- Note that the [474]ss_vncviewer stunnel wrapper script can use Web
+ Note that the [485]ss_vncviewer stunnel wrapper script can use Web
proxies as well.
Proxies that limit CONNECT to ports 443 and 563:
@@ -3397,7 +3406,7 @@ connect = 5900
https://yourmachine.com/proxy.vnc?PORT=443
this is cleaner because it avoids editing the file, but requires more
- parameters in the URL. To use the GET [475]trick discussed above, do:
+ parameters in the URL. To use the GET [486]trick discussed above, do:
https://yourmachine.com/proxy.vnc?PORT=443&GET=1
@@ -3405,7 +3414,7 @@ connect = 5900
SSL from the Internet with a Web browser to x11vnc running on their
workstations behind a firewall?
Yes. You will need to configure apache to forward these connections.
- It is discussed [476]here. This provides a clean alternative to the
+ It is discussed [487]here. This provides a clean alternative to the
traditional method where the user uses SSH to log in through the
gateway to create the encrypted port redirection to x11vnc running on
her desktop.
@@ -3413,7 +3422,7 @@ connect = 5900
Q-50: Can I create and use my own SSL Certificate Authority (CA) with
x11vnc?
- Yes, see [477]this page for how to do this and the utility commands
+ Yes, see [488]this page for how to do this and the utility commands
x11vnc provides to create and manage many types of certificates and
private keys.
@@ -3432,14 +3441,14 @@ connect = 5900
need to have sufficient permissions to connect to the X display.
Here are some ideas:
- * Use the description under "Continuously" in the [478]FAQ on x11vnc
+ * Use the description under "Continuously" in the [489]FAQ on x11vnc
and Display Managers
- * Use the description in the [479]FAQ on x11vnc and inetd(8)
- * Use the description in the [480]FAQ on Unix user logins and
+ * Use the description in the [490]FAQ on x11vnc and inetd(8)
+ * Use the description in the [491]FAQ on Unix user logins and
inetd(8)
* Start x11vnc from your $HOME/.xsession (or $HOME/.xinitrc or
autostart script or ...)
- * Although less reliable, see the [481]x11vnc_loop rc.local hack
+ * Although less reliable, see the [492]x11vnc_loop rc.local hack
below.
The display manager scheme will not be specific to which user has the
@@ -3461,7 +3470,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
X startup scripts (traditionally .xsession/.xinitrc) may have to be in
a different directory or have a different basename. One user
recommends the description under 'Running Scripts Automatically' at
- [482]this link.
+ [493]this link.
Q-52: How can I use x11vnc to connect to an X login screen like xdm,
@@ -3476,7 +3485,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
while running x11vnc as root, e.g. for the gnome display manager, gdm:
x11vnc -auth /var/gdm/:0.Xauth -display :0
- (the [483]-auth option sets the XAUTHORITY variable for you).
+ (the [494]-auth option sets the XAUTHORITY variable for you).
There will be a similar thing for xdm using however a different auth
directory path (perhaps something like
@@ -3501,7 +3510,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
auth file should be in /var/dt), you'll also need to add something
like Dtlogin*grabServer:False to the Xconfig file
(/etc/dt/config/Xconfig or /usr/dt/config/Xconfig on Solaris, see
- [484]the example at the end of this FAQ). Then restart dtlogin, e.g.:
+ [495]the example at the end of this FAQ). Then restart dtlogin, e.g.:
/etc/init.d/dtlogin stop; /etc/init.d/dtlogin start or reboot.
Continuously. Have x11vnc reattach each time the X server is
@@ -3549,7 +3558,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
and XAUTHORITY environment variables for the Xsetup script!!!
You may also want to force the VNC port with something like "-rfbport
- 5900" (or [485]-N) to avoid autoselecting one if 5900 is already
+ 5900" (or [496]-N) to avoid autoselecting one if 5900 is already
taken.
_________________________________________________________________
@@ -3565,7 +3574,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
Then restart: /usr/sbin/gdm-restart (or reboot). The
KillInitClients=false setting is important: without it x11vnc will be
- killed immediately after the user logs in. Here are [486]full details
+ killed immediately after the user logs in. Here are [497]full details
on how to configure gdm
_________________________________________________________________
@@ -3607,14 +3616,14 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
If you do not want to deal with any display manager startup scripts,
here is a kludgey script that can be run manually or out of a boot
- file like rc.local: [487]x11vnc_loop It will need some local
+ file like rc.local: [498]x11vnc_loop It will need some local
customization before running. Because the XAUTHORITY auth file must be
guessed by this script, use of the display manager script method
- described above is greatly preferred. There is also the [488]-loop
+ described above is greatly preferred. There is also the [499]-loop
option that does something similar.
If the machine is a traditional Xterminal you may want to read
- [489]this FAQ.
+ [500]this FAQ.
Q-53: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
@@ -3624,7 +3633,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
5900 stream tcp nowait root /usr/sbin/tcpd /usr/local/bin/x11vnc_sh
- where the shell script /usr/local/bin/x11vnc_sh uses the [490]-inetd
+ where the shell script /usr/local/bin/x11vnc_sh uses the [501]-inetd
option and looks something like (you'll need to customize to your
settings).
#!/bin/sh
@@ -3637,7 +3646,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
and that confuses it greatly, causing it to abort). If you do not use
a wrapper script as above but rather call x11vnc directly in
/etc/inetd.conf and do not redirect stderr to a file, then you must
- specify the -q (aka [491]-quiet) option: "/usr/local/bin/x11vnc -q
+ specify the -q (aka [502]-quiet) option: "/usr/local/bin/x11vnc -q
-inetd ...". When you supply both -q and -inet and no "-o logfile"
then stderr will automatically be closed (to prevent, e.g. library
stderr messages leaking out to the viewer). The recommended practice
@@ -3645,12 +3654,12 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
script with "2>logfile" redirection because the errors and warnings
printed out are very useful in troubleshooting problems.
- Note also the need to set XAUTHORITY via [492]-auth to point to the
+ Note also the need to set XAUTHORITY via [503]-auth to point to the
MIT-COOKIE auth file to get permission to connect to the X display
(setting and exporting the XAUTHORITY variable accomplishes the same
thing). See the x11vnc_loop file in the previous question for more
ideas on what that auth file may be, etc. The scheme described in the
- [493]FAQ on Unix user logins and inetd(8) works around the XAUTHORITY
+ [504]FAQ on Unix user logins and inetd(8) works around the XAUTHORITY
issue nicely.
Note: On Solaris you cannot have the bare number 5900 in
@@ -3712,27 +3721,55 @@ service x11vncservice
capture a log)
- Q-54: Can I have x11vnc allow a user to log in with her UNIX username
+ Q-54: Can I have x11vnc advertise its VNC service and port via mDNS /
+ Zeroconf (e.g. Avahi) so VNC viewers on the local network can detect
+ it automatically?
+
+ Yes, as of Feb/2007 x11vnc supports mDNS / Zeroconf advertising of its
+ service via the Avahi client library. Use the option [505]-avahi (same
+ as [506]-mdns) to enable it. Depending on your setup you may need to
+ install [507]Avahi (including the development packages), enable the
+ server: avahi-daemon and avahi-dnsconfd, and possibly open up UDP port
+ 5353 on your firewall.
+
+ The service was tested with Chicken of the VNC ("Use Bonjour"
+ selected) on a Mac on the same network and the service was noted and
+ listed in the servers list. Clicking on it and then "Connect"
+ connected automatically w/o having to enter any hostnames or port
+ numbers.
+
+ It appears SuSE 10.1 comes with avahi (or you can add packages, e.g.
+ avahi-0.6.5-27) but not the development package (you can use the
+ OpenSuSE avahi-devel rpm). Unfortunately, you may need to disable
+ another Zeroconf daemon "/etc/init.d/mdnsd stop", before doing
+ "/etc/init.d/avahi-daemon start" and "/etc/init.d/avahi-dnsconfd
+ start". We also had to comment out the browse-domains line in
+ /etc/avahi/avahi-daemon.conf. Hopefully there is "LessConf" to do on
+ other distros/OS's...
+
+
+ Q-55: Can I have x11vnc allow a user to log in with her UNIX username
and password and then have it find her X session display on that
machine and then connect to it? How about starting an X session if one
cannot be found?
- The easiest way to do this is via [494]inetd(8) using the [495]-unixpw
- and [496]-display WAIT options. The reason inetd(8) makes this easier
+ The easiest way to do this is via [508]inetd(8) using the [509]-unixpw
+ and [510]-display WAIT options. The reason inetd(8) makes this easier
is that it starts a new x11vnc process for each new user connection.
Otherwise a wrapper would have to listen for connections and spawn new
- x11vnc's (see [497]this example and also the [498]-loopbg option).
+ x11vnc's (see [511]this example and also the [512]-loopbg option).
Also with inetd(8) users always connect to a fixed VNC display, say
machine:0, and do not need to memorize a special VNC display number
just for their personal use, etc.
- Update: use the [499]-svc and [500]-xdmsvc options that are shorthand
- for common FINDCREATEDISPLAY usage modes (terminal services) described
- below. (i.e. just use "-svc" instead of "-display
- WAIT:cmd=FINDCREATEDISPLAY-Xvfb -unixpw -users unixpw= -ssl SAVE")
+ Update: Use the [513]-find, [514]-create, [515]-svc, and [516]-xdmsvc
+ options that are shorthand for common FINDCREATEDISPLAY usage modes
+ (e.g. terminal services) described below. (i.e. just use "-svc"
+ instead of "-display WAIT:cmd=FINDCREATEDISPLAY-Xvfb -unixpw -users
+ unixpw= -ssl SAVE")
- The [501]-display WAIT option makes x11vnc wait until a VNC viewer is
+ The [517]-display WAIT option makes x11vnc wait until a VNC viewer is
connected before attaching to the X display. Additionally it can be
used to run an external command that returns the DISPLAY and
XAUTHORITY data. We provide some useful builtin ones (FINDDISPLAY and
@@ -3774,18 +3811,21 @@ nt $2}'`
A default script somewhat like the above is used under "-display
WAIT:cmd=FINDDISPLAY" (use "WAIT:cmd=FINDDISPLAY-print" to print it
- out). The format for any such command is that it returns DISPLAY=:disp
- as the first line and any remaining lines are either XAUTHORITY=file
- or raw xauth data (the above example does the latter). If applicable
- (-unixpw mode), the program is run as the Unix user name who logged
- in.
+ out) (same as [518]-find). The format for any such command is that it
+ returns DISPLAY=:disp as the first line and any remaining lines are
+ either XAUTHORITY=file or raw xauth data (the above example does the
+ latter). If applicable (-unixpw mode), the program is run as the Unix
+ user name who logged in.
On Linux if the virtual terminal is known the program should append
",VT=n" to the DISPLAY line; a chvt n will be attempted automatially.
Or if you only know the X server process ID and suspect a chvt will be
needed append ",XPID=n".
- The [502]-unixpw option allows [503]UNIX password logins. It
+ Tip: Note that the [519]-find option is an alias for "-display
+ WAIT:cmd=FINDDISPLAY".
+
+ The [520]-unixpw option allows [521]UNIX password logins. It
conveniently knows the Unix username whose X display should be found.
Here are a couple /etc/inetd.conf examples for this:
5900 stream tcp nowait nobody /usr/sbin/tcpd /usr/local/bin/x11vnc -inetd
@@ -3806,9 +3846,9 @@ xpw=
directory will need to be set up to allow "nobody" to use them.
In the second one x11vnc is run as root and switches to the user that
- logs in due to the "[504]-users unixpw=" option.
+ logs in due to the "[522]-users unixpw=" option.
- Note that [505]SSL is required for this mode because otherwise the
+ Note that [523]SSL is required for this mode because otherwise the
Unix password would be passed in clear text over the network. In
general -unixpw is not required for this sort of scheme, but it is
convenient because it determines exactly who the Unix user is whose
@@ -3816,17 +3856,17 @@ xpw=
to use some method to work out DISPLAY, XAUTHORITY, etc (perhaps you
use multiple inetd ports and hardwire usernames for different ports).
- If you really want to disable the SSL or SSH [506]-localhost
+ If you really want to disable the SSL or SSH [524]-localhost
constraints (this is not recommended unless you really know what you
are doing: Unix passwords sent in clear text is a very bad idea...)
- read the [507]-unixpw documentation.
+ read the [525]-unixpw documentation.
A recently (Nov/2006) added extension to FINDDISPLAY is
FINDCREATEDISPLAY where if it does not find a display via the
FINDDISPLAY method it will create an X server session for the user
(i.e. desktop/terminal server). This is the only time x11vnc actually
tries to start up an X server. By default it will only try to start up
- virtual (non-hardware) X servers: first [508]Xdummy and if that is not
+ virtual (non-hardware) X servers: first [526]Xdummy and if that is not
available then Xvfb. Note that Xdummy requires root permission and
only works on Linux whereas Xvfb works just about everywhere.
@@ -3836,11 +3876,16 @@ xpw=
-display WAIT:cmd=FINDCREATEDISPLAY -prog /usr/local/bin/x11vnc
Where the very long lines have been split. This will allow direct SSL
- (e.g. [509]ss_vncviewer) access and also Java Web browers access via:
+ (e.g. [527]ss_vncviewer) access and also Java Web browers access via:
https://hostname:5900/.
- Tip: Note that [510]-svc is a short hand for the long "-ssl SAVE
+ Tip: Note that the [528]-create option is an alias for "-display
+ WAIT:cmd=FINDCREATEDISPLAY-Xvfb".
+
+ Tip: Note that [529]-svc is a short hand for the long "-ssl SAVE
-unixpw -users unixpw= -display WAIT:cmd=FINDCREATEDISPLAY" part.
+ Unlike -create, this alias also sets up SSL encryption and Unix
+ password login.
If you do not plan on using the Java Web browser applet you can remove
the -http (and -prog) option since this will speed up logging-in by a
@@ -3868,7 +3913,7 @@ service x11vnc
WAIT:cmd=FINDCREATEDISPLAY-X,Xvfb,Xdummy". The "X" one means to try to
start up a real, hardware X server, e.g. startx(1) (if there is
already a real X server running this may only work on Linux and the
- chvt program may [511]need to be run to switch to the correct Linux
+ chvt program may [530]need to be run to switch to the correct Linux
virtual terminal). x11vnc will try to run chvt automatically if it can
determine which VT should be switched to.
@@ -3895,7 +3940,7 @@ service x11vnc
will also typically block UDP (port 177 for XDMCP) by default
effectively limiting the UDP connections to localhost.
- Tip: Note that [512]-xdmsvc is a short hand for the long "-ssl SAVE
+ Tip: Note that [531]-xdmsvc is a short hand for the long "-ssl SAVE
-unixpw -users unixpw= -display WAIT:cmd=FINDCREATEDISPLAY-Xvfb.xdmcp"
part. E.g.:
service x11vnc
@@ -3926,26 +3971,26 @@ service x11vnc
(e.g. :0) and it switches based on username.
- Q-55: Can I have x11vnc restart itself after it terminates?
+ Q-56: Can I have x11vnc restart itself after it terminates?
One could do this in a shell script, but now there is an option
- [513]-loop that makes it easier. Of course when x11vnc restarts it
+ [532]-loop that makes it easier. Of course when x11vnc restarts it
needs to have permissions to connect to the (potentially new) X
display. This mode could be useful if the X server restarts often. Use
e.g. "-loop5000" to sleep 5000 ms between restarts. Also "-loop2000,5"
to sleep 2000 ms and only restart 5 times.
- One can also use the [514]-loopbg to emulate inetd(8) to some degree,
+ One can also use the [533]-loopbg to emulate inetd(8) to some degree,
where each connected process runs in the background. It could be
- combined, say, with the [515]-svc option to provide simple terminal
+ combined, say, with the [534]-svc option to provide simple terminal
services without using inetd(8).
- Q-56: How do I make x11vnc work with the Java VNC viewer applet in a
+ Q-57: How do I make x11vnc work with the Java VNC viewer applet in a
web browser?
To have x11vnc serve up a Java VNC viewer applet to any web browsers
- that connect to it, run x11vnc with this [516]option:
+ that connect to it, run x11vnc with this [535]option:
-httpdir /path/to/the/java/classes/dir
(this directory will contain the files index.vnc and, for example,
@@ -3964,7 +4009,7 @@ service x11vnc
then you can connect to that URL with any Java enabled browser. Feel
free to customize the default index.vnc file in the classes directory.
- As of May/2005 the [517]-http option will try to guess where the Java
+ As of May/2005 the [536]-http option will try to guess where the Java
classes jar file is by looking in expected locations and ones relative
to the x11vnc binary.
@@ -3974,13 +4019,13 @@ service x11vnc
java -cp ./VncViewer.jar VncViewer HOST far-away.east PORT 5900
- Q-57: Are reverse connections (i.e. the VNC server connecting to the
+ Q-58: Are reverse connections (i.e. the VNC server connecting to the
VNC viewer) using "vncviewer -listen" and vncconnect(1) supported?
As of Mar/2004 x11vnc supports reverse connections. On Unix one starts
the VNC viewer in listen mode: vncviewer -listen (see your
documentation for Windows, etc), and then starts up x11vnc with the
- [518]-connect option. To connect immediately at x11vnc startup time
+ [537]-connect option. To connect immediately at x11vnc startup time
use the "-connect host:port" option (use commas for a list of hosts to
connect to). The ":port" is optional (default is 5500).
@@ -3988,7 +4033,7 @@ service x11vnc
file is checked periodically (about once a second) for new hosts to
connect to.
- The [519]-remote control option (aka -R) can also be used to do this
+ The [538]-remote control option (aka -R) can also be used to do this
during an active x11vnc session, e.g.:
x11vnc -display :0 -R connect:hostname.domain
@@ -4000,7 +4045,7 @@ x11vnc -display :0 -R connect:hostname.domain
starting x11vnc.
To use the vncconnect(1) program (from the core VNC package at
- www.realvnc.com) specify the [520]-vncconnect option to x11vnc (Note:
+ www.realvnc.com) specify the [539]-vncconnect option to x11vnc (Note:
as of Dec/2004 -vncconnect is now the default). vncconnect(1) must be
pointed to the same X11 DISPLAY as x11vnc (since it uses X properties
to communicate with x11vnc). If you do not have or do not want to get
@@ -4014,7 +4059,7 @@ x11vnc -display :0 -R connect:hostname.domain
xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
- Q-58: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a real
+ Q-59: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a real
display, but for a virtual one I keep around).
You can, but you would not be doing this for performance reasons (for
@@ -4043,18 +4088,19 @@ xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
"screen scrape" it efficiently (more than, say, 100X faster than
normal video hardware).
- Update Nov/2006: See the [521]FINDCREATEDISPLAY discussion of the
- "[522]-display WAIT:cmd=FINDDISPLAY" option where virtual (Xvfb or
+ Update Nov/2006: See the [540]FINDCREATEDISPLAY discussion of the
+ "[541]-display WAIT:cmd=FINDDISPLAY" option where virtual (Xvfb or
Xdummy, or even real ones by changing an option) X servers are started
automatically for new users connecting. This provides a "desktop
service" for the machine. You either get your real X session or your
virtual (Xvfb/Xdummy) one whenever you connect to the machine
- (inetd(8) is a nice way to provide this service). The [523]-svc and
- [524]-xdmsvc aliases can also come in handy here.
+ (inetd(8) is a nice way to provide this service). The [542]-find,
+ [543]-create, [544]-svc, and [545]-xdmsvc aliases can also come in
+ handy here.
There are some annoyances WRT Xvfb though. The default keyboard
mapping seems to be very poor. One should run x11vnc with
- [525]-add_keysyms option to have keysyms added automatically. Also, to
+ [546]-add_keysyms option to have keysyms added automatically. Also, to
add the Shift_R and Control_R modifiers something like this is needed:
#!/bin/sh
xmodmap -e "keycode any = Shift_R"
@@ -4066,7 +4112,7 @@ xmodmap -e "keycode any = Alt_R"
xmodmap -e "keycode any = Meta_L"
xmodmap -e "add Mod1 = Alt_L Alt_R Meta_L"
- (note: these are applied automatically in the [526]FINDCREATEDISPLAY
+ (note: these are applied automatically in the [547]FINDCREATEDISPLAY
mode). Perhaps the Xvfb options -xkbdb or -xkbmap could be used to get
a better default keyboard mapping.
@@ -4081,11 +4127,11 @@ xmodmap -e "add Mod1 = Alt_L Alt_R Meta_L"
The main drawback to this method (besides requiring extra
configuration and possibly root permission) is that it also does the
- Linux Virtual Console/Terminal (VC/VT) [527]switching even though it
+ Linux Virtual Console/Terminal (VC/VT) [548]switching even though it
does not need to (since it doesn't use a real framebuffer). There are
some "dual headed" (actually multi-headed/multi-user) patches to the X
server that turn off the VT usage in the X server. Update: As of
- Jul/2005 we have an LD_PRELOAD script [528]Xdummy that allows you to
+ Jul/2005 we have an LD_PRELOAD script [549]Xdummy that allows you to
use a stock (i.e. unpatched) Xorg or XFree86 server with the "dummy"
driver and not have any VT switching problems! Currently Xdummy needs
to be run as root, but with some luck that may be relaxed in the
@@ -4105,7 +4151,7 @@ startx -- /path/to/Xdummy :1
testing x11vnc).
- Q-59: How can I use x11vnc on "headless" machines? Why might I want
+ Q-60: How can I use x11vnc on "headless" machines? Why might I want
to?
An interesting application of x11vnc is to let it export displays of
@@ -4117,7 +4163,7 @@ startx -- /path/to/Xdummy :1
An X server can be started on the headless machine (sometimes this
requires configuring the X server to not fail if it cannot detect a
keyboard or mouse, see the next paragraph). Then you can export that X
- display via x11vnc (e.g. see [529]this FAQ) and access it from
+ display via x11vnc (e.g. see [550]this FAQ) and access it from
anywhere on the network via a VNC viewer.
Some tips on getting X servers to start on machines without keyboard
@@ -4140,14 +4186,15 @@ startx -- /path/to/Xdummy :1
cards as it can hold to provide multiple simultaneous access or
testing on different kinds of video hardware.
- See also the [530]FINDCREATEDISPLAY discussion of the "[531]-display
+ See also the [551]FINDCREATEDISPLAY discussion of the "[552]-display
WAIT:cmd=FINDDISPLAY" option where virtual Xvfb or Xdummy, or real X
servers are started automatically for new users connecting. The
- [532]-svc and [533]-xdmsvc aliases can also come in handy here.
+ [553]-find, [554]-create, [555]-svc, and [556]-xdmsvc aliases can also
+ come in handy here.
[Resource Usage and Performance]
- Q-60: I have lots of memory, but why does x11vnc fail with shmget:
+ Q-61: I have lots of memory, but why does x11vnc fail with shmget:
No space left on device or Minor opcode of failed request: 1
(X_ShmAttach)?
@@ -4165,7 +4212,7 @@ startx -- /path/to/Xdummy :1
19/03/2004 10:10:58 error creating tile-row shm for len=4
19/03/2004 10:10:58 reverting to single_copytile mode
- Here is a shell script [534]shm_clear to list and prompt for removal
+ Here is a shell script [557]shm_clear to list and prompt for removal
of your unattached shm segments (attached ones are skipped). I use it
while debugging x11vnc (I use "shm_clear -y" to assume "yes" for each
prompt). If x11vnc is regularly not cleaning up its shm segments,
@@ -4199,44 +4246,44 @@ ied)
in /etc/system. See the next paragraph for more workarounds.
To minimize the number of shm segments used by x11vnc try using the
- [535]-onetile option (corresponds to only 3 shm segments used, and
+ [558]-onetile option (corresponds to only 3 shm segments used, and
adding -fs 1.0 knocks it down to 2). If you are having much trouble
with shm segments, consider disabling shm completely via the
- [536]-noshm option. Performance will be somewhat degraded but when
+ [559]-noshm option. Performance will be somewhat degraded but when
done over local machine sockets it should be acceptable (see an
- [537]earlier question discussing -noshm).
+ [560]earlier question discussing -noshm).
- Q-61: How can I make x11vnc use less system resources?
+ Q-62: How can I make x11vnc use less system resources?
- The [538]-nap (now on by default) and "[539]-wait n" (where n is the
+ The [561]-nap (now on by default) and "[562]-wait n" (where n is the
sleep between polls in milliseconds, the default is 30 or so) option
- are good places to start. Something like "[540]-sb 15" will cause
+ are good places to start. Something like "[563]-sb 15" will cause
x11vnc to go into a deep-sleep mode after 15 seconds of no activity
(instead of the default 60).
Reducing the X server bits per pixel depth (e.g. to 16bpp or even
8bpp) will further decrease memory I/O and network I/O. The ShadowFB
- will make x11vnc's screen polling less severe. Using the [541]-onetile
+ will make x11vnc's screen polling less severe. Using the [564]-onetile
option will use less memory and use fewer shared memory slots (add
- [542]-fs 1.0 for one less slot).
+ [565]-fs 1.0 for one less slot).
- Q-62: How can I make x11vnc use MORE system resources?
+ Q-63: How can I make x11vnc use MORE system resources?
- You can try [543]-threads and dial down the wait time (e.g. -wait 1)
- and possibly dial down [544]-defer as well. Note that if you try to
+ You can try [566]-threads and dial down the wait time (e.g. -wait 1)
+ and possibly dial down [567]-defer as well. Note that if you try to
increase the "frame rate" too much you can bog down the server end
with the extra work it needs to do compressing the framebuffer data,
etc.
That said, it is possible to "stream" video via x11vnc if the video
window is small enough. E.g. a 256x192 xawtv TV capture window (using
- the x11vnc [545]-id option) can be streamed over a LAN or wireless at
+ the x11vnc [568]-id option) can be streamed over a LAN or wireless at
a reasonable frame rate.
- Q-63: I use x11vnc over a slow link with high latency (e.g. dialup
+ Q-64: I use x11vnc over a slow link with high latency (e.g. dialup
modem or broadband), is there anything I can do to speed things up?
Some things you might want to experiment with (many of which will help
@@ -4248,7 +4295,7 @@ ied)
* Use a smaller desktop size (e.g. 1024x768 instead of 1280x1024)
* Make sure the desktop background is a solid color (the background
is resent every time it is re-exposed). Consider using the
- [546]-solid [color] option to try to do this automatically.
+ [569]-solid [color] option to try to do this automatically.
* Configure your window manager or desktop "theme" to not use fancy
images, shading, and gradients for the window decorations, etc.
Disable window animations, etc. Maybe your desktop has a "low
@@ -4257,9 +4304,9 @@ ied)
-> Use Smooth Scrolling (deselect it).
* Avoid small scrolls of large windows using the Arrow keys or
scrollbar. Try to use PageUp/PageDown instead. (not so much of a
- problem in x11vnc 0.7.2 if [547]-scrollcopyrect is active and
+ problem in x11vnc 0.7.2 if [570]-scrollcopyrect is active and
detecting scrolls for the application).
- * If the [548]-wireframe option is not available (earlier than
+ * If the [571]-wireframe option is not available (earlier than
x11vnc 0.7.2 or you have disabled it via -nowireframe) then
Disable Opaque Moves and Resizes in the window manager/desktop.
* However if -wireframe is active (on by default in x11vnc 0.7.2)
@@ -4282,7 +4329,7 @@ ied)
noticed.
VNC viewer parameters:
- * Use a [549]TightVNC enabled viewer! (Actually, RealVNC 4.x viewer
+ * Use a [572]TightVNC enabled viewer! (Actually, RealVNC 4.x viewer
with ZRLE encoding is not too bad either; some claim it is
faster).
* Make sure the tight (or zrle) encoding is being used (look at
@@ -4304,37 +4351,37 @@ ied)
file.
x11vnc parameters:
- * Make sure the [550]-wireframe option is active (it should be on by
+ * Make sure the [573]-wireframe option is active (it should be on by
default) and you have Opaque Moves/Resizes Enabled in the window
manager.
- * Make sure the [551]-scrollcopyrect option is active (it should be
+ * Make sure the [574]-scrollcopyrect option is active (it should be
on by default). This detects scrolls in many (but not all)
applications an applies the CopyRect encoding for a big speedup.
* Enforce a solid background when VNC viewers are connected via
- [552]-solid
- * Specify [553]-speeds modem to force the wireframe and
+ [575]-solid
+ * Specify [576]-speeds modem to force the wireframe and
scrollcopyrect heuristic parameters (and any future ones) to those
of a dialup modem connection (or supply the rd,bw,lat numerical
values that characterize your link).
* If wireframe and scrollcopyrect aren't working, try using the more
- drastic [554]-nodragging (no screen updates when dragging mouse,
+ drastic [577]-nodragging (no screen updates when dragging mouse,
but sometimes you miss visual feedback)
- * Set [555]-fs 1.0 (disables fullscreen updates)
- * Try increasing [556]-wait or [557]-defer (reduces the maximum
+ * Set [578]-fs 1.0 (disables fullscreen updates)
+ * Try increasing [579]-wait or [580]-defer (reduces the maximum
"frame rate", but won't help much for large screen changes)
- * Try the [558]-progressive pixelheight mode with the block
+ * Try the [581]-progressive pixelheight mode with the block
pixelheight 100 or so (delays sending vertical blocks since they
may change while viewer is receiving earlier ones)
- * If you just want to watch one (simple) window use [559]-id (cuts
+ * If you just want to watch one (simple) window use [582]-id (cuts
down extraneous polling and updates, but can be buggy or
insufficient)
- * Set [560]-nosel (disables all clipboard selection exchange)
- * Use [561]-nocursor and [562]-nocursorpos (repainting the remote
+ * Set [583]-nosel (disables all clipboard selection exchange)
+ * Use [584]-nocursor and [585]-nocursorpos (repainting the remote
cursor position and shape takes resources and round trips)
* On very slow links (e.g. <= 28.8) you may need to increase the
- [563]-readtimeout n setting if it sometimes takes more than 20sec
+ [586]-readtimeout n setting if it sometimes takes more than 20sec
to paint the full screen, etc.
- * Do not use [564]-fixscreen to automatically refresh the whole
+ * Do not use [587]-fixscreen to automatically refresh the whole
screen, tap three Alt_L's then the screen has painting errors
(rare problem).
@@ -4385,7 +4432,7 @@ ied)
* TBD.
- Q-64: Does x11vnc support the X DAMAGE Xserver extension to find
+ Q-65: Does x11vnc support the X DAMAGE Xserver extension to find
modified regions of the screen quickly and efficiently?
Yes, as of Mar/2005 x11vnc will use the X DAMAGE extension by default
@@ -4403,7 +4450,7 @@ ied)
Note that the DAMAGE extension does not speed up the actual reading of
pixels from the video card framebuffer memory, by, say, mirroring them
- in main memory. So reading the fb is still painfully [565]slow (e.g.
+ in main memory. So reading the fb is still painfully [588]slow (e.g.
5MB/sec), and so even using X DAMAGE when large changes occur on the
screen the bulk of the time is still spent retrieving them. Not ideal,
but use of the ShadowFB XFree86/Xorg option speeds up the reading
@@ -4421,20 +4468,20 @@ ied)
DAMAGE rectangles to contain real damage. The larger rectangles are
only used as hints to focus the traditional scanline polling (i.e. if
a scanline doesn't intersect a recent DAMAGE rectangle, the scan is
- skipped). You can use the "[566]-xd_area A" option to adjust the size
+ skipped). You can use the "[589]-xd_area A" option to adjust the size
of the trusted DAMAGE rectangles. The default is 20000 pixels (e.g. a
140x140 square, etc). Use "-xd_area 0" to disable the cutoff and trust
all DAMAGE rectangles.
- The option "[567]-xd_mem f" may also be of use in tuning the
- algorithm. To disable using DAMAGE entirely use "[568]-noxdamage".
+ The option "[590]-xd_mem f" may also be of use in tuning the
+ algorithm. To disable using DAMAGE entirely use "[591]-noxdamage".
- Q-65: My OpenGL application shows no screen updates unless I supply
+ Q-66: My OpenGL application shows no screen updates unless I supply
the -noxdamage option to x11vnc.
One user reports in his environment (MythTV using the NVIDIA OpenGL
drivers) he gets no updates after the initial screen is drawn unless
- he uses the "[569]-noxdamage" option.
+ he uses the "[592]-noxdamage" option.
This seems to be a bug in the X DAMAGE implementation of that driver.
You may have to use -noxdamage as well. A way to autodetect this will
@@ -4442,18 +4489,18 @@ ied)
DAMAGE.
- Q-66: When I drag windows around with the mouse or scroll up and down
+ Q-67: When I drag windows around with the mouse or scroll up and down
things really bog down (unless I do the drag in a single, quick
motion). Is there anything to do to improve things?
- This problem is primarily due to [570]slow hardware read rates from
+ This problem is primarily due to [593]slow hardware read rates from
video cards: as you scroll or move a large window around the screen
changes are much too rapid for x11vnc to keep up them (it can usually
only read the video card at about 5-10 MB/sec, so it can take a good
fraction of a second to read the changes induce from moving a large
window, if this to be done a number of times in succession the window
or scroll appears to "lurch" forward). See the description in the
- [571]-pointer_mode option for more info. The next bottleneck is
+ [594]-pointer_mode option for more info. The next bottleneck is
compressing all of these changes and sending them out to connected
viewers, however the VNC protocol is pretty much self-adapting with
respect to that (updates are only packaged and sent when viewers ask
@@ -4463,26 +4510,26 @@ ied)
default should now be much better than before and dragging small
windows around should no longer be a huge pain. If for some reason
these changes make matters worse, you can go back to the old way via
- the "[572]-pointer_mode 1" option.
+ the "[595]-pointer_mode 1" option.
- Also added was the [573]-nodragging option that disables all screen
+ Also added was the [596]-nodragging option that disables all screen
updates while dragging with the mouse (i.e. mouse motion with a button
held down). This gives the snappiest response, but might be undesired
in some circumstances when you want to see the visual feedback while
dragging (e.g. menu traversal or text selection).
- As of Dec/2004 the [574]-pointer_mode n option was introduced. n=1 is
+ As of Dec/2004 the [597]-pointer_mode n option was introduced. n=1 is
the original mode, n=2 an improvement, etc.. See the -pointer_mode n
help for more info.
- Also, in some circumstances the [575]-threads option can improve
+ Also, in some circumstances the [598]-threads option can improve
response considerably. Be forewarned that if more than one vncviewer
is connected at the same time then libvncserver may not be thread safe
(try to get the viewers to use different VNC encodings, e.g. tight and
ZRLE).
- As of Apr/2005 two new options (see the [576]wireframe FAQ and
- [577]scrollcopyrect FAQ below) provide schemes to sweep this problem
+ As of Apr/2005 two new options (see the [599]wireframe FAQ and
+ [600]scrollcopyrect FAQ below) provide schemes to sweep this problem
under the rug for window moves or resizes and for some (but not all)
window scrolls. These are the preferred way of avoiding the "lurching"
problem, contact me if they are not working. Note on SuSE and some
@@ -4495,7 +4542,7 @@ Section "Module"
EndSection
- Q-67: Why not do something like wireframe animations to avoid the
+ Q-68: Why not do something like wireframe animations to avoid the
windows "lurching" when being moved or resized?
Nice idea for a hack! As of Apr/2005 x11vnc by default will apply
@@ -4506,8 +4553,8 @@ EndSection
the window move/resize stops, it returns to normal processing: you
should only see the window appear in the new position. This spares you
from interacting with a "lurching" window between all of the
- intermediate steps. BTW the lurching is due to [578]slow video card
- read rates (see [579]here too). A displacement, even a small one, of a
+ intermediate steps. BTW the lurching is due to [601]slow video card
+ read rates (see [602]here too). A displacement, even a small one, of a
large window requires a non-negligible amount of time, a good fraction
of a second, to read in from the hardware framebuffer.
@@ -4515,7 +4562,7 @@ EndSection
for -wireframe to do any good.
The mode is currently on by default because most people are afflicted
- with the problem. It can be disabled with the [580]-nowireframe option
+ with the problem. It can be disabled with the [603]-nowireframe option
(aka -nowf). Why might one want to turn off the wireframing? Since
x11vnc is merely guessing when windows are being moved/resized, it may
guess poorly for your window-manager or desktop, or even for the way
@@ -4560,13 +4607,13 @@ EndSection
* Maximum time to show a wireframe animation.
* Minimum time between sending wireframe outlines.
- See the [581]"-wireframe tweaks" option for more details. On a slow
+ See the [604]"-wireframe tweaks" option for more details. On a slow
link, e.g. dialup modem, the parameters may be automatically adjusted
for better response.
CopyRect encoding: In addition to the above there is the
- [582]"-wirecopyrect mode" option. It is also on by default. This
+ [605]"-wirecopyrect mode" option. It is also on by default. This
instructs x11vnc to not only show the wireframe animation, but to also
instruct all connected VNC viewers to locally translate the window
image data from the original position to the new position on the
@@ -4597,7 +4644,7 @@ EndSection
-nowirecopyrect if this or other painting errors are unacceptable.
- Q-68: Can x11vnc try to apply heuristics to detect when a window is
+ Q-69: Can x11vnc try to apply heuristics to detect when a window is
scrolling its contents and use the CopyRect encoding for a speedup?
Another nice idea for a hack! As of May/2005 x11vnc will by default
@@ -4614,7 +4661,7 @@ EndSection
requiring the image data to be transmitted over the network. For fast
links the speedup is primarily due to x11vnc not having to read the
scrolled framebuffer data from the X server (recall that reading from
- the hardware framebuffer is [583]slow).
+ the hardware framebuffer is [606]slow).
To do this x11vnc uses the RECORD X extension to snoop the X11
protocol between the X client with the focus window and the X server.
@@ -4641,10 +4688,10 @@ EndSection
the X server display: if one falls too far behind it could become a
mess...
- The initial implementation of [584]-scrollcopyrect option is useful in
+ The initial implementation of [607]-scrollcopyrect option is useful in
that it detects many scrolls and thus gives a much nicer working
- environment (especially when combined with the [585]-wireframe
- [586]-wirecopyrect [587]options, which are also on by default; and if
+ environment (especially when combined with the [608]-wireframe
+ [609]-wirecopyrect [610]options, which are also on by default; and if
you are willing to enable the ShadowFB things are very fast). The fact
that there aren't long delays or lurches during scrolling is the
primary improvement.
@@ -4677,10 +4724,10 @@ EndSection
One can tap the Alt_L key (Left "Alt" key) 3 times in a row to
signal x11vnc to refresh the screen to all viewers. Your
VNC-viewer may have its own screen refresh hot-key or button. See
- also: [588]-fixscreen
+ also: [611]-fixscreen
* Some applications, notably OpenOffice, do XCopyArea scrolls in
weird ways that assume ancestor window clipping is taking place.
- See the [589]-scr_skip option for ways to tweak this on a
+ See the [612]-scr_skip option for ways to tweak this on a
per-application basis.
* Selecting text while dragging the mouse may be slower, especially
if the Button-down event happens near the window's edge. This is
@@ -4697,7 +4744,7 @@ EndSection
because it fails to detect scrolls in it. Sometimes clicking
inside the application window or selecting some text in it to
force the focus helps.
- * When using the [590]-scale option there will be a quick CopyRect
+ * When using the [613]-scale option there will be a quick CopyRect
scroll, but it needs to be followed by a slower "cleanup" update.
This is because for a fixed finite screen resolution (e.g. 75 dpi)
scaling and copyrect-ing are not exactly independent. Scaling
@@ -4710,7 +4757,7 @@ EndSection
If you find the -scrollcopyrect behavior too approximate or
distracting you can go back to the standard polling-only update method
- with the [591]-noscrollcopyrect (or -noscr for short). If you find
+ with the [614]-noscrollcopyrect (or -noscr for short). If you find
some extremely bad and repeatable behavior for -scrollcopyrect please
report a bug.
@@ -4731,13 +4778,13 @@ EndSection
errors.
- Q-69: Can x11vnc do client-side caching of pixel data? I.e. so when
+ Q-70: Can x11vnc do client-side caching of pixel data? I.e. so when
that pixel data is needed again it does not have to be retransmitted
over the network.
- As of Dec/2006 in the [592]0.8.5 development tarball there is an
+ As of Dec/2006 in the [615]0.8.5 development tarball there is an
experimental client-side caching implementation enabled by the
- "[593]-ncache n" option. In fact, during the test period at least it
+ "[616]-ncache n" option. In fact, during the test period at least it
is on by default with n set to 12. To disable it use "-noncache".
It is a simple scheme where a (very large) lower portion of the
@@ -4770,7 +4817,7 @@ EndSection
perhaps something else, maybe double buffering or other offscreen
rendering...).
- The Enhanced TightVNC Viewer Unix viewer has a nice [594]-ycrop option
+ The Enhanced TightVNC Viewer Unix viewer has a nice [617]-ycrop option
to help hide the pixel cache area from view. It will turn on
automatically if the framebuffer appears to be very tall (height more
than twice the width), or you can supply the actual value for the
@@ -4800,7 +4847,7 @@ EndSection
an additional factor of 2 in memory use.
However, even in the smallest usage mode with n equal 2 and
- [595]-ncache_no_rootpixmap set (this requires only 2X additional
+ [618]-ncache_no_rootpixmap set (this requires only 2X additional
framebuffer memory) there is still a noticable improvement for many
activities, although it is not as dramatic as with, say n equal 12 and
rootpixmap (desktop background) caching enabled.
@@ -4811,7 +4858,7 @@ EndSection
be tuned to use less, or the VNC community will extend the protocol to
allow caching and replaying of compressed blobs of data.
- Another option to experiment with is "[596]-ncache_cr". By specifying
+ Another option to experiment with is "[619]-ncache_cr". By specifying
it, x11vnc will try to do smooth opaque window moves instead of its
wireframe. This can give a very nice effect (note: on Unix the realvnc
viewer seems to be smoother than the tightvnc viewer), but can lead to
@@ -4856,7 +4903,7 @@ EndSection
[Mouse Cursor Shapes]
- Q-70: Why isn't the mouse cursor shape (the little icon shape where
+ Q-71: Why isn't the mouse cursor shape (the little icon shape where
the mouse pointer is) correct as I move from window to window?
On X servers supporting XFIXES or Solaris/IRIX Overlay extensions it
@@ -4871,23 +4918,23 @@ EndSection
this is because the cursor shape is often downloaded to the graphics
hardware (video card), but I could be mistaken.
- A simple kludge is provided by the "[597]-cursor X" option that
+ A simple kludge is provided by the "[620]-cursor X" option that
changes the cursor when the mouse is on the root background (or any
window has the same cursor as the root background). Note that desktops
like GNOME or KDE often cover up the root background, so this won't
- work for those cases. Also see the "[598]-cursor some" option for
+ work for those cases. Also see the "[621]-cursor some" option for
additional kludges.
Note that as of Aug/2004 on Solaris using the SUN_OVL overlay
extension and IRIX, x11vnc can show the correct mouse cursor when the
- [599]-overlay option is supplied. See [600]this FAQ for more info.
+ [622]-overlay option is supplied. See [623]this FAQ for more info.
Also as of Dec/2004 XFIXES X extension support has been added to allow
exact extraction of the mouse cursor shape. XFIXES fixes the problem
of the cursor-shape being write-only: x11vnc can now query the X
server for the current shape and send it back to the connected
viewers. XFIXES is available on recent Linux Xorg based distros and
- [601]Solaris 10.
+ [624]Solaris 10.
The only XFIXES issue is the handling of alpha channel transparency in
cursors. If a cursor has any translucency then in general it must be
@@ -4895,10 +4942,10 @@ EndSection
situations where the cursor transparency can also handled exactly:
when the VNC Viewer requires the cursor shape be drawn into the VNC
framebuffer or if you apply a patch to your VNC Viewer to extract
- hidden alpha channel data under 32bpp. [602]Details can be found here.
+ hidden alpha channel data under 32bpp. [625]Details can be found here.
- Q-71: When using XFIXES cursorshape mode, some of the cursors look
+ Q-72: When using XFIXES cursorshape mode, some of the cursors look
really bad with extra black borders around the cursor and other cruft.
How can I improve their appearance?
@@ -4928,17 +4975,17 @@ EndSection
for most cursor themes and you don't have to worry about it.
In case it still looks bad for your cursor theme, there are (of
- course!) some tunable parameters. The "[603]-alphacut n" option lets
+ course!) some tunable parameters. The "[626]-alphacut n" option lets
you set the threshold "n" (between 0 and 255): cursor pixels with
alpha values below n will be considered completely transparent while
values equal to or above n will be completely opaque. The default is
- 240. The "[604]-alphafrac f" option tries to correct individual
+ 240. The "[627]-alphafrac f" option tries to correct individual
cursors that did not fare well with the default -alphacut value: if a
cursor has less than fraction f (between 0.0 and 1.0) of its pixels
selected by the default -alphacut, the threshold is lowered until f of
its pixels are selected. The default fraction is 0.33.
- Finally, there is an option [605]-alpharemove that is useful for
+ Finally, there is an option [628]-alpharemove that is useful for
themes where many cursors are light colored (e.g. "whiteglass").
XFIXES returns the cursor data with the RGB values pre-multiplied by
the alpha value. If the white cursors look too grey, specify
@@ -4956,7 +5003,7 @@ EndSection
heavily on redglass) look fine with the apparent default of alphacut:255.
- Q-72: In XFIXES mode, are there any hacks to handle cursor
+ Q-73: In XFIXES mode, are there any hacks to handle cursor
transparency ("alpha channel") exactly?
As of Jan/2005 libvncserver has been modified to allow an alpha
@@ -4964,10 +5011,10 @@ EndSection
alpha channel data to libvncserver. However, this data will only be
used for VNC clients that do not support the CursorShapeUpdates VNC
extension (or have disabled it). It can be disabled for all clients
- with the [606]-nocursorshape x11vnc option. In this case the cursor is
+ with the [629]-nocursorshape x11vnc option. In this case the cursor is
drawn, correctly blended with the background, into the VNC framebuffer
before being sent out to the client. So the alpha blending is done on
- the x11vnc side. Use the [607]-noalphablend option to disable this
+ the x11vnc side. Use the [630]-noalphablend option to disable this
behavior (always approximate transparent cursors with opaque RGB
values).
@@ -4991,17 +5038,17 @@ EndSection
example on how to change the Windows TightVNC viewer to achieve the
same thing (send me the patch if you get that working).
- This patch is applied to the [608]Enhanced TightVNC Viewer (ssvnc)
+ This patch is applied to the [631]Enhanced TightVNC Viewer (ssvnc)
package we provide.
[Mouse Pointer]
- Q-73: Why does the mouse arrow just stay in one corner in my
+ Q-74: Why does the mouse arrow just stay in one corner in my
vncviewer, whereas my cursor (that does move) is just a dot?
- This default takes advantage of a [609]tightvnc extension
+ This default takes advantage of a [632]tightvnc extension
(CursorShapeUpdates) that allows specifying a cursor image shape for
- the local VNC viewer. You may disable it with the [610]-nocursor
+ the local VNC viewer. You may disable it with the [633]-nocursor
option to x11vnc if your viewer does not have this extension.
Note: as of Aug/2004 this should be fixed: the default for
@@ -5010,22 +5057,22 @@ EndSection
can also be disabled via -nocursor.
- Q-74: Can I take advantage of the TightVNC extension to the VNC
+ Q-75: Can I take advantage of the TightVNC extension to the VNC
protocol where Cursor Positions Updates are sent back to all connected
clients (i.e. passive viewers can see the mouse cursor being moved
around by another viewer)?
- Use the [611]-cursorpos option when starting x11vnc. A VNC viewer must
+ Use the [634]-cursorpos option when starting x11vnc. A VNC viewer must
support the Cursor Positions Updates for the user to see the mouse
motions (the TightVNC viewers support this). As of Aug/2004 -cursorpos
- is the default. See also [612]-nocursorpos and [613]-nocursorshape.
+ is the default. See also [635]-nocursorpos and [636]-nocursorshape.
- Q-75: Is it possible to swap the mouse buttons (e.g. left-handed
+ Q-76: Is it possible to swap the mouse buttons (e.g. left-handed
operation), or arbitrarily remap them? How about mapping button clicks
to keystrokes, e.g. to partially emulate Mouse wheel scrolling?
- You can remap the mouse buttons via something like: [614]-buttonmap
+ You can remap the mouse buttons via something like: [637]-buttonmap
13-31 (or perhaps 12-21). Also, note that xmodmap(1) lets you directly
adjust the X server's button mappings, but in some circumstances it
might be more desirable to have x11vnc do it.
@@ -5033,7 +5080,7 @@ EndSection
One user had an X server with only one mouse button(!) and was able to
map all of the VNC client mouse buttons to it via: -buttonmap 123-111.
- Note that the [615]-debug_pointer option prints out much info for
+ Note that the [638]-debug_pointer option prints out much info for
every mouse/pointer event and is handy in solving problems.
To map mouse button clicks to keystrokes you can use the alternate
@@ -5055,7 +5102,7 @@ EndSection
Exactly what keystroke "scrolling" events they should be bound to
depends on one's taste. If this method is too approximate, one could
- consider not using [616]-buttonmap but rather configuring the X server
+ consider not using [639]-buttonmap but rather configuring the X server
to think it has a mouse with 5 buttons even though the physical mouse
does not. (e.g. 'Option "ZAxisMapping" "4 5"').
@@ -5082,10 +5129,10 @@ EndSection
"click" usually gives a multi-line scroll).
[Keyboard Issues]
- Q-76: How can I get my AltGr and Shift modifiers to work between
+ Q-77: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages?
- The option [617]-modtweak should help here. It is a mode that monitors
+ The option [640]-modtweak should help here. It is a mode that monitors
the state of the Shift and AltGr Modifiers and tries to deduce the
correct keycode to send, possibly by sending fake modifier key presses
and releases in addition to the actual keystroke.
@@ -5094,20 +5141,20 @@ EndSection
to get the old behavior). This was done because it was noticed on
newer XFree86 setups even on bland "us" keyboards like "pc104 us"
XFree86 included a "ghost" key with both "<" and ">" it. This key does
- not exist on the keyboard (see [618]this FAQ for more info). Without
+ not exist on the keyboard (see [641]this FAQ for more info). Without
-modtweak there was then an ambiguity in the reverse map keysym =>
keycode, making it so the "<" symbol could not be typed.
- Also see the [619]FAQ about the -xkb option for a more powerful method
+ Also see the [642]FAQ about the -xkb option for a more powerful method
of modifier tweaking for use on X servers with the XKEYBOARD
extension.
When trying to resolve keyboard mapping problems, note that the
- [620]-debug_keyboard option prints out much info for every keystroke
+ [643]-debug_keyboard option prints out much info for every keystroke
and so can be useful debugging things.
- Q-77: When I try to type a "<" (i.e. less than) instead I get ">"
+ Q-78: When I try to type a "<" (i.e. less than) instead I get ">"
(i.e. greater than)! Strangely, typing ">" works OK!!
Does your keyboard have a single key with both "<" and ">" on it? Even
@@ -5115,9 +5162,9 @@ EndSection
(e.g. pc105 in the XF86Config file when it should be something else,
say pc104).
- Short Cut: Try the [621]-xkb or [622]-sloppy_keys options and see if
+ Short Cut: Try the [644]-xkb or [645]-sloppy_keys options and see if
that helps the situation. The discussion below is a bit outdated (e.g.
- [623]-modtweak is now the default) but it is useful reference for
+ [646]-modtweak is now the default) but it is useful reference for
various tricks and so is kept.
@@ -5160,34 +5207,34 @@ EndSection
-remap less-comma
These are convenient in that they do not modify the actual X server
- settings. The former ([624]-modtweak) is a mode that monitors the
+ settings. The former ([647]-modtweak) is a mode that monitors the
state of the Shift and AltGr modifiers and tries to deduce the correct
keycode sequence to send. Since Jul/2004 -modtweak is now the default.
- The latter ([625]-remap less-comma) is an immediate remapping of the
+ The latter ([648]-remap less-comma) is an immediate remapping of the
keysym less to the keysym comma when it comes in from a client (so
when Shift is down the comma press will yield "<").
- See also the [626]FAQ about the -xkb option as a possible workaround
+ See also the [649]FAQ about the -xkb option as a possible workaround
using the XKEYBOARD extension.
- Note that the [627]-debug_keyboard option prints out much info for
+ Note that the [650]-debug_keyboard option prints out much info for
every keystroke to aid debugging keyboard problems.
- Q-78: When I try to type a "<" (i.e. less than) instead I get "<,"
+ Q-79: When I try to type a "<" (i.e. less than) instead I get "<,"
(i.e. an extra comma).
This is likely because you press "Shift" then "<" but then released
- the Shift key before releasing the "<". Because of a [628]keymapping
+ the Shift key before releasing the "<". Because of a [651]keymapping
ambiguity the last event "< up" is interpreted as "," because that key
unshifted is the comma.
- This should not happen in [629]-xkb mode, because it works hard to
+ This should not happen in [652]-xkb mode, because it works hard to
resolve the ambiguities. If you do not want to use -xkb, try the
- option [630]-sloppy_keys to attempt a similar type of algorithm.
+ option [653]-sloppy_keys to attempt a similar type of algorithm.
- Q-79: I'm using an "international" keyboard (e.g. German "de", or
+ Q-80: I'm using an "international" keyboard (e.g. German "de", or
Danish "dk") and the -modtweak mode works well if the VNC viewer is
run on a Unix/Linux machine with a similar keyboard. But if I run
the VNC viewer on Unix/Linux with a different keyboard (e.g. "us") or
@@ -5208,7 +5255,7 @@ EndSection
In both cases no AltGr is sent to the VNC server, but we know AltGr is
needed on the physical international keyboard to type a "@".
- This all worked fine with x11vnc running with the [631]-modtweak
+ This all worked fine with x11vnc running with the [654]-modtweak
option (it figures out how to adjust the Modifier keys (Shift or
AltGr) to get the "@"). However it fails under recent versions of
XFree86 (and the X.org fork). These run the XKEYBOARD extension by
@@ -5225,7 +5272,7 @@ EndSection
* there is a new option -xkb to use the XKEYBOARD extension API to
do the Modifier key tweaking.
- The [632]-xkb option seems to fix all of the missing keys: "@", "<",
+ The [655]-xkb option seems to fix all of the missing keys: "@", "<",
">", etc.: it is recommended that you try it if you have this sort of
problem. Let us know if there are any remaining problems (see the next
paragraph for some known problems). If you specify the -debug_keyboard
@@ -5233,7 +5280,7 @@ EndSection
debugging output (send it along with any problems you report).
Update: as of Jun/2005 x11vnc will try to automatically enable
- [633]-xkb if it appears that would be beneficial (e.g. if it sees any
+ [656]-xkb if it appears that would be beneficial (e.g. if it sees any
of "@", "<", ">", "[" and similar keys are mapped in a way that needs
the -xkb to access them). To disable this automatic check use -noxkb.
@@ -5248,7 +5295,7 @@ EndSection
was attached to keycode 93 (no physical key generates this
keycode) while ISO_Level3_Shift was attached to keycode 113. The
keycode skipping option was used to disable the ghost key:
- [634]-skip_keycodes 93
+ [657]-skip_keycodes 93
* In implementing -xkb we noticed that some characters were still
not getting through, e.g. "~" and "^". This is not really an
XKEYBOARD problem. What was happening was the VNC viewer was
@@ -5266,16 +5313,16 @@ EndSection
What to do? In general the VNC protocol has not really solved this
problem: what should be done if the VNC viewer sends a keysym not
recognized by the VNC server side? Workarounds can possibly be
- created using the [635]-remap x11vnc option:
+ created using the [658]-remap x11vnc option:
-remap asciitilde-dead_tilde,asciicircum-dead_circumflex
etc. Use -remap filename if the list is long. Please send us your
workarounds for this problem on your keyboard. Perhaps we can have
x11vnc adjust automatically at some point. Also see the
- [636]-add_keysyms option in the next paragraph.
- Update: for convenience "[637]-remap DEAD" does many of these
+ [659]-add_keysyms option in the next paragraph.
+ Update: for convenience "[660]-remap DEAD" does many of these
mappings at once.
- * To complement the above workaround using the [638]-remap, an
- option [639]-add_keysyms was added. This option instructs x11vnc
+ * To complement the above workaround using the [661]-remap, an
+ option [662]-add_keysyms was added. This option instructs x11vnc
to bind any unknown Keysyms coming in from VNC viewers to unused
Keycodes in the X server. This modifies the global state of the X
server. When x11vnc exits it removes the extra keymappings it
@@ -5286,7 +5333,7 @@ EndSection
disable.
- Q-80: When typing I sometimes get double, triple, or more of my
+ Q-81: When typing I sometimes get double, triple, or more of my
keystrokes repeated. I'm sure I only typed them once, what can I do?
This may be due to an interplay between your X server's key autorepeat
@@ -5294,7 +5341,7 @@ EndSection
Short answer: disable key autorepeating by running the command "xset r
off" on the Xserver where x11vnc is run (restore via "xset r on") or
- use the new (Jul/2004) [640]-norepeat x11vnc option. You will still
+ use the new (Jul/2004) [663]-norepeat x11vnc option. You will still
have autorepeating because that is taken care of on your VNC viewer
side.
@@ -5318,18 +5365,18 @@ EndSection
off", does the problem go away?
The workaround is to manually apply "xset r off" and "xset r on" as
- needed, or to use the [641]-norepeat (which has since Dec/2004 been
+ needed, or to use the [664]-norepeat (which has since Dec/2004 been
made the default). Note that with X server autorepeat turned off the
VNC viewer side of the connection will (nearly always) do its own
autorepeating so there is no big loss here, unless someone is also
working at the physical display and misses his autorepeating.
- Q-81: The x11vnc -norepeat mode is in effect, but I still get repeated
+ Q-82: The x11vnc -norepeat mode is in effect, but I still get repeated
keystrokes!!
Are you using x11vnc to log in to an X session via display manager?
- (as described in [642]this FAQ) If so, x11vnc is starting before your
+ (as described in [665]this FAQ) If so, x11vnc is starting before your
session and it disables autorepeat when you connect, but then after
you log in your session startup (GNOME, KDE, ...) could be resetting
the autorepeat to be on. Or it could be something inside your desktop
@@ -5349,11 +5396,11 @@ EndSection
should figure out how to disable that somehow.
- Q-82: The machine where I run x11vnc has an AltGr key, but the local
+ Q-83: The machine where I run x11vnc has an AltGr key, but the local
machine where I run the VNC viewer does not. Is there a way I can map
a local unused key to send an AltGr? How about a Compose key as well?
- Something like "[643]-remap Super_R-Mode_switch" x11vnc option may
+ Something like "[666]-remap Super_R-Mode_switch" x11vnc option may
work. Note that Super_R is the "Right Windoze(tm) Flaggie" key; you
may want to choose another. The -debug_keyboard option comes in handy
in finding keysym names (so does xev(1)).
@@ -5364,7 +5411,7 @@ EndSection
specify remappings from a file.
- Q-83: I have a Sun machine I run x11vnc on. Its Sun keyboard has just
+ Q-84: I have a Sun machine I run x11vnc on. Its Sun keyboard has just
one Alt key labelled "Alt" and two Meta keys labelled with little
diamonds. The machine where I run the VNC viewer only has Alt keys.
How can I send a Meta keypress? (e.g. emacs needs this)
@@ -5376,13 +5423,13 @@ EndSection
Since xmodmap(1) modifies the X server mappings you may not want to do
this (because it affects local work on that machine). Something like
- the [644]-remap Alt_L-Meta_L to x11vnc may be sufficient for ones
+ the [667]-remap Alt_L-Meta_L to x11vnc may be sufficient for ones
needs, and does not modify the X server environment. Note that you
cannot send Alt_L in this case, maybe -remap Super_L-Meta_L would be a
better choice if the Super_L key is typically unused in Unix.
- Q-84: Running x11vnc on HP-UX I cannot type "#" I just get a "3"
+ Q-85: Running x11vnc on HP-UX I cannot type "#" I just get a "3"
instead.
One user reports this problem on HP-UX Rel_B.11.23. The problem was
@@ -5396,7 +5443,7 @@ EndSection
and similar triple mappings (with two in the AltGr/Mode_switch group)
of a keysum to a single keycode.
- Use the [645]-nomodtweak option as a workaround. You can also use
+ Use the [668]-nomodtweak option as a workaround. You can also use
xmodmap to correct these mappings in the server, e.g.:
xmodmap -e "keycode 47 = 3 numbersign"
@@ -5405,12 +5452,12 @@ EndSection
handle these mappings better.
- Q-85: Can I map a keystroke to a mouse button click on the remote
+ Q-86: Can I map a keystroke to a mouse button click on the remote
machine?
This can be done directly in some X servers using AccessX and
Pointer_EnableKeys, but is a bit awkward. It may be more convenient to
- have x11vnc do the remapping. This can be done via the [646]-remap
+ have x11vnc do the remapping. This can be done via the [669]-remap
option using the fake "keysyms" Button1, Button2, etc. as the "to"
keys (i.e. the ones after the "-")
@@ -5419,7 +5466,7 @@ EndSection
button "paste" because (using XFree86/Xorg Emulate3Buttons) you have
to click both buttons on the touch pad at the same time. This
remapping:
- [647]-remap Super_R-Button2
+ [670]-remap Super_R-Button2
maps the Super_R "flag" key press to the Button2 click, thereby making
X pasting a bit easier.
@@ -5428,7 +5475,7 @@ EndSection
are generated immediately on the x11vnc side. When the key is released
(i.e. goes up) no events are generated.
- Q-86: How can I get Caps_Lock to work between my VNC viewer and
+ Q-87: How can I get Caps_Lock to work between my VNC viewer and
x11vnc?
This is a little tricky because it is possible to get the Caps_Lock
@@ -5438,14 +5485,14 @@ EndSection
Caps_Lock in the viewer your local machine goes into the Caps_Lock on
state and sends keysym "A" say when you press "a". x11vnc will then
fake things up so that Shift is held down to generate "A". The
- [648]-skip_lockkeys option should help to accomplish this. For finer
- grain control use something like: "[649]-remap Caps_Lock-None".
+ [671]-skip_lockkeys option should help to accomplish this. For finer
+ grain control use something like: "[672]-remap Caps_Lock-None".
- Also try the [650]-nomodtweak and [651]-capslock options.
+ Also try the [673]-nomodtweak and [674]-capslock options.
[Screen Related Issues and Features]
- Q-87: The remote display is larger (in number of pixels) than the
+ Q-88: The remote display is larger (in number of pixels) than the
local display I am running the vncviewer on. I don't like the
vncviewer scrollbars, what I can do?
@@ -5464,15 +5511,15 @@ EndSection
There may also be scaling viewers out there (e.g. TightVNC or UltraVNC
on Windows) that automatically shrink or expand the remote framebuffer
to fit the local display. Especially for hand-held devices. See also
- [652]this FAQ on x11vnc scaling.
+ [675]this FAQ on x11vnc scaling.
- Q-88: Does x11vnc support server-side framebuffer scaling? (E.g. to
+ Q-89: Does x11vnc support server-side framebuffer scaling? (E.g. to
make the desktop smaller).
As of Jun/2004 x11vnc provides basic server-side scaling. It is a
global scaling of the desktop, not a per-client setting. To enable it
- use the "[653]-scale fraction" option. "fraction" can either be a
+ use the "[676]-scale fraction" option. "fraction" can either be a
floating point number (e.g. -scale 0.5) or the alternative m/n
fraction notation (e.g. -scale 3/4). Note that if fraction is greater
than one the display is magnified.
@@ -5493,7 +5540,7 @@ EndSection
One can also use the ":nb" with an integer scale factor (say "-scale
2:nb") to use x11vnc as a screen magnifier for vision impaired
- [654]applications. Since with integer scale factors the framebuffers
+ [677]applications. Since with integer scale factors the framebuffers
become huge and scaling operations time consuming, be sure to use
":nb" for the fastest response.
@@ -5519,7 +5566,7 @@ EndSection
If one desires per-client scaling for something like 1:1 from a
workstation and 1:2 from a smaller device (e.g. handheld), currently
the only option is to run two (or more) x11vnc processes with
- different scalings listening on separate ports ([655]-rfbport option,
+ different scalings listening on separate ports ([678]-rfbport option,
etc.).
Update: As of May/2006 x11vnc also supports the UltraVNC server-side
@@ -5529,8 +5576,8 @@ EndSection
"-rfbversion 3.6" for this to be recognized by UltraVNC viewers.
BTW, whenever you run two or more x11vnc's on the same X display and
- use the [656]GUI, then to avoid all of the x11vnc's simultaneously
- answering the gui you will need to use something like [657]"-connect
+ use the [679]GUI, then to avoid all of the x11vnc's simultaneously
+ answering the gui you will need to use something like [680]"-connect
file1 -gui ..." with different connect files for each x11vnc you want
to control via the gui (or remote-control). The "-connect file1" usage
gives separate communication channels between a x11vnc proces and the
@@ -5539,12 +5586,12 @@ EndSection
Update: As of Mar/2005 x11vnc now scales the mouse cursor with the
same scale factor as the screen. If you don't want that, use the
- [658]"-scale_cursor frac" option to set the cursor scaling to a
+ [681]"-scale_cursor frac" option to set the cursor scaling to a
different factor (e.g. use "-scale_cursor 1" to keep the cursor at its
natural unscaled size).
- Q-89: Does x11vnc work with Xinerama? (i.e. multiple monitors joined
+ Q-90: Does x11vnc work with Xinerama? (i.e. multiple monitors joined
together to form one big, single screen).
Yes, it should generally work because it simply polls the big
@@ -5561,24 +5608,24 @@ EndSection
screen is not rectangular (e.g. 1280x1024 and 1024x768 monitors joined
together), then there will be "non-existent" areas on the screen. The
X server will return "garbage" image data for these areas and so they
- may be distracting to the viewer. The [659]-blackout x11vnc option
+ may be distracting to the viewer. The [682]-blackout x11vnc option
allows you to blacken-out rectangles by manually specifying their
WxH+X+Y geometries. If your system has the libXinerama library, the
- [660]-xinerama x11vnc option can be used to have it automatically
+ [683]-xinerama x11vnc option can be used to have it automatically
determine the rectangles to be blackened out. (Note on 8bpp
PseudoColor displays the fill color may not be black). Update:
- [661]-xinerama is now on by default.
+ [684]-xinerama is now on by default.
Some users have reported that the mouse does not behave properly for
their Xinerama display: i.e. the mouse cannot be moved to all regions
- of the large display. If this happens try using the [662]-xwarppointer
+ of the large display. If this happens try using the [685]-xwarppointer
option. This instructs x11vnc to fake mouse pointer motions using the
XWarpPointer function instead of the XTestFakeMotionEvent XTEST
function. (This may be due to a bug in the X server for XTEST when
Xinerama is enabled).
- Q-90: Can I use x11vnc on a multi-headed display that is not Xinerama
+ Q-91: Can I use x11vnc on a multi-headed display that is not Xinerama
(i.e. separate screens :0.0, :0.1, ... for each monitor)?
You can, but it is a little bit awkward: you must start separate
@@ -5596,32 +5643,32 @@ EndSection
Note: if you are running on Solaris 8 or earlier you can easily hit up
against the maximum of 6 shm segments per process (for Xsun in this
case) from running multiple x11vnc processes. You should modify
- /etc/system as mentioned in another [663]FAQ to increase the limit. It
- is probably also a good idea to run with the [664]-onetile option in
+ /etc/system as mentioned in another [686]FAQ to increase the limit. It
+ is probably also a good idea to run with the [687]-onetile option in
this case (to limit each x11vnc to 3 shm segments), or even
- [665]-noshm to use no shm segments.
+ [688]-noshm to use no shm segments.
- Q-91: Can x11vnc show only a portion of the display? (E.g. for a
+ Q-92: Can x11vnc show only a portion of the display? (E.g. for a
special purpose rfb application).
- As of Mar/2005 x11vnc has the "[666]-clip WxH+X+Y" option to select a
+ As of Mar/2005 x11vnc has the "[689]-clip WxH+X+Y" option to select a
rectangle of width W, height H and offset (X, Y). Thus the VNC screen
will be the clipped sub-region of the display and be only WxH in size.
- One user used -clip to split up a large [667]Xinerama screen into two
+ One user used -clip to split up a large [690]Xinerama screen into two
more managable smaller screens.
This also works to view a sub-region of a single application window if
- the [668]-id or [669]-sid options are used. The offset is measured
+ the [691]-id or [692]-sid options are used. The offset is measured
from the upper left corner of the selected window.
- Q-92: Does x11vnc support the XRANDR (X Resize, Rotate and Reflection)
+ Q-93: Does x11vnc support the XRANDR (X Resize, Rotate and Reflection)
extension? Whenever I rotate or resize the screen x11vnc just seems to
crash.
As of Dec/2004 x11vnc supports XRANDR. You enable it with the
- [670]-xrandr option to make x11vnc monitor XRANDR events and also trap
+ [693]-xrandr option to make x11vnc monitor XRANDR events and also trap
X server errors if the screen change occurred in the middle of an X
call like XGetImage. Once it traps the screen change it will create a
new framebuffer using the new screen.
@@ -5631,9 +5678,9 @@ EndSection
then the viewer will automatically resize. Otherwise, the new
framebuffer is fit as best as possible into the original viewer size
(portions of the screen may be clipped, unused, etc). For these
- viewers you can try the [671]-padgeom option to make the region big
+ viewers you can try the [694]-padgeom option to make the region big
enough to hold all resizes and rotations. We have fixed this problem
- for the TightVNC Viewer on Unix: [672]enhanced_tightvnc_viewer
+ for the TightVNC Viewer on Unix: [695]enhanced_tightvnc_viewer
If you specify "-xrandr newfbsize" then vnc viewers that do not
support NewFBSize will be disconnected before the resize. If you
@@ -5641,21 +5688,21 @@ EndSection
terminate.
- Q-93: Independent of any XRANDR, can I have x11vnc rotate and/or
+ Q-94: Independent of any XRANDR, can I have x11vnc rotate and/or
reflect the screen that the VNC viewers see? (e.g. for a handheld
whose screen is rotated 90 degrees).
- As of Jul/2006 there is the [673]-rotate option allow this. E.g's:
+ As of Jul/2006 there is the [696]-rotate option allow this. E.g's:
"-rotate +90", "-rotate -90", "-rotate x", etc.
- Q-94: Why is the view in my VNC viewer completely black? Or why is
+ Q-95: Why is the view in my VNC viewer completely black? Or why is
everything flashing around randomly?
See the next FAQ for a possible explanation.
- Q-95: I use Linux Virtual Consoles (VC's) to implement 'Fast User
+ Q-96: I use Linux Virtual Consoles (VC's) to implement 'Fast User
Switching' between users' sessions (e.g. Betty is on Ctrl-Alt-F7,
Bobby is on Ctrl-Alt-F8, and Sid is on Ctrl-Alt-F1: they use those
keystrokes to switch between their sessions). How come the view in a
@@ -5684,7 +5731,7 @@ EndSection
"chvt 7" for VC #7.
- Q-96: I am using x11vnc where my local machine has "popup/hidden
+ Q-97: I am using x11vnc where my local machine has "popup/hidden
taskbars" and the remote display where x11vnc runs also has
"popup/hidden taskbars" and they interfere and fight with eachother.
What can I do?
@@ -5699,7 +5746,7 @@ EndSection
click on the task bar panel, and uncheck "enable auto-hide" from the
panel properties dialog box. This will make the panel always visible.
- Q-97: Help! x11vnc and my KDE screensaver keep switching each other on
+ Q-98: Help! x11vnc and my KDE screensaver keep switching each other on
and off every few seconds.
This is a new (Jul/2006) problem seen, say, on the version of KDE that
@@ -5710,13 +5757,13 @@ EndSection
This may be a bug in kdesktop_lock. For now the only workaround is to
disable the screensaver. You can try using another one such as
- straight xscreensaver (see the instructions [674]here for how to
+ straight xscreensaver (see the instructions [697]here for how to
disable kdesktop_lock). If you have more info on this or see it
outside of KDE please let us know.
Update: It appears this is due to kdesktop_lock enabling the screen
saver when the Monitor is in DPMS low-power state (e.g. standby,
- suspend, or off). In Nov/2006 the x11vnc [675]-nodpms option was added
+ suspend, or off). In Nov/2006 the x11vnc [698]-nodpms option was added
as a workaround. Normally it is a good thing that the monitor powers
down (since x11vnc can still poll the framebuffer in this state), but
if you experience the kdesktop_lock problem you can specify the
@@ -5726,22 +5773,22 @@ EndSection
disable the screensaver). Feel free to file a bug against
kdesktop_lock with KDE.
- Q-98: I am running the beryl 3D window manager (or MythTv, Google
+ Q-99: I am running the beryl 3D window manager (or MythTv, Google
Earth, or some other OpenGL app) and I do not get screen updates in
x11vnc.
This appears to be because the 3D OpenGL/GLX hardware screen updates
do not get reported via the XDAMAGE mechanism. So this is a bug in
- [676]beryl or XDAMAGE/Xorg or the (possibly 3rd party) video card
+ [699]beryl or XDAMAGE/Xorg or the (possibly 3rd party) video card
driver.
- As a workaround apply the [677]-noxdamage option. As of Feb/2007
+ As a workaround apply the [700]-noxdamage option. As of Feb/2007
x11vnc will try to autodetect the problem and disable XDAMAGE if is
appears to be missing a lot of updates. But if you know you are using
- beryl you might as well always supply -noxdamage. Thanks to [678]this
+ beryl you might as well always supply -noxdamage. Thanks to [701]this
user who reported the problem and discovered the workaround.
- Q-99: Can I use x11vnc to view my VMWare session remotely?
+ Q-100: Can I use x11vnc to view my VMWare session remotely?
Yes, since VMWare usually runs as an X application you can view it via
x11vnc in the normal way.
@@ -5752,9 +5799,9 @@ EndSection
* Fullscreen mode
The way VMWare does Fullscreen mode on Linux is to display the Guest
- desktop in a separate Virtual Console (e.g. VC 8) (see [679]this FAQ
+ desktop in a separate Virtual Console (e.g. VC 8) (see [702]this FAQ
on VC's for background). Unfortunately, this Fullscreen VC is not an X
- server. So x11vnc cannot access it (however, [680]see this discussion
+ server. So x11vnc cannot access it (however, [703]see this discussion
of -rawfb for a possible workaround). x11vnc works fine with "Normal X
application window" and "Quick-Switch mode" because these use X.
@@ -5775,13 +5822,13 @@ EndSection
improve response. One can also cut the display depth (e.g. to 16bpp)
in this 2nd X session to improve video performance. This 2nd X session
emulates Fullscreen mode to some degree and can be viewed via x11vnc
- as long as the VMWare X session [681]is in the active VC.
+ as long as the VMWare X session [704]is in the active VC.
Also note that with a little bit of playing with "xwininfo -all
-children" output one can extract the (non-toplevel) windowid of the
of the Guest desktop only when VMWare is running as a normal X
application. Then one can export just the guest desktop (i.e. without
- the VMWare menu buttons) by use of the [682]-id windowid option. The
+ the VMWare menu buttons) by use of the [705]-id windowid option. The
caveats are the X session VMWare is in must be in the active VC and
the window must be fully visible, so this mode is not terribly
convenient, but could be useful in some circumstances (e.g. running
@@ -5793,14 +5840,14 @@ EndSection
[Exporting non-X11 devices via VNC]
- Q-100: Can non-X devices (e.g. a raw framebuffer) be viewed (and even
+ Q-101: Can non-X devices (e.g. a raw framebuffer) be viewed (and even
controlled) via VNC with x11vnc?
As of Apr/2005 there is support for this. Two options were added:
- "[683]-rawfb string" (to indicate the raw framembuffer device, file,
- etc. and its parameters) and "[684]-pipeinput command" (to provide an
+ "[706]-rawfb string" (to indicate the raw framembuffer device, file,
+ etc. and its parameters) and "[707]-pipeinput command" (to provide an
external program that will inject or otherwise process mouse and
- keystroke input). Some useful [685]-pipeinput schemes, VID, CONSOLE,
+ keystroke input). Some useful [708]-pipeinput schemes, VID, CONSOLE,
and UINPUT, have since been built into x11vnc for convenience.
This non-X mode for x11vnc is somewhat experimental because it is so
@@ -5838,9 +5885,9 @@ EndSection
access method). Only use file if map isn't working. BTW, "mmap" is an
alias for "map" and if you do not supply a type and the file exists,
map is assumed (see the -help output and below for some exceptions to
- this). The "snap:" setting applies the [686]-snapfb option with
+ this). The "snap:" setting applies the [709]-snapfb option with
"file:" type reading (this is useful for exporting webcams or TV tuner
- video; see [687]the next FAQ for more info).
+ video; see [710]the next FAQ for more info).
Also, if the string is of the form "setup:cmd" then cmd is run and the
first line of its output retrieved and used as the rawfb string. This
@@ -5884,7 +5931,7 @@ EndSection
screen to either shm or a mapped file. The format of these is XWD and
so the initial header should be skipped. BTW, since XWD is not
strictly RGB the view will only be approximate, but usable. Of course
- for the case of Xvfb x11vnc can poll it much better via the [688]X
+ for the case of Xvfb x11vnc can poll it much better via the [711]X
API, but you get the idea.
By default in -rawfb mode x11vnc will actually close any X display it
@@ -5913,13 +5960,13 @@ EndSection
tty1-tty6), or X graphical display (usually starting at tty7). In
addition to the text console other graphical ones may be viewed and
interacted with as well, e.g. DirectFB or SVGAlib apps, VMWare non-X
- fullscreen, or [689]Qt-embedded apps (PDAs/Handhelds). By default the
+ fullscreen, or [712]Qt-embedded apps (PDAs/Handhelds). By default the
pipeinput mechanisms UINPUT and CONSOLE (keystrokes only) are
automatically attempted in this mode under "-rawfb console".
The Video4Linux Capture device, /dev/video0, etc is either a Webcam or
a TV capture device and needs to have its driver enabled in the
- kernel. See [690]this FAQ for details. If specified via "-rawfb Video"
+ kernel. See [713]this FAQ for details. If specified via "-rawfb Video"
then the pipeinput method "VID" is applied (it lets you change video
parameters dynamically via keystrokes).
@@ -5927,10 +5974,10 @@ EndSection
also useful in testing.
- All of the above [691]-rawfb options are just for viewing the raw
+ All of the above [714]-rawfb options are just for viewing the raw
framebuffer (although some of the aliases do imply keystroke and mouse
pipeinput methods). That may be enough for certain applications of
- this feature (e.g. suppose a [692]video camera mapped its framebuffer
+ this feature (e.g. suppose a [715]video camera mapped its framebuffer
into memory and you just wanted to look at it via VNC).
To handle the pointer and keyboard input from the viewer users the
"-pipeinput cmd" option was added to indicate a helper program to
@@ -5968,7 +6015,7 @@ EndSection
keystrokes into the Linux console (e.g. the virtual consoles:
/dev/tty1, /dev/tty2, etc) in x11vnc/misc/vcinject.pl. It is based on
the vncterm/LinuxVNC.c program also in the libvncserver CVS. So to
- view and interact with VC #2 (assuming it is the [693]active VC) one
+ view and interact with VC #2 (assuming it is the [716]active VC) one
can run something like:
x11vnc -rawfb map:/dev/fb0@1024x768x16 -pipeinput './vcinject.pl 2'
@@ -6023,7 +6070,7 @@ EndSection
better to use the more accurate and faster LinuxVNC program. The
advantage x11vnc -rawfb might have is that it can allow interaction
with a non-text application, e.g. one based on SVGAlib or
- [694]Qt-embedded Also, for example the [695]VMWare Fullscreen mode is
+ [717]Qt-embedded Also, for example the [718]VMWare Fullscreen mode is
actually viewable under -rawfb and can be interacted with if uinput is
enabled.
@@ -6040,12 +6087,12 @@ EndSection
program that passes the framebuffer to libvncserver.
- Q-101: Can I export via VNC a Webcam or TV tuner framebuffer using
+ Q-102: Can I export via VNC a Webcam or TV tuner framebuffer using
x11vnc?
- Yes, this is possible to some degree with the [696]-rawfb option.
+ Yes, this is possible to some degree with the [719]-rawfb option.
There is no X11 involved: snapshots from the video capture device are
- used for the screen image data. See the [697]previous FAQ on -rawfb
+ used for the screen image data. See the [720]previous FAQ on -rawfb
for background. For best results, use x11vnc version 0.8.1 or later.
Roughly, one would do something like this:
@@ -6057,7 +6104,7 @@ EndSection
snapshot to a file that you point -rawfb to; ask me if it is not clear
what to do).
- The "snap:" enforces [698]-snapfb mode which appears to be necessary.
+ The "snap:" enforces [721]-snapfb mode which appears to be necessary.
The read pointer for video capture devices cannot be repositioned
(which would be needed for scanline polling), but you can read a full
frame of data from the device.
@@ -6079,7 +6126,7 @@ EndSection
Many video4linux drivers tend to set the framebuffer to be 24bpp (as
opposed to 32bpp). Since this can cause problems with VNC viewers,
- etc, the [699]-24to32 option will be automatically imposed when in
+ etc, the [722]-24to32 option will be automatically imposed when in
24bpp.
Note that by its very nature, video capture involves rapid change in
@@ -6087,7 +6134,7 @@ EndSection
wavering in brightness is always happening. This can lead to much
network bandwidth consumption for the VNC traffic and also local CPU
and I/O resource usage. You may want to experiment with "dialing down"
- the framerate via the [700]-wait, [701]-slow_fb, or [702]-defer
+ the framerate via the [723]-wait, [724]-slow_fb, or [725]-defer
options. Decreasing the window size and bpp also helps.
@@ -6176,16 +6223,16 @@ EndSection
format to HI240, RGB565, RGB24, RGB32, RGB555, and
GREY respectively. See -rawfb video for details.
- See also the [703]-freqtab option to supply your own xawtv channel to
+ See also the [726]-freqtab option to supply your own xawtv channel to
frequency mappings for your country (only ntsc-cable-us is built into
x11vnc).
- Q-102: Can I connect via VNC to a Qt-embedded/Qtopia application
+ Q-103: Can I connect via VNC to a Qt-embedded/Qtopia application
running on my handheld or PC using the Linux console framebuffer (i.e.
not X11)?
- Yes, the basic method for this is the [704]-rawfb scheme where the
+ Yes, the basic method for this is the [727]-rawfb scheme where the
Linux console framebuffer (usually /dev/fb0) is polled and the uinput
driver is used to inject keystrokes and mouse input. Often you will
just have to type:
@@ -6198,7 +6245,7 @@ EndSection
x11vnc -rawfb /dev/fb0@640x480x16
Also, to force usage of the uinput injection method use "-pipeinput
- UINPUT". See the [705]-pipeinput description for tunable parameters,
+ UINPUT". See the [728]-pipeinput description for tunable parameters,
etc.
One problem with the x11vnc uinput scheme is that it cannot guess the
@@ -6214,7 +6261,7 @@ EndSection
Even with the correct acceleration setting there is stil some drift
(probably because of the mouse threshold where the acceleration kicks
in) and so x11vnc needs to reposition the cursor from 0,0 about 5
- times a second. See the [706]-pipeinput UINPUT option for tuning
+ times a second. See the [729]-pipeinput UINPUT option for tuning
parameters that can be set (there are some experimental thresh=N
tuning parameters as well)
@@ -6245,10 +6292,10 @@ EndSection
x11vnc on your device and letting us know what does and does not work.
- Q-103: Now that non-X11 devices can be exported via VNC using x11vnc,
+ Q-104: Now that non-X11 devices can be exported via VNC using x11vnc,
can I build it with no dependencies on X11 header files and libraries?
- Yes, as of Jul/2006 x11vnc enables building for [707]-rawfb only
+ Yes, as of Jul/2006 x11vnc enables building for [730]-rawfb only
support. Just do something like when building:
./configure --without-x (plus any other flags)
make
@@ -6259,16 +6306,16 @@ EndSection
know what you did.
- Q-104: Does x11vnc support Mac OS X Aqua/Quartz displays natively
+ Q-105: Does x11vnc support Mac OS X Aqua/Quartz displays natively
(i.e. no X11 involved)?
Yes, since Nov/2006 in the development tree (x11vnc-0.8.4 tarball)
there is support for native Mac OS X Aqua/Quartz displays using the
- [708]-rawfb mechanism described above. The mouse and keyboard input is
+ [731]-rawfb mechanism described above. The mouse and keyboard input is
acheived via Mac OS X API's.
- So you can use x11vnc as an alternative to [709]OSXvnc (aka Vine
- Server), or [710]Apple Remote Desktop (ARD). Perhaps there is some
+ So you can use x11vnc as an alternative to [732]OSXvnc (aka Vine
+ Server), or [733]Apple Remote Desktop (ARD). Perhaps there is some
x11vnc feature you'd like to use on Mac OS X, etc. For a number of
activities (e.g. window drags) it seems to be faster than OSXvnc.
@@ -6278,7 +6325,7 @@ EndSection
(XDarwin) running on Mac OS X (people often install this software to
display remote X11 apps on their Mac OS X system, or use some old
favorites locally such as xterm). However in this case x11vnc will
- only work reasonably in single window [711]-id windowid mode (and the
+ only work reasonably in single window [734]-id windowid mode (and the
window may need to have mouse focus).
If you do not have the DISPLAY env. variable set, x11vnc will assume
@@ -6292,9 +6339,9 @@ EndSection
./configure --without-x
make
- Win2VNC/x2vnc: One handy use is to use the [712]-nofb mode to
+ Win2VNC/x2vnc: One handy use is to use the [735]-nofb mode to
redirect mouse and keyboard input to a nearby Mac (i.e. one to the
- side of your desk) via [713]x2vnc or Win2VNC. See [714]this FAQ for
+ side of your desk) via [736]x2vnc or Win2VNC. See [737]this FAQ for
more info.
Options: Here are the Mac OS X specific x11vnc options:
@@ -6364,17 +6411,17 @@ rm -f $tmp
command for you). Then once you are connected via VNC, iconify the
Terminal windows (you can't delete them since that will kill x11vnc).
- Q-105: Can x11vnc be used as a VNC reflector/repeater to improve
+ Q-106: Can x11vnc be used as a VNC reflector/repeater to improve
performance for the case of a large number of simultaneous VNC viewers
(e.g. classroom broadcasting or a large demo)?
- Yes, as of Feb/2007 there is the "[715]-reflect host:N" option to
+ Yes, as of Feb/2007 there is the "[738]-reflect host:N" option to
connect to the VNC server "host:N" (either another x11vnc or any other
VNC server) and re-export it. VNC viewers then connect to the
x11vnc(s) running -reflect.
The -reflect option is the same as: "-rawfb vnc:host:N". See the
- [716]-rawfb description under "VNC HOST" for more details.
+ [739]-rawfb description under "VNC HOST" for more details.
You can replace "host:N" with "listen" or "listen:port" for reverse
connections.
@@ -6435,20 +6482,20 @@ rm -f $tmp
re-exports via VNC to its clients C). However, CopyRect and
CursorShape encodings are preserved in the reflection and that helps.
Dragging windows with the mouse can be a problem (especially if S is
- not doing wireframing somehow, consider [717]-nodragging if the
+ not doing wireframing somehow, consider [740]-nodragging if the
problem is severe) For a really fast reflector/repeater it would have
to be implemented from scratch with performance in mind. See these
other projects:
- [718]http://sourceforge.net/projects/vnc-reflector/,
- [719]http://www.tightvnc.com/projector/ (closed source?),
- [720]http://www.ultravnc.com/addons/repeater.html (seems to be a NAT g
+ [741]http://sourceforge.net/projects/vnc-reflector/,
+ [742]http://www.tightvnc.com/projector/ (closed source?),
+ [743]http://www.ultravnc.com/addons/repeater.html (seems to be a NAT g
ateway and not a broadcaster?)
Automation via Reverse Connections: Instead of having the R's
connect directly to S and then the C's connect directly to the R they
should use, some convenience can be achieved by using reverse
- connections (the x11vnc "[721]"-connect host1,host2,..." option).
+ connections (the x11vnc "[744]"-connect host1,host2,..." option).
Suppose all the clients "C" are started up in Listen mode:
client1> vncviewer -listen
client2> vncviewer -listen
@@ -6477,36 +6524,36 @@ ateway and not a broadcaster?)
[Misc: Clipboard, File Transfer/Sharing, Printing, Sound, Beeps,
Thanks, etc.]
- Q-106: Does the Clipboard/Selection get transferred between the
+ Q-107: Does the Clipboard/Selection get transferred between the
vncviewer and the X display?
As of Jan/2004 x11vnc supports the "CutText" part of the rfb protocol.
Furthermore, x11vnc is able to hold the PRIMARY and CLIPBOARD
selection (Xvnc does not seem to do this). If you don't want the
- Clipboard/Selection exchanged use the [722]-nosel option. If you don't
+ Clipboard/Selection exchanged use the [745]-nosel option. If you don't
want the PRIMARY selection to be polled for changes use the
- [723]-noprimary option. (with a similar thing for CLIPBOARD). You can
- also fine-tune it a bit with the [724]-seldir dir option and also
- [725]-input.
+ [746]-noprimary option. (with a similar thing for CLIPBOARD). You can
+ also fine-tune it a bit with the [747]-seldir dir option and also
+ [748]-input.
You may need to watch out for desktop utilities such as KDE's
"Klipper" that do odd things with the selection, clipboard, and
cutbuffers.
- Q-107: Can I use x11vnc to record a Shock Wave Flash (or other format)
+ Q-108: Can I use x11vnc to record a Shock Wave Flash (or other format)
video of my desktop, e.g. to record a tutorial or demo?
Yes, it is possible with a number of tools that record VNC and
transform it to swf format or others. One such popular tool is
- [726]pyvnc2swf. There are a number of [727]tutorials on how to do
+ [749]pyvnc2swf. There are a number of [750]tutorials on how to do
this. Another option is to use the vnc2mpg that comes in the
LibVNCServer package.
An important thing to remember when doing this is that tuning
parameters should be applied to x11vnc to speed up its polling for
this sort of application, e.g. "-wait 10 -defer 10".
- Q-108: Can I transfer files back and forth with x11vnc?
+ Q-109: Can I transfer files back and forth with x11vnc?
As of Oct/2005 and May/2006 x11vnc enables, respectively, the TightVNC
and UltraVNC file transfer implementations that were added to
@@ -6514,7 +6561,7 @@ ateway and not a broadcaster?)
(and Windows viewers only support filetransfer it appears).
TightVNC file transfer is on by default, if you want to disable it use
- the [728]-nofilexfer option. UltraVNC file transfer is currently off
+ the [751]-nofilexfer option. UltraVNC file transfer is currently off
by default, to enable it use something like "-rfbversion 3.6
-permitfiletransfer"
options (UltraVNC incorrectly uses the RFB protocol version to
@@ -6524,13 +6571,13 @@ ateway and not a broadcaster?)
VNC Viewers.
- Q-109: Can I (temporarily) mount my local (viewer-side) Windows/Samba
+ Q-110: Can I (temporarily) mount my local (viewer-side) Windows/Samba
File share on the machine where x11vnc is running?
You will have to use an external network redirection for this.
Filesystem mounting is not part of the VNC protocol.
- We show a simple [729]Samba example here.
+ We show a simple [752]Samba example here.
First you will need a tunnel to redirect the SMB requests from the
remote machine to the one you sitting at. We use an ssh tunnel:
@@ -6567,17 +6614,17 @@ d,ip=127.0.0.1,port=1139
far-away> smbumount /home/fred/smb-haystack-pub
At some point we hope to fold some automation for SMB ssh redir setup
- into the [730]Enhanced TightVNC Viewer (ssvnc) package we provide (as
+ into the [753]Enhanced TightVNC Viewer (ssvnc) package we provide (as
of Sep 2006 it is there for testing).
- Q-110: Can I redirect CUPS print jobs from the remote desktop where
+ Q-111: Can I redirect CUPS print jobs from the remote desktop where
x11vnc is running to a printer on my local (viewer-side) machine?
You will have to use an external network redirection for this.
Printing is not part of the VNC protocol.
- We show a simple Unix to Unix [731]CUPS example here. Non-CUPS port
+ We show a simple Unix to Unix [754]CUPS example here. Non-CUPS port
redirections (e.g. LPD) should also be possible, but may be a bit more
tricky. If you are viewing on Windows SMB and don't have a local cups
server it may be trickier still (see below).
@@ -6649,11 +6696,11 @@ d,ip=127.0.0.1,port=1139
"localhost".
At some point we hope to fold some automation for CUPS ssh redir setup
- into the [732]Enhanced TightVNC Viewer (ssvnc) package we provide (as
+ into the [755]Enhanced TightVNC Viewer (ssvnc) package we provide (as
of Sep 2006 it is there for testing).
- Q-111: How can I hear the sound (audio) from the remote applications
+ Q-112: How can I hear the sound (audio) from the remote applications
on the desktop I am viewing via x11vnc?
You will have to use an external network audio mechanism for this.
@@ -6750,11 +6797,11 @@ or:
the applications will fail to run because LD_PRELOAD will point to
libraries of the wrong wordsize.
* At some point we hope to fold some automation for esd or artsd ssh
- redir setup into the [733]Enhanced TightVNC Viewer (ssvnc) package
+ redir setup into the [756]Enhanced TightVNC Viewer (ssvnc) package
we provide (as of Sep/2006 it is there for testing).
- Q-112: Why don't I hear the "Beeps" in my X session (e.g. when typing
+ Q-113: Why don't I hear the "Beeps" in my X session (e.g. when typing
tput bel in an xterm)?
As of Dec/2003 "Beep" XBell events are tracked by default. The X
@@ -6762,16 +6809,16 @@ or:
in Solaris, see Xserver(1) for how to turn it on via +kb), and so you
won't hear them if the extension is not present.
- If you don't want to hear the beeps use the [734]-nobell option. If
+ If you don't want to hear the beeps use the [757]-nobell option. If
you want to hear the audio from the remote applications, consider
- trying a [735]redirector such as esd.
+ trying a [758]redirector such as esd.
Contributions:
- Q-113: Thanks for your program and for your help! Can I make a
+ Q-114: Thanks for your program and for your help! Can I make a
donation?
Please do (any amount is appreciated) and thank you for your support!
@@ -6791,731 +6838,754 @@ References
8. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
9. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
10. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 11. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
- 12. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 13. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 14. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 15. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 16. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 17. http://www.karlrunge.com/x11vnc/index.html#faq
- 18. http://www.karlrunge.com/x11vnc/disclaimer.html
- 19. http://www.karlrunge.com/x11vnc/index.html#contact
- 20. http://www.karlrunge.com/x11vnc/index.html#beta-test
- 21. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 22. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 23. http://www.realvnc.com/
- 24. http://www.tightvnc.com/
- 25. http://www.ultravnc.com/
- 26. http://www.redstonesoftware.com/vnc.html
- 27. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 28. http://www.karlrunge.com/x11vnc/index.html#downloading
- 29. http://www.tightvnc.com/download.html
- 30. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 31. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 32. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 33. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 34. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
- 35. http://www.sun.com/software/solaris/freeware/
- 36. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 37. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 38. http://www.karlrunge.com/x11vnc/index.html#faq-service
- 39. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 40. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
- 41. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 11. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
+ 12. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
+ 13. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 14. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 15. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 16. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 17. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 18. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 19. http://www.karlrunge.com/x11vnc/index.html#faq
+ 20. http://www.karlrunge.com/x11vnc/disclaimer.html
+ 21. http://www.karlrunge.com/x11vnc/index.html#contact
+ 22. http://www.karlrunge.com/x11vnc/index.html#beta-test
+ 23. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 24. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 25. http://www.realvnc.com/
+ 26. http://www.tightvnc.com/
+ 27. http://www.ultravnc.com/
+ 28. http://www.redstonesoftware.com/vnc.html
+ 29. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 30. http://www.karlrunge.com/x11vnc/index.html#downloading
+ 31. http://www.tightvnc.com/download.html
+ 32. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 33. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 34. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 35. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 36. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
+ 37. http://www.sun.com/software/solaris/freeware/
+ 38. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 39. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 40. http://www.karlrunge.com/x11vnc/index.html#faq-service
+ 41. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
42. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
- 43. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 44. http://www.karlrunge.com/x11vnc/index.html#tightvnc_via
- 45. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 46. http://www.karlrunge.com/x11vnc/chainingssh.html
- 47. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 48. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 49. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 50. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 51. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 52. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 53. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 54. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 55. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
- 56. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 57. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 58. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
- 59. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 60. http://www.stunnel.org/
- 61. http://stunnel.mirt.net/
- 62. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 63. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 64. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 65. http://sourceforge.net/projects/libvncserver/
- 66. http://sourceforge.net/project/showfiles.php?group_id=32584&package_id=119006&release_id=483129
- 67. http://sourceforge.net/project/shownotes.php?release_id=483129&group_id=32584
- 68. http://www.karlrunge.com/x11vnc/x11vnc-0.8.5.tar.gz
- 69. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
- 70. http://www.tightvnc.com/download.html
- 71. http://www.realvnc.com/download-free.html
- 72. http://sourceforge.net/projects/cotvnc/
- 73. http://www.ultravnc.com/
- 74. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 75. http://www.karlrunge.com/x11vnc/rx11vnc
- 76. http://www.karlrunge.com/x11vnc/rx11vnc.pl
- 77. http://www.sunfreeware.com/
- 78. http://www.karlrunge.com/x11vnc/bins
- 79. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 80. http://www.karlrunge.com/x11vnc/miscbuild.html
- 81. ftp://ftp.uu.net/graphics/jpeg/
- 82. http://www.gzip.org/zlib/
- 83. http://www.sunfreeware.com/
- 84. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
- 85. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 86. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 87. http://www.karlrunge.com/x11vnc/x11vnc-0.8.5.tar.gz
- 88. http://www.karlrunge.com/x11vnc/bins
- 89. mailto:xvml-beta@karlrunge.com
- 90. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 91. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 92. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 93. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 94. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 95. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#ycrop
- 96. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 97. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 98. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 99. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 100. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 101. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
- 102. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 103. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 104. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 105. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 106. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
- 107. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
- 108. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nowireframelocal
- 109. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 110. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
- 111. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 112. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 113. http://www.openssl.org/
- 114. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 115. http://www.stunnel.org/
- 116. http://stunnel.mirt.net/
- 117. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
- 118. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCert
- 119. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCA
- 120. http://www.karlrunge.com/x11vnc/ssl.html
- 121. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 122. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 123. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 124. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 125. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
- 126. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 127. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 128. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 129. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 130. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 131. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 132. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 133. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 134. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 135. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 136. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 137. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
- 138. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
- 139. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
- 140. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 141. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-v,
- 142. http://www.karlrunge.com/x11vnc/prevrels.html
- 143. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 144. http://www.tightvnc.com/
- 145. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 146. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 147. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
- 148. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 149. http://www.karlrunge.com/x11vnc/recurse_x11vnc.jpg
- 150. http://wwws.sun.com/sunray/index.html
- 151. http://www.karlrunge.com/x11vnc/sunray.html
- 152. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 153. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 154. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 155. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 156. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 157. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 158. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 159. mailto:xvml@karlrunge.com
- 160. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
- 161. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 162. http://www.karlrunge.com/x11vnc/index.html#faq-build
- 163. http://www.karlrunge.com/x11vnc/index.html#faq-missing-xtest
- 164. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
- 165. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
- 166. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
- 167. http://www.karlrunge.com/x11vnc/index.html#faq-cmdline-opts
- 168. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
- 169. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
- 170. http://www.karlrunge.com/x11vnc/index.html#faq-change-port
- 171. http://www.karlrunge.com/x11vnc/index.html#faq-quiet-bg
- 172. http://www.karlrunge.com/x11vnc/index.html#faq-sigpipe
- 173. http://www.karlrunge.com/x11vnc/index.html#faq-build-customizations
- 174. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
- 175. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc-8bpp
- 176. http://www.karlrunge.com/x11vnc/index.html#faq-macosx-nofb
- 177. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
- 178. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
- 179. http://www.karlrunge.com/x11vnc/index.html#faq-windowid
- 180. http://www.karlrunge.com/x11vnc/index.html#faq-transients-id
- 181. http://www.karlrunge.com/x11vnc/index.html#faq-24bpp
- 182. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 183. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
- 184. http://www.karlrunge.com/x11vnc/index.html#faq-sunrays
- 185. http://www.karlrunge.com/x11vnc/index.html#faq-stop-bg
- 186. http://www.karlrunge.com/x11vnc/index.html#faq-remote_control
- 187. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 188. http://www.karlrunge.com/x11vnc/index.html#faq-passwd-noecho
- 189. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 190. http://www.karlrunge.com/x11vnc/index.html#faq-multipasswd
- 191. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
- 192. http://www.karlrunge.com/x11vnc/index.html#faq-custom-passwords
- 193. http://www.karlrunge.com/x11vnc/index.html#faq-forever-shared
- 194. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
- 195. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 196. http://www.karlrunge.com/x11vnc/index.html#faq-listen-interface
- 197. http://www.karlrunge.com/x11vnc/index.html#faq-listen-localhost
- 198. http://www.karlrunge.com/x11vnc/index.html#faq-input-opt
- 199. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 200. http://www.karlrunge.com/x11vnc/index.html#faq-users-opt
- 201. http://www.karlrunge.com/x11vnc/index.html#faq-blockdpy
- 202. http://www.karlrunge.com/x11vnc/index.html#faq-gone-lock
- 203. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-unix
- 204. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-putty
- 205. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 206. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 207. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 208. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
- 209. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 210. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-ca
- 211. http://www.karlrunge.com/x11vnc/index.html#faq-service
- 212. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 213. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 214. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 215. http://www.karlrunge.com/x11vnc/index.html#faq-loop
- 216. http://www.karlrunge.com/x11vnc/index.html#faq-java-http
- 217. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
- 218. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 219. http://www.karlrunge.com/x11vnc/index.html#faq-headless
- 220. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
- 221. http://www.karlrunge.com/x11vnc/index.html#faq-less-resource
- 222. http://www.karlrunge.com/x11vnc/index.html#faq-more-resource
- 223. http://www.karlrunge.com/x11vnc/index.html#faq-slow-link
- 224. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage
- 225. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage-opengl
- 226. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
- 227. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 228. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
- 229. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 230. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-shape
- 231. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha
- 232. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 233. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-arrow
- 234. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-positions
- 235. http://www.karlrunge.com/x11vnc/index.html#faq-buttonmap-opt
- 236. http://www.karlrunge.com/x11vnc/index.html#faq-altgr
- 237. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 238. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless-sloppy
- 239. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 240. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys
- 241. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys-still
- 242. http://www.karlrunge.com/x11vnc/index.html#faq-remap-opt
- 243. http://www.karlrunge.com/x11vnc/index.html#faq-sun-alt-meta
- 244. http://www.karlrunge.com/x11vnc/index.html#faq-hpux-multi-key
- 245. http://www.karlrunge.com/x11vnc/index.html#faq-remap-button-click
- 246. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
- 247. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
- 248. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
- 249. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
- 250. http://www.karlrunge.com/x11vnc/index.html#faq-multi-screen
- 251. http://www.karlrunge.com/x11vnc/index.html#faq-clip-screen
- 252. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
- 253. http://www.karlrunge.com/x11vnc/index.html#faq-rotate
- 254. http://www.karlrunge.com/x11vnc/index.html#faq-black-screen
- 255. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 256. http://www.karlrunge.com/x11vnc/index.html#faq-hidden-taskbars
- 257. http://www.karlrunge.com/x11vnc/index.html#faq-kde-screensaver
- 258. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
- 259. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
- 260. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 261. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 262. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 263. http://www.karlrunge.com/x11vnc/index.html#faq-no-x11
- 264. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 265. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
- 266. http://www.karlrunge.com/x11vnc/index.html#faq-clipboard
- 267. http://www.karlrunge.com/x11vnc/index.html#faq-record-swf
- 268. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
- 269. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
- 270. http://www.karlrunge.com/x11vnc/index.html#faq-cups
- 271. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 272. http://www.karlrunge.com/x11vnc/index.html#faq-beeps
- 273. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
- 274. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
- 275. http://www.tldp.org/HOWTO/Remote-X-Apps.html
- 276. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 277. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 278. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 279. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 280. http://www.karlrunge.com/x11vnc/x11vnc_sunos4.html
- 281. http://www.karlrunge.com/x11vnc/index.html#building
- 282. http://www.karlrunge.com/x11vnc/index.html#faq-build
- 283. http://packages.debian.org/x11vnc
- 284. http://www.linuxpackages.net/search_view.php?by=name&name=x11vnc
- 285. http://dag.wieers.com/packages/x11vnc/
- 286. http://dries.ulyssis.org/rpm/packages/x11vnc/info.html
- 287. http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=Network/x11vnc/
- 288. http://www.sunfreeware.com/
- 289. http://www.freebsd.org/cgi/ports.cgi?query=x11vnc&stype=all
- 290. http://www.freshports.org/net/x11vnc
- 291. http://www.openbsd.org/3.9_packages/i386/x11vnc-0.6.2.tgz-long.html
- 292. http://pkgsrc.se/x11/x11vnc
- 293. http://mike.saunby.googlepages.com/
- 294. http://www.pdaxrom.org/ipk_feed.php?menuid=11&showfeed=unstable#x11vnc
- 295. http://www.focv.com/ipkg/
- 296. http://www.karlrunge.com/x11vnc/bins
- 297. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 298. http://www.tightvnc.com/download.html
- 299. http://www.realvnc.com/download-free.html
- 300. http://sourceforge.net/projects/cotvnc/
- 301. http://www.ultravnc.com/
- 302. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 303. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
- 304. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 305. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
- 306. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 307. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
- 308. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 309. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-o
- 310. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 311. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofb
- 312. http://fredrik.hubbe.net/x2vnc.html
- 313. http://www.hubbe.net/~hubbe/win2vnc.html
- 314. http://www.deboer.gmxhome.de/
- 315. http://sourceforge.net/projects/win2vnc/
- 316. http://fredrik.hubbe.net/x2vnc.html
- 317. http://freshmeat.net/projects/x2x/
- 318. http://ftp.digital.com/pub/Digital/SRC/x2x/
- 319. http://zapek.com/software/zvnc/
- 320. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-visual
- 321. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 322. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
- 323. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 324. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-notruecolor
- 325. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
- 326. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 327. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 328. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 329. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 330. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
- 331. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 332. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 333. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 43. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 44. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
+ 45. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 46. http://www.karlrunge.com/x11vnc/index.html#tightvnc_via
+ 47. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 48. http://www.karlrunge.com/x11vnc/chainingssh.html
+ 49. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 50. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 51. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 52. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 53. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 54. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 55. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 56. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 57. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
+ 58. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 59. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 60. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
+ 61. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 62. http://www.stunnel.org/
+ 63. http://stunnel.mirt.net/
+ 64. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 65. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 66. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 67. http://sourceforge.net/projects/libvncserver/
+ 68. http://sourceforge.net/project/showfiles.php?group_id=32584&package_id=119006&release_id=483129
+ 69. http://sourceforge.net/project/shownotes.php?release_id=483129&group_id=32584
+ 70. http://www.karlrunge.com/x11vnc/x11vnc-0.8.5.tar.gz
+ 71. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
+ 72. http://www.tightvnc.com/download.html
+ 73. http://www.realvnc.com/download-free.html
+ 74. http://sourceforge.net/projects/cotvnc/
+ 75. http://www.ultravnc.com/
+ 76. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 77. http://www.karlrunge.com/x11vnc/rx11vnc
+ 78. http://www.karlrunge.com/x11vnc/rx11vnc.pl
+ 79. http://www.sunfreeware.com/
+ 80. http://www.karlrunge.com/x11vnc/bins
+ 81. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 82. http://www.karlrunge.com/x11vnc/miscbuild.html
+ 83. ftp://ftp.uu.net/graphics/jpeg/
+ 84. http://www.gzip.org/zlib/
+ 85. http://www.sunfreeware.com/
+ 86. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
+ 87. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 88. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 89. http://www.karlrunge.com/x11vnc/x11vnc-0.8.5.tar.gz
+ 90. http://www.karlrunge.com/x11vnc/bins
+ 91. mailto:xvml-beta@karlrunge.com
+ 92. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 93. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 94. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 95. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 96. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 97. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#ycrop
+ 98. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
+ 99. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-avahi
+ 100. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 101. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 102. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
+ 103. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
+ 104. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noserverdpms
+ 105. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabalways
+ 106. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 107. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 108. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 109. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 110. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 111. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
+ 112. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 113. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 114. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 115. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 116. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
+ 117. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
+ 118. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nowireframelocal
+ 119. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 120. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
+ 121. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 122. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 123. http://www.openssl.org/
+ 124. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 125. http://www.stunnel.org/
+ 126. http://stunnel.mirt.net/
+ 127. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
+ 128. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCert
+ 129. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCA
+ 130. http://www.karlrunge.com/x11vnc/ssl.html
+ 131. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 132. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 133. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 134. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 135. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
+ 136. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 137. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 138. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 139. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 140. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 141. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 142. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 143. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 144. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 145. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 146. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 147. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
+ 148. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
+ 149. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
+ 150. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 151. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-v,
+ 152. http://www.karlrunge.com/x11vnc/prevrels.html
+ 153. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 154. http://www.tightvnc.com/
+ 155. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 156. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 157. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
+ 158. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 159. http://www.karlrunge.com/x11vnc/recurse_x11vnc.jpg
+ 160. http://wwws.sun.com/sunray/index.html
+ 161. http://www.karlrunge.com/x11vnc/sunray.html
+ 162. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 163. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 164. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 165. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 166. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 167. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 168. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 169. mailto:xvml@karlrunge.com
+ 170. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 171. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 172. http://www.karlrunge.com/x11vnc/index.html#faq-build
+ 173. http://www.karlrunge.com/x11vnc/index.html#faq-missing-xtest
+ 174. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
+ 175. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
+ 176. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
+ 177. http://www.karlrunge.com/x11vnc/index.html#faq-cmdline-opts
+ 178. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
+ 179. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
+ 180. http://www.karlrunge.com/x11vnc/index.html#faq-change-port
+ 181. http://www.karlrunge.com/x11vnc/index.html#faq-quiet-bg
+ 182. http://www.karlrunge.com/x11vnc/index.html#faq-sigpipe
+ 183. http://www.karlrunge.com/x11vnc/index.html#faq-build-customizations
+ 184. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
+ 185. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc-8bpp
+ 186. http://www.karlrunge.com/x11vnc/index.html#faq-macosx-nofb
+ 187. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
+ 188. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 189. http://www.karlrunge.com/x11vnc/index.html#faq-windowid
+ 190. http://www.karlrunge.com/x11vnc/index.html#faq-transients-id
+ 191. http://www.karlrunge.com/x11vnc/index.html#faq-24bpp
+ 192. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 193. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
+ 194. http://www.karlrunge.com/x11vnc/index.html#faq-sunrays
+ 195. http://www.karlrunge.com/x11vnc/index.html#faq-stop-bg
+ 196. http://www.karlrunge.com/x11vnc/index.html#faq-remote_control
+ 197. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 198. http://www.karlrunge.com/x11vnc/index.html#faq-passwd-noecho
+ 199. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 200. http://www.karlrunge.com/x11vnc/index.html#faq-multipasswd
+ 201. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
+ 202. http://www.karlrunge.com/x11vnc/index.html#faq-custom-passwords
+ 203. http://www.karlrunge.com/x11vnc/index.html#faq-forever-shared
+ 204. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
+ 205. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 206. http://www.karlrunge.com/x11vnc/index.html#faq-listen-interface
+ 207. http://www.karlrunge.com/x11vnc/index.html#faq-listen-localhost
+ 208. http://www.karlrunge.com/x11vnc/index.html#faq-input-opt
+ 209. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 210. http://www.karlrunge.com/x11vnc/index.html#faq-users-opt
+ 211. http://www.karlrunge.com/x11vnc/index.html#faq-blockdpy
+ 212. http://www.karlrunge.com/x11vnc/index.html#faq-gone-lock
+ 213. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-unix
+ 214. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-putty
+ 215. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 216. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 217. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 218. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
+ 219. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 220. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-ca
+ 221. http://www.karlrunge.com/x11vnc/index.html#faq-service
+ 222. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 223. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 224. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
+ 225. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 226. http://www.karlrunge.com/x11vnc/index.html#faq-loop
+ 227. http://www.karlrunge.com/x11vnc/index.html#faq-java-http
+ 228. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
+ 229. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 230. http://www.karlrunge.com/x11vnc/index.html#faq-headless
+ 231. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
+ 232. http://www.karlrunge.com/x11vnc/index.html#faq-less-resource
+ 233. http://www.karlrunge.com/x11vnc/index.html#faq-more-resource
+ 234. http://www.karlrunge.com/x11vnc/index.html#faq-slow-link
+ 235. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage
+ 236. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage-opengl
+ 237. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
+ 238. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 239. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
+ 240. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 241. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-shape
+ 242. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha
+ 243. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 244. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-arrow
+ 245. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-positions
+ 246. http://www.karlrunge.com/x11vnc/index.html#faq-buttonmap-opt
+ 247. http://www.karlrunge.com/x11vnc/index.html#faq-altgr
+ 248. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 249. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless-sloppy
+ 250. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 251. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys
+ 252. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys-still
+ 253. http://www.karlrunge.com/x11vnc/index.html#faq-remap-opt
+ 254. http://www.karlrunge.com/x11vnc/index.html#faq-sun-alt-meta
+ 255. http://www.karlrunge.com/x11vnc/index.html#faq-hpux-multi-key
+ 256. http://www.karlrunge.com/x11vnc/index.html#faq-remap-button-click
+ 257. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
+ 258. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
+ 259. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
+ 260. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
+ 261. http://www.karlrunge.com/x11vnc/index.html#faq-multi-screen
+ 262. http://www.karlrunge.com/x11vnc/index.html#faq-clip-screen
+ 263. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
+ 264. http://www.karlrunge.com/x11vnc/index.html#faq-rotate
+ 265. http://www.karlrunge.com/x11vnc/index.html#faq-black-screen
+ 266. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 267. http://www.karlrunge.com/x11vnc/index.html#faq-hidden-taskbars
+ 268. http://www.karlrunge.com/x11vnc/index.html#faq-kde-screensaver
+ 269. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
+ 270. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 271. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 272. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 273. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 274. http://www.karlrunge.com/x11vnc/index.html#faq-no-x11
+ 275. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 276. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
+ 277. http://www.karlrunge.com/x11vnc/index.html#faq-clipboard
+ 278. http://www.karlrunge.com/x11vnc/index.html#faq-record-swf
+ 279. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
+ 280. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
+ 281. http://www.karlrunge.com/x11vnc/index.html#faq-cups
+ 282. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 283. http://www.karlrunge.com/x11vnc/index.html#faq-beeps
+ 284. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 285. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
+ 286. http://www.tldp.org/HOWTO/Remote-X-Apps.html
+ 287. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 288. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 289. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 290. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 291. http://www.karlrunge.com/x11vnc/x11vnc_sunos4.html
+ 292. http://www.karlrunge.com/x11vnc/index.html#building
+ 293. http://www.karlrunge.com/x11vnc/index.html#faq-build
+ 294. http://packages.debian.org/x11vnc
+ 295. http://www.linuxpackages.net/search_view.php?by=name&name=x11vnc
+ 296. http://dag.wieers.com/packages/x11vnc/
+ 297. http://dries.ulyssis.org/rpm/packages/x11vnc/info.html
+ 298. http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=Network/x11vnc/
+ 299. http://www.sunfreeware.com/
+ 300. http://www.freebsd.org/cgi/ports.cgi?query=x11vnc&stype=all
+ 301. http://www.freshports.org/net/x11vnc
+ 302. http://www.openbsd.org/3.9_packages/i386/x11vnc-0.6.2.tgz-long.html
+ 303. http://pkgsrc.se/x11/x11vnc
+ 304. http://mike.saunby.googlepages.com/
+ 305. http://www.pdaxrom.org/ipk_feed.php?menuid=11&showfeed=unstable#x11vnc
+ 306. http://www.focv.com/ipkg/
+ 307. http://www.karlrunge.com/x11vnc/bins
+ 308. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 309. http://www.tightvnc.com/download.html
+ 310. http://www.realvnc.com/download-free.html
+ 311. http://sourceforge.net/projects/cotvnc/
+ 312. http://www.ultravnc.com/
+ 313. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 314. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
+ 315. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 316. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
+ 317. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 318. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
+ 319. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 320. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-o
+ 321. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 322. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofb
+ 323. http://fredrik.hubbe.net/x2vnc.html
+ 324. http://www.hubbe.net/~hubbe/win2vnc.html
+ 325. http://www.deboer.gmxhome.de/
+ 326. http://sourceforge.net/projects/win2vnc/
+ 327. http://fredrik.hubbe.net/x2vnc.html
+ 328. http://freshmeat.net/projects/x2x/
+ 329. http://ftp.digital.com/pub/Digital/SRC/x2x/
+ 330. http://zapek.com/software/zvnc/
+ 331. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-visual
+ 332. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 333. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
334. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 335. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 336. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
- 337. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 338. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sid
- 339. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
- 340. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
- 341. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 342. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flipbyteorder
- 343. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 344. http://www.karlrunge.com/x11vnc/index.html#xauth_pain
- 345. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 346. http://wwws.sun.com/sunray/index.html
- 347. http://www.karlrunge.com/x11vnc/sunray.html
- 348. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 349. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
- 350. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 351. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 352. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
- 353. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_keys
- 354. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 355. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
- 356. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 357. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-storepasswd
- 358. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 359. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 360. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
- 361. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewpasswd
- 362. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwd
- 363. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 364. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 365. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 366. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 367. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
- 368. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 369. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 370. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 371. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 372. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 373. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 374. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel
- 375. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 376. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 377. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 378. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 379. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 380. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 381. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 382. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 383. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 384. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 385. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 386. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 387. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-shared
- 388. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 389. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 390. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 391. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 392. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 393. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 394. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 395. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 396. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listen
- 397. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 398. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 399. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 400. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 401. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
- 402. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 403. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewonly
- 404. ftp://ftp.x.org/
- 405. http://www.karlrunge.com/x11vnc/dtVncPopup
- 406. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 407. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
- 408. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 409. http://www.karlrunge.com/x11vnc/blockdpy.c
- 410. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 411. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 412. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
- 413. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
- 414. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabkbd
- 415. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
- 416. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
+ 335. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-notruecolor
+ 336. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
+ 337. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 338. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 339. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 340. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 341. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
+ 342. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 343. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 344. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 345. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 346. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 347. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 348. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 349. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sid
+ 350. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
+ 351. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
+ 352. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 353. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flipbyteorder
+ 354. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 355. http://www.karlrunge.com/x11vnc/index.html#xauth_pain
+ 356. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 357. http://wwws.sun.com/sunray/index.html
+ 358. http://www.karlrunge.com/x11vnc/sunray.html
+ 359. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 360. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
+ 361. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 362. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 363. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
+ 364. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_keys
+ 365. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 366. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
+ 367. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 368. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-storepasswd
+ 369. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 370. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 371. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
+ 372. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewpasswd
+ 373. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwd
+ 374. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 375. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 376. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 377. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 378. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
+ 379. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 380. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 381. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 382. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 383. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 384. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 385. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel
+ 386. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 387. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 388. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 389. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 390. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 391. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 392. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 393. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 394. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 395. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 396. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 397. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 398. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-shared
+ 399. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 400. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 401. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 402. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 403. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 404. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 405. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 406. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 407. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listen
+ 408. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 409. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 410. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 411. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 412. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
+ 413. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 414. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewonly
+ 415. ftp://ftp.x.org/
+ 416. http://www.karlrunge.com/x11vnc/dtVncPopup
417. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
418. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
- 419. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 420. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 421. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 422. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 423. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 424. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 425. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 426. http://www.karlrunge.com/x11vnc/index.html#gateway_double_ssh
- 427. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 428. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 429. http://www.stunnel.org/
- 430. http://stunnel.mirt.net/
- 431. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 432. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 433. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
- 434. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 435. http://www.stunnel.org/
- 436. http://www.karlrunge.com/x11vnc/ssl.html
- 437. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 438. http://www.karlrunge.com/x11vnc/ssl.html
- 439. http://www.securityfocus.com/infocus/1677
- 440. http://www.karlrunge.com/x11vnc/ssl.html
- 441. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
- 442. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 443. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 444. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 445. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 446. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 447. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 448. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 449. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 450. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 451. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 452. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 453. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 454. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 455. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 456. http://www.openssl.org/
- 457. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 458. http://www.stunnel.org/
- 459. http://www.karlrunge.com/x11vnc/ssl.html
+ 419. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 420. http://www.karlrunge.com/x11vnc/blockdpy.c
+ 421. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 422. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 423. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
+ 424. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
+ 425. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabkbd
+ 426. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
+ 427. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
+ 428. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 429. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
+ 430. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 431. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 432. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 433. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 434. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 435. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 436. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 437. http://www.karlrunge.com/x11vnc/index.html#gateway_double_ssh
+ 438. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 439. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 440. http://www.stunnel.org/
+ 441. http://stunnel.mirt.net/
+ 442. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 443. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 444. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
+ 445. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 446. http://www.stunnel.org/
+ 447. http://www.karlrunge.com/x11vnc/ssl.html
+ 448. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 449. http://www.karlrunge.com/x11vnc/ssl.html
+ 450. http://www.securityfocus.com/infocus/1677
+ 451. http://www.karlrunge.com/x11vnc/ssl.html
+ 452. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
+ 453. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 454. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 455. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 456. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 457. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 458. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 459. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
460. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 461. http://www.karlrunge.com/x11vnc/ssl.html
- 462. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 463. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 464. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 465. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 466. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 467. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 468. http://www.karlrunge.com/x11vnc/ssl-output.html
- 469. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 470. http://www.karlrunge.com/x11vnc/ss_vncviewer
- 471. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 461. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 462. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 463. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 464. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 465. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 466. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 467. http://www.openssl.org/
+ 468. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 469. http://www.stunnel.org/
+ 470. http://www.karlrunge.com/x11vnc/ssl.html
+ 471. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
472. http://www.karlrunge.com/x11vnc/ssl.html
- 473. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 474. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 475. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 476. http://www.karlrunge.com/x11vnc/ssl-portal.html
- 477. http://www.karlrunge.com/x11vnc/ssl.html
- 478. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
- 479. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 480. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 481. http://www.karlrunge.com/x11vnc/index.html#x11vnc_loop
- 482. http://club.mandriva.com/xwiki/bin/view/KB/XwinXset
- 483. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 484. http://www.karlrunge.com/x11vnc/index.html#dtlogin_solaris
- 485. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 486. http://www.jirka.org/gdm-documentation/x241.html
- 487. http://www.karlrunge.com/x11vnc/x11vnc_loop
- 488. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 489. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
- 490. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
- 491. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
- 492. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 493. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 494. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 495. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 496. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 497. http://www.karlrunge.com/x11vnc/index.html#stunnel-inetd
- 498. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 499. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 500. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 501. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 502. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 503. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
- 504. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 505. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 506. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 507. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 508. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 509. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 510. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 511. http://www.karlrunge.com/x11vnc/faq-linuxvc
- 512. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 513. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 514. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 473. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 474. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 475. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 476. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 477. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 478. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 479. http://www.karlrunge.com/x11vnc/ssl-output.html
+ 480. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 481. http://www.karlrunge.com/x11vnc/ss_vncviewer
+ 482. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 483. http://www.karlrunge.com/x11vnc/ssl.html
+ 484. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 485. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 486. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 487. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 488. http://www.karlrunge.com/x11vnc/ssl.html
+ 489. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 490. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 491. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 492. http://www.karlrunge.com/x11vnc/index.html#x11vnc_loop
+ 493. http://club.mandriva.com/xwiki/bin/view/KB/XwinXset
+ 494. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 495. http://www.karlrunge.com/x11vnc/index.html#dtlogin_solaris
+ 496. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 497. http://www.jirka.org/gdm-documentation/x241.html
+ 498. http://www.karlrunge.com/x11vnc/x11vnc_loop
+ 499. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 500. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
+ 501. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
+ 502. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
+ 503. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 504. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 505. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-avahi
+ 506. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-mdns
+ 507. http://www.avahi.org/
+ 508. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 509. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 510. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 511. http://www.karlrunge.com/x11vnc/index.html#stunnel-inetd
+ 512. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 513. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 514. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
515. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 516. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 517. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 518. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 519. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 520. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-vncconnect
- 521. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 522. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 523. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 524. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 525. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 526. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 527. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 528. http://www.karlrunge.com/x11vnc/Xdummy
- 529. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
- 530. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 531. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 532. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 533. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 534. http://www.karlrunge.com/x11vnc/shm_clear
- 535. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 536. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 537. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 538. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nap
- 539. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 540. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sb
- 541. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 542. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
- 543. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
- 544. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 545. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 546. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 547. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 548. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 549. http://www.tightvnc.com/
- 550. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 551. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 552. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 553. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-speeds
- 554. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 555. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
- 556. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 557. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 558. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-progressive
- 559. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 560. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
- 561. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
- 562. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
- 563. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-readtimeout
- 564. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 565. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 566. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_area
- 567. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_mem
- 568. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 569. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 570. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 571. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 572. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 573. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 574. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 575. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
- 576. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 577. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
- 578. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
- 579. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 580. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 581. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 582. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 583. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 584. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 585. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 586. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wirecopyrect
- 587. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 588. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 589. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scr_skip
- 590. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
- 591. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 592. http://www.karlrunge.com/x11vnc/index.html#beta-test
- 593. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
- 594. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#ycrop
- 595. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_no_rootpixmap
- 596. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_cr
- 597. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 598. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 599. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 600. http://www.karlrunge.com/x11vnc/index.html#the-overlay-mode
- 601. http://www.karlrunge.com/x11vnc/index.html#solaris10-build
- 602. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 603. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphacut
- 604. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphafrac
- 605. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alpharemove
- 606. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
- 607. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noalphablend
- 608. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 609. http://www.tightvnc.com/
- 610. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
- 611. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursorpos
- 612. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
- 613. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
- 614. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
- 615. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_pointer
- 616. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
- 617. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 618. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 619. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 620. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
- 621. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 622. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
- 623. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 624. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 625. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 626. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 627. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
- 628. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 629. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 630. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
- 631. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 632. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 633. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 634. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_keycodes
- 635. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 636. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 637. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 638. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 639. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 640. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
- 641. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
- 642. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 643. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 644. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 645. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
- 646. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 647. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 648. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
- 649. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 650. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
- 651. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
- 652. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
- 653. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
- 654. http://www.cus.cam.ac.uk/~ssb22/source/vnc-magnification.html
- 655. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 656. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 657. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 658. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale_cursor
- 659. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-blackout
- 660. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
- 661. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
- 662. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 663. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
- 664. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 665. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 666. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clip
- 667. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
- 668. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 669. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 670. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xrandr
- 671. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-padgeom
- 672. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 673. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
- 674. http://www.jwz.org/xscreensaver/man1.html
- 675. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
- 676. http://www.beryl-project.org/
- 677. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 678. http://www.dslinux.org/blogs/pepsiman/?p=73
- 679. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 680. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 681. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 682. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 683. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 684. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 685. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 686. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
- 687. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 688. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 689. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 690. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 691. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 692. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 693. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 694. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 695. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
- 696. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 697. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 698. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
- 699. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
- 700. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 701. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-slow_fb
- 702. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 703. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-freqtab
- 704. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 705. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 706. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 707. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 708. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 709. http://www.redstonesoftware.com/vnc.html
- 710. http://www.apple.com/remotedesktop/
- 711. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 712. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 713. http://fredrik.hubbe.net/x2vnc.html
- 714. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
- 715. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
- 716. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 717. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 718. http://sourceforge.net/projects/vnc-reflector/
- 719. http://www.tightvnc.com/projector/
- 720. http://www.ultravnc.com/addons/repeater.html
- 721. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 722. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
- 723. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noprimary
- 724. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-seldir
- 725. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
- 726. http://www.unixuser.org/~euske/vnc2swf/
- 727. http://wolphination.com/linux/2006/06/30/how-to-record-videos-of-your-desktop/
- 728. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofilexfer
- 729. http://www.samba.org/
- 730. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 731. http://www.cups.org/
- 732. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 733. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 734. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nobell
- 735. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 516. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 517. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 518. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 519. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 520. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 521. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
+ 522. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 523. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 524. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 525. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 526. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 527. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 528. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 529. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 530. http://www.karlrunge.com/x11vnc/faq-linuxvc
+ 531. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 532. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 533. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 534. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 535. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 536. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 537. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 538. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 539. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-vncconnect
+ 540. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 541. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 542. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 543. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 544. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 545. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 546. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 547. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 548. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 549. http://www.karlrunge.com/x11vnc/Xdummy
+ 550. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 551. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 552. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 553. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 554. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 555. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 556. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 557. http://www.karlrunge.com/x11vnc/shm_clear
+ 558. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 559. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 560. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 561. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nap
+ 562. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 563. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sb
+ 564. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 565. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
+ 566. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
+ 567. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 568. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 569. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 570. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 571. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 572. http://www.tightvnc.com/
+ 573. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 574. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 575. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 576. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-speeds
+ 577. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 578. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
+ 579. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 580. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 581. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-progressive
+ 582. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 583. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
+ 584. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
+ 585. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
+ 586. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-readtimeout
+ 587. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 588. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 589. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_area
+ 590. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_mem
+ 591. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 592. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 593. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 594. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 595. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 596. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 597. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 598. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
+ 599. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 600. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
+ 601. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
+ 602. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 603. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 604. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 605. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 606. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 607. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 608. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 609. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wirecopyrect
+ 610. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 611. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 612. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scr_skip
+ 613. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
+ 614. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 615. http://www.karlrunge.com/x11vnc/index.html#beta-test
+ 616. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
+ 617. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#ycrop
+ 618. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_no_rootpixmap
+ 619. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_cr
+ 620. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 621. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 622. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 623. http://www.karlrunge.com/x11vnc/index.html#the-overlay-mode
+ 624. http://www.karlrunge.com/x11vnc/index.html#solaris10-build
+ 625. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 626. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphacut
+ 627. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphafrac
+ 628. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alpharemove
+ 629. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
+ 630. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noalphablend
+ 631. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 632. http://www.tightvnc.com/
+ 633. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
+ 634. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursorpos
+ 635. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
+ 636. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
+ 637. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
+ 638. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_pointer
+ 639. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
+ 640. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 641. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 642. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 643. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
+ 644. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 645. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
+ 646. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 647. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 648. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 649. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 650. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
+ 651. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 652. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 653. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
+ 654. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 655. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 656. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 657. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_keycodes
+ 658. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 659. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 660. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 661. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 662. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 663. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
+ 664. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
+ 665. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 666. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 667. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 668. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
+ 669. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 670. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 671. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
+ 672. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 673. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
+ 674. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
+ 675. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
+ 676. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
+ 677. http://www.cus.cam.ac.uk/~ssb22/source/vnc-magnification.html
+ 678. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 679. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 680. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 681. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale_cursor
+ 682. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-blackout
+ 683. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
+ 684. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
+ 685. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 686. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
+ 687. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 688. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 689. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clip
+ 690. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
+ 691. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 692. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 693. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xrandr
+ 694. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-padgeom
+ 695. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 696. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
+ 697. http://www.jwz.org/xscreensaver/man1.html
+ 698. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
+ 699. http://www.beryl-project.org/
+ 700. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 701. http://www.dslinux.org/blogs/pepsiman/?p=73
+ 702. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 703. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 704. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 705. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 706. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 707. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 708. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 709. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
+ 710. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 711. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 712. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 713. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 714. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 715. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 716. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 717. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 718. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 719. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 720. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 721. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
+ 722. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
+ 723. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 724. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-slow_fb
+ 725. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 726. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-freqtab
+ 727. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 728. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 729. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 730. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 731. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 732. http://www.redstonesoftware.com/vnc.html
+ 733. http://www.apple.com/remotedesktop/
+ 734. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 735. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 736. http://fredrik.hubbe.net/x2vnc.html
+ 737. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
+ 738. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
+ 739. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 740. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 741. http://sourceforge.net/projects/vnc-reflector/
+ 742. http://www.tightvnc.com/projector/
+ 743. http://www.ultravnc.com/addons/repeater.html
+ 744. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 745. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
+ 746. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noprimary
+ 747. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-seldir
+ 748. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
+ 749. http://www.unixuser.org/~euske/vnc2swf/
+ 750. http://wolphination.com/linux/2006/06/30/how-to-record-videos-of-your-desktop/
+ 751. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofilexfer
+ 752. http://www.samba.org/
+ 753. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 754. http://www.cups.org/
+ 755. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 756. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 757. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nobell
+ 758. http://www.karlrunge.com/x11vnc/index.html#faq-sound
=======================================================================
http://www.karlrunge.com/x11vnc/chainingssh.html:
@@ -9891,7 +9961,7 @@ x11vnc: a VNC server for real X displays
Here are all of x11vnc command line options:
% x11vnc -opts (see below for -help long descriptions)
-x11vnc: allow VNC connections to real X11 displays. 0.8.5 lastmod: 2007-02-11
+x11vnc: allow VNC connections to real X11 displays. 0.8.5 lastmod: 2007-02-12
x11vnc options:
-display disp -auth file -N
@@ -9903,72 +9973,74 @@ x11vnc options:
-shared -once -forever
-loop -timeout n -inetd
-nofilexfer -ultrafilexfer -http
- -http_ssl -connect string -connect_or_exit str
- -vncconnect -novncconnect -allow host1[,host2..]
- -localhost -nolookup -input string
- -grabkbd -grabptr -grabalways
- -viewpasswd string -passwdfile filename -unixpw [list]
- -unixpw_nis [list] -unixpw_cmd cmd -svc
- -xdmsvc -display WAIT:... -nossl
- -ssl [pem] -ssltimeout n -sslnofail
- -ssldir [dir] -sslverify [path] -sslGenCA [dir]
- -sslGenCert type name -sslEncKey [pem] -sslCertInfo [pem]
- -sslDelCert [pem] -stunnel [pem] -stunnel3 [pem]
- -https [port] -usepw -storepasswd pass file
- -nopw -accept string -afteraccept string
- -gone string -users list -noshm
- -flipbyteorder -onetile -solid [color]
- -blackout string -xinerama -noxinerama
- -xtrap -xrandr [mode] -rotate string
- -padgeom WxH -o logfile -flag file
- -rc filename -norc -env VAR=VALUE
- -prog /path/to/x11vnc -h, -help -?, -opts
- -V, -version -license -dbg
- -q, -quiet -v, -verbose -bg
- -modtweak -nomodtweak -xkb
- -noxkb -capslock -skip_lockkeys
- -skip_keycodes string -sloppy_keys -skip_dups
- -noskip_dups -add_keysyms -noadd_keysyms
- -clear_mods -clear_keys -remap string
- -norepeat -repeat -nofb
- -nobell -nosel -noprimary
- -nosetprimary -noclipboard -nosetclipboard
- -seldir string -cursor [mode] -nocursor
- -cursor_drag -arrow n -noxfixes
- -alphacut n -alphafrac fraction -alpharemove
- -noalphablend -nocursorshape -cursorpos
- -nocursorpos -xwarppointer -noxwarppointer
- -buttonmap string -nodragging -ncache n
- -ncache_cr -ncache_no_moveraise -ncache_no_dtchange
- -ncache_no_rootpixmap -ncache_keep_anims -ncache_old_wm
- -ncache_pad n -wireframe [str] -nowireframe
- -nowireframelocal -wirecopyrect mode -nowirecopyrect
- -debug_wireframe -scrollcopyrect mode -noscrollcopyrect
- -scr_area n -scr_skip list -scr_inc list
- -scr_keys list -scr_term list -scr_keyrepeat lo-hi
- -scr_parms string -fixscreen string -debug_scroll
- -noxrecord -grab_buster -nograb_buster
- -debug_grabs -debug_sel -pointer_mode n
- -input_skip n -allinput -speeds rd,bw,lat
- -wmdt string -debug_pointer -debug_keyboard
- -defer time -wait time -wait_ui factor
- -nowait_bog -slow_fb time -readtimeout n
- -nap -nonap -sb time
- -nofbpm -fbpm -nodpms
- -dpms -forcedpms -clientdpms
- -noserverdpms -noxdamage -xd_area A
- -xd_mem f -sigpipe string -threads
- -nothreads -fs f -gaps n
- -grow n -fuzz n -debug_tiles
- -snapfb -rawfb string -freqtab file
- -pipeinput cmd -macnodim -macnosleep
- -macnosaver -macnowait -macwheel n
- -macnoswap -macnoresize -maciconanim n
- -macmenu -gui [gui-opts] -remote command
- -query variable -QD variable -sync
- -noremote -yesremote -unsafe
- -safer -privremote -nocmds
- -allowedcmds list -deny_all
+ -http_ssl -avahi -mdns
+ -connect string -connect_or_exit str -vncconnect
+ -novncconnect -allow host1[,host2..] -localhost
+ -nolookup -input string -grabkbd
+ -grabptr -grabalways -viewpasswd string
+ -passwdfile filename -unixpw [list] -unixpw_nis [list]
+ -unixpw_cmd cmd -find -create
+ -svc -xdmsvc -display WAIT:...
+ -nossl -ssl [pem] -ssltimeout n
+ -sslnofail -ssldir [dir] -sslverify [path]
+ -sslGenCA [dir] -sslGenCert type name -sslEncKey [pem]
+ -sslCertInfo [pem] -sslDelCert [pem] -stunnel [pem]
+ -stunnel3 [pem] -https [port] -usepw
+ -storepasswd pass file -nopw -accept string
+ -afteraccept string -gone string -users list
+ -noshm -flipbyteorder -onetile
+ -solid [color] -blackout string -xinerama
+ -noxinerama -xtrap -xrandr [mode]
+ -rotate string -padgeom WxH -o logfile
+ -flag file -rc filename -norc
+ -env VAR=VALUE -prog /path/to/x11vnc -h, -help
+ -?, -opts -V, -version -license
+ -dbg -q, -quiet -v, -verbose
+ -bg -modtweak -nomodtweak
+ -xkb -noxkb -capslock
+ -skip_lockkeys -skip_keycodes string -sloppy_keys
+ -skip_dups -noskip_dups -add_keysyms
+ -noadd_keysyms -clear_mods -clear_keys
+ -remap string -norepeat -repeat
+ -nofb -nobell -nosel
+ -noprimary -nosetprimary -noclipboard
+ -nosetclipboard -seldir string -cursor [mode]
+ -nocursor -cursor_drag -arrow n
+ -noxfixes -alphacut n -alphafrac fraction
+ -alpharemove -noalphablend -nocursorshape
+ -cursorpos -nocursorpos -xwarppointer
+ -noxwarppointer -buttonmap string -nodragging
+ -ncache n -ncache_cr -ncache_no_moveraise
+ -ncache_no_dtchange -ncache_no_rootpixmap -ncache_keep_anims
+ -ncache_old_wm -ncache_pad n -wireframe [str]
+ -nowireframe -nowireframelocal -wirecopyrect mode
+ -nowirecopyrect -debug_wireframe -scrollcopyrect mode
+ -noscrollcopyrect -scr_area n -scr_skip list
+ -scr_inc list -scr_keys list -scr_term list
+ -scr_keyrepeat lo-hi -scr_parms string -fixscreen string
+ -debug_scroll -noxrecord -grab_buster
+ -nograb_buster -debug_grabs -debug_sel
+ -pointer_mode n -input_skip n -allinput
+ -speeds rd,bw,lat -wmdt string -debug_pointer
+ -debug_keyboard -defer time -wait time
+ -wait_ui factor -nowait_bog -slow_fb time
+ -readtimeout n -nap -nonap
+ -sb time -nofbpm -fbpm
+ -nodpms -dpms -forcedpms
+ -clientdpms -noserverdpms -noxdamage
+ -xd_area A -xd_mem f -sigpipe string
+ -threads -nothreads -fs f
+ -gaps n -grow n -fuzz n
+ -debug_tiles -snapfb -rawfb string
+ -freqtab file -pipeinput cmd -macnodim
+ -macnosleep -macnosaver -macnowait
+ -macwheel n -macnoswap -macnoresize
+ -maciconanim n -macmenu -gui [gui-opts]
+ -remote command -query variable -QD variable
+ -sync -noremote -yesremote
+ -unsafe -safer -privremote
+ -nocmds -allowedcmds list -deny_all
+
libvncserver options:
-rfbport port TCP port for RFB protocol
@@ -10002,7 +10074,7 @@ libvncserver-tight-extension options:
% x11vnc -help
-x11vnc: allow VNC connections to real X11 displays. 0.8.5 lastmod: 2007-02-11
+x11vnc: allow VNC connections to real X11 displays. 0.8.5 lastmod: 2007-02-12
(type "x11vnc -opts" to just list the options.)
@@ -10054,8 +10126,13 @@ Options:
-display disp X11 server display to connect to, usually :0. The X
server process must be running on same machine and
support MIT-SHM. Equivalent to setting the DISPLAY
- environment variable to "disp". See the description
- below of the "-display WAIT:..." extensions.
+ environment variable to "disp".
+
+ See the description below of the "-display WAIT:..."
+ extensions, where alias "-find" will find the user's
+ display automatically, and "-create" will create a
+ Xvfb session if no session is found.
+
-auth file Set the X authority file to be "file", equivalent to
setting the XAUTHORITY environment variable to "file"
before startup. Same as -xauth file. See Xsecurity(7),
@@ -10347,6 +10424,13 @@ Options:
-stunnel the ssl classes subdirectory is sought.
-http_ssl As -http, but force lookup for ssl classes subdir.
+-avahi Use the Avahi/mDNS ZeroConf protocol to advertize
+ this VNC server to the local network. (Related terms:
+ Rendezvous, Bonjour). Depending on your setup, you
+ may need to start avahi-daemon and open udp port 5353
+ in your firewall.
+-mdns Same as -avahi.
+
-connect string For use with "vncviewer -listen" reverse connections.
If "string" has the form "host" or "host:port"
the connection is made once at startup. Use commas
@@ -10691,11 +10775,19 @@ Options:
If a list of allowed users is needed use -unixpw [list]
in addition to this option.
--svc Terminal services mode. Also "-service", implies
+-find Find the user's display using FINDDISPLAY. It is an
+ alias for "-display WAIT:cmd=FINDDISPLAY".
+
+-create First try to find the user's display using FINDDISPLAY,
+ if that doesn't work create an X session via the
+ FINDCREATEDISPLAY method. This is an alias for
+ "-display WAIT:cmd=FINDCREATEDISPLAY-Xvfb".
+
+-svc Terminal services mode. Also "-service". Alias for
-display WAIT:cmd=FINDCREATEDISPLAY-Xvfb -unixpw
-users unixpw= -ssl SAVE
--xdmsvc Terminal services mode. Also "-xdm_service", implies
+-xdmsvc Terminal services mode. Also "-xdm_service". Alias for
-display WAIT:cmd=FINDCREATEDISPLAY-Xvfb.xdmcp -unixpw
-users unixpw= -ssl SAVE
@@ -13339,6 +13431,10 @@ n
nohttp disable http client connections.
deny deny any new connections, same as "lock"
nodeny allow new connections, same as "unlock"
+ avahi enable avahi service advertizing.
+ noavahi disable avahi service advertizing.
+ mdns enable avahi service advertizing.
+ nomdns disable avahi service advertizing.
connect:host do reverse connection to host, "host"
may be a comma separated list of hosts
or host:ports. See -connect. Passwords
@@ -13638,24 +13734,24 @@ n
nooverlay_yescursor overlay_nocursor 8to24 no8to24
8to24_opts 24to32 no24to32 visual scale scale_cursor
viewonly noviewonly shared noshared forever noforever
- once timeout filexfer nofilexfer deny lock nodeny
- unlock connect allowonce allow localhost nolocalhost
- listen lookup nolookup accept afteraccept gone shm
- noshm flipbyteorder noflipbyteorder onetile noonetile
- solid_color solid nosolid blackout xinerama noxinerama
- xtrap noxtrap xrandr noxrandr xrandr_mode rotate padgeom
- quiet q noquiet modtweak nomodtweak xkb noxkb capslock
- nocapslock skip_lockkeys noskip_lockkeys skip_keycodes
- sloppy_keys nosloppy_keys skip_dups noskip_dups
- add_keysyms noadd_keysyms clear_mods noclear_mods
- clear_keys noclear_keys remap repeat norepeat fb nofb
- bell nobell sel nosel primary noprimary setprimary
- nosetprimary clipboard noclipboard setclipboard
- nosetclipboard seldir cursorshape nocursorshape
- cursorpos nocursorpos cursor_drag nocursor_drag cursor
- show_cursor noshow_cursor nocursor arrow xfixes
- noxfixes xdamage noxdamage xd_area xd_mem alphacut
- alphafrac alpharemove noalpharemove alphablend
+ once timeout filexfer nofilexfer deny lock nodeny unlock
+ avahi mdns noavahi nomdns connect allowonce allow
+ localhost nolocalhost listen lookup nolookup accept
+ afteraccept gone shm noshm flipbyteorder noflipbyteorder
+ onetile noonetile solid_color solid nosolid blackout
+ xinerama noxinerama xtrap noxtrap xrandr noxrandr
+ xrandr_mode rotate padgeom quiet q noquiet modtweak
+ nomodtweak xkb noxkb capslock nocapslock skip_lockkeys
+ noskip_lockkeys skip_keycodes sloppy_keys nosloppy_keys
+ skip_dups noskip_dups add_keysyms noadd_keysyms
+ clear_mods noclear_mods clear_keys noclear_keys remap
+ repeat norepeat fb nofb bell nobell sel nosel primary
+ noprimary setprimary nosetprimary clipboard noclipboard
+ setclipboard nosetclipboard seldir cursorshape
+ nocursorshape cursorpos nocursorpos cursor_drag
+ nocursor_drag cursor show_cursor noshow_cursor nocursor
+ arrow xfixes noxfixes xdamage noxdamage xd_area xd_mem
+ alphacut alphafrac alpharemove noalpharemove alphablend
noalphablend xwarppointer xwarp noxwarppointer
noxwarp buttonmap dragging nodragging ncache_cr
noncache_cr ncache_no_moveraise noncache_no_moveraise
diff --git a/x11vnc/avahi.c b/x11vnc/avahi.c
new file mode 100644
index 0000000..f4642c6
--- /dev/null
+++ b/x11vnc/avahi.c
@@ -0,0 +1,207 @@
+/* -- avahi.c -- */
+
+#include "x11vnc.h"
+
+void avahi_initialise(void);
+void avahi_advertise(const char *name, const char *host, const uint16_t port);
+void avahi_reset(void);
+void avahi_cleanup(void);
+
+#if !defined(LIBVNCSERVER_HAVE_AVAHI) || !defined(LIBVNCSERVER_HAVE_LIBPTHREAD)
+void avahi_initialise(void) {
+ rfbLog("avahi_initialise: no Avahi support at buildtime.\n");
+}
+void avahi_advertise(const char *name, const char *host, const uint16_t port) {
+ if (!name || !host || !port) {}
+ rfbLog("avahi_advertise: no Avahi support at buildtime.\n");
+}
+void avahi_reset(void) {
+ rfbLog("avahi_reset: no Avahi support at buildtime.\n");
+}
+void avahi_cleanup(void) {
+ rfbLog("avahi_cleanup: no Avahi support at buildtime.\n");
+}
+#else
+
+#include <avahi-common/thread-watch.h>
+#include <avahi-common/alternative.h>
+#include <avahi-client/client.h>
+#include <avahi-client/publish.h>
+
+static AvahiThreadedPoll *_poll = NULL;
+static AvahiClient *_client = NULL;
+static AvahiEntryGroup *_group = NULL;
+
+static int db = 0;
+
+void avahi_initialise(void) {
+ int ret;
+
+ if (getenv("AVAHI_DEBUG")) {
+ db = 1;
+ }
+
+if (db) fprintf(stderr, "in avahi_initialise\n");
+ if (_poll) {
+if (db) fprintf(stderr, " avahi_initialise: poll not null\n");
+ return;
+ }
+
+ if (! (_poll = avahi_threaded_poll_new()) ) {
+ rfbLog("warning: unable to open Avahi poll.\n");
+ return;
+ }
+
+ _client = avahi_client_new(avahi_threaded_poll_get(_poll),
+ 0, NULL, NULL, &ret);
+ if (! _client) {
+ rfbLog("warning: unable to open Avahi client: %s\n",
+ avahi_strerror(ret));
+
+ avahi_threaded_poll_free(_poll);
+ _poll = NULL;
+ return;
+ }
+
+ if (avahi_threaded_poll_start(_poll) < 0) {
+ rfbLog("warning: unable to start Avahi poll.\n");
+ avahi_client_free(_client);
+ _client = NULL;
+ avahi_threaded_poll_free(_poll);
+ _poll = NULL;
+ return;
+ }
+if (db) fprintf(stderr, "out avahi_initialise\n");
+}
+
+typedef struct {
+ const char *name;
+ const char *host;
+ uint16_t port;
+} avahi_service_t;
+
+static void _avahi_create_services(const char *name, const char *host,
+ const uint16_t port);
+
+static void _avahi_entry_group_callback(AvahiEntryGroup *g,
+ AvahiEntryGroupState state, void *userdata) {
+ char *new_name;
+ avahi_service_t *svc = (avahi_service_t *)userdata;
+
+if (db) fprintf(stderr, "in _avahi_entry_group_callback %d 0x%p\n", state, svc);
+ if (g != _group && _group != NULL) {
+ rfbLog("avahi_entry_group_callback fatal error (group).\n");
+ clean_up_exit(1);
+ }
+ if (userdata == NULL) {
+ rfbLog("avahi_entry_group_callback fatal error (userdata).\n");
+ clean_up_exit(1);
+ }
+
+ switch(state) {
+ case AVAHI_ENTRY_GROUP_ESTABLISHED:
+ rfbLog("Avahi group %s established.\n", svc->name);
+#if 0 /* is this the segv problem? */
+ free(svc);
+#endif
+ break;
+ case AVAHI_ENTRY_GROUP_COLLISION:
+ new_name = avahi_alternative_service_name(svc->name);
+ _avahi_create_services(new_name, svc->host, svc->port);
+ rfbLog("Avahi Entry group collision\n");
+ avahi_free(new_name);
+ break;
+ case AVAHI_ENTRY_GROUP_FAILURE:
+ rfbLog("Avahi Entry group failure: %s\n",
+ avahi_strerror(avahi_client_errno(
+ avahi_entry_group_get_client(g))));
+ break;
+ }
+if (db) fprintf(stderr, "out _avahi_entry_group_callback\n");
+}
+
+static void _avahi_create_services(const char *name, const char *host,
+ const uint16_t port) {
+ avahi_service_t *svc = (avahi_service_t *)malloc(sizeof(avahi_service_t));
+ int ret = 0;
+
+if (db) fprintf(stderr, "in _avahi_create_services %s %s %d\n", name, host, port);
+ svc->name = name;
+ svc->host = host;
+ svc->port = port;
+
+ if (!_group) {
+if (db) fprintf(stderr, " _avahi_create_services create group\n");
+ _group = avahi_entry_group_new(_client,
+ _avahi_entry_group_callback, svc);
+ }
+ if (!_group) {
+ rfbLog("avahi_entry_group_new() failed: %s\n",
+ avahi_strerror(avahi_client_errno(_client)));
+ return;
+ }
+
+ ret = avahi_entry_group_add_service(_group, AVAHI_IF_UNSPEC,
+ AVAHI_PROTO_UNSPEC, 0, name, "_rfb._tcp", NULL, NULL, port, NULL);
+ if (ret < 0) {
+ rfbLog("Failed to add _rfb._tcp service: %s\n",
+ avahi_strerror(ret));
+ return;
+ }
+
+ ret = avahi_entry_group_commit(_group);
+ if (ret < 0) {
+ rfbLog("Failed to commit entry_group:: %s\n",
+ avahi_strerror(ret));
+ return;
+ }
+if (db) fprintf(stderr, "out _avahi_create_services\n");
+}
+
+void avahi_advertise(const char *name, const char *host, const uint16_t port) {
+if (db) fprintf(stderr, "in avahi_advertise\n");
+ if (!_client) {
+if (db) fprintf(stderr, " avahi_advertise client null\n");
+ return;
+ }
+ if (_poll == NULL) {
+ rfbLog("Avahi poll not initialized.\n");
+ return;
+ }
+
+ avahi_threaded_poll_lock(_poll);
+ _avahi_create_services(name, host, port >= 5900 ? port : 5900+port);
+ avahi_threaded_poll_unlock(_poll);
+if (db) fprintf(stderr, "out avahi_advertise\n");
+}
+
+void avahi_reset(void) {
+if (db) fprintf(stderr, "in avahi_reset\n");
+ if (!_client || !_group) {
+if (db) fprintf(stderr, " avahi_reset client/group null\n");
+ return;
+ }
+ avahi_entry_group_reset(_group);
+ rfbLog("Avahi resetting group.\n");
+if (db) fprintf(stderr, "out avahi_reset\n");
+}
+
+void avahi_cleanup(void) {
+if (db) fprintf(stderr, "in avahi_cleanup\n");
+ if (!_client) {
+if (db) fprintf(stderr, " avahi_cleanup client null\n");
+ return;
+ }
+ avahi_threaded_poll_lock(_poll);
+ avahi_threaded_poll_stop(_poll);
+
+ avahi_client_free(_client);
+ _client = NULL;
+
+ avahi_threaded_poll_free(_poll);
+ _poll = NULL;
+if (db) fprintf(stderr, "out avahi_cleanup\n");
+}
+
+#endif
+
diff --git a/x11vnc/avahi.h b/x11vnc/avahi.h
new file mode 100644
index 0000000..4df7316
--- /dev/null
+++ b/x11vnc/avahi.h
@@ -0,0 +1,11 @@
+#ifndef _X11VNC_AVAHI_H
+#define _X11VNC_AVAHI_H
+
+/* -- avahi.h -- */
+
+extern void avahi_initialise(void);
+extern void avahi_advertise(const char *name, const char *host, const uint16_t port);
+extern void avahi_reset(void);
+extern void avahi_cleanup(void);
+
+#endif /* _X11VNC_AVAHI_H */
diff --git a/x11vnc/cleanup.c b/x11vnc/cleanup.c
index a81a798..3643c39 100644
--- a/x11vnc/cleanup.c
+++ b/x11vnc/cleanup.c
@@ -14,6 +14,7 @@
#include "connections.h"
#include "macosx.h"
#include "macosxCG.h"
+#include "avahi.h"
/*
* Exiting and error handling routines
@@ -129,6 +130,10 @@ void clean_up_exit (int ret) {
ssl_helper_pid(0, 0); /* killall */
}
+ if (avahi) {
+ avahi_cleanup();
+ }
+
#ifdef MACOSX
if (client_connect_file) {
if (strstr(client_connect_file, "/tmp/x11vnc-macosx-channel.")
diff --git a/x11vnc/help.c b/x11vnc/help.c
index 8d60c93..cce3e2e 100644
--- a/x11vnc/help.c
+++ b/x11vnc/help.c
@@ -70,8 +70,13 @@ void print_help(int mode) {
"-display disp X11 server display to connect to, usually :0. The X\n"
" server process must be running on same machine and\n"
" support MIT-SHM. Equivalent to setting the DISPLAY\n"
-" environment variable to \"disp\". See the description\n"
-" below of the \"-display WAIT:...\" extensions.\n"
+" environment variable to \"disp\".\n"
+"\n"
+" See the description below of the \"-display WAIT:...\"\n"
+" extensions, where alias \"-find\" will find the user's\n"
+" display automatically, and \"-create\" will create a\n"
+" Xvfb session if no session is found.\n"
+"\n"
"-auth file Set the X authority file to be \"file\", equivalent to\n"
" setting the XAUTHORITY environment variable to \"file\"\n"
" before startup. Same as -xauth file. See Xsecurity(7),\n"
@@ -365,6 +370,13 @@ void print_help(int mode) {
"-http_ssl As -http, but force lookup for ssl classes subdir.\n"
#endif
"\n"
+"-avahi Use the Avahi/mDNS ZeroConf protocol to advertize\n"
+" this VNC server to the local network. (Related terms:\n"
+" Rendezvous, Bonjour). Depending on your setup, you\n"
+" may need to start avahi-daemon and open udp port 5353\n"
+" in your firewall.\n"
+"-mdns Same as -avahi.\n"
+"\n"
"-connect string For use with \"vncviewer -listen\" reverse connections.\n"
" If \"string\" has the form \"host\" or \"host:port\"\n"
" the connection is made once at startup. Use commas\n"
@@ -711,11 +723,19 @@ void print_help(int mode) {
" in addition to this option.\n"
"\n"
#endif
-"-svc Terminal services mode. Also \"-service\", implies\n"
+"-find Find the user's display using FINDDISPLAY. It is an\n"
+" alias for \"-display WAIT:cmd=FINDDISPLAY\".\n"
+"\n"
+"-create First try to find the user's display using FINDDISPLAY,\n"
+" if that doesn't work create an X session via the\n"
+" FINDCREATEDISPLAY method. This is an alias for\n"
+" \"-display WAIT:cmd=FINDCREATEDISPLAY-Xvfb\".\n"
+"\n"
+"-svc Terminal services mode. Also \"-service\". Alias for\n"
" -display WAIT:cmd=FINDCREATEDISPLAY-Xvfb -unixpw\n"
" -users unixpw= -ssl SAVE\n"
"\n"
-"-xdmsvc Terminal services mode. Also \"-xdm_service\", implies\n"
+"-xdmsvc Terminal services mode. Also \"-xdm_service\". Alias for\n"
" -display WAIT:cmd=FINDCREATEDISPLAY-Xvfb.xdmcp -unixpw\n"
" -users unixpw= -ssl SAVE\n"
"\n"
@@ -3373,6 +3393,10 @@ void print_help(int mode) {
" nohttp disable http client connections.\n"
" deny deny any new connections, same as \"lock\"\n"
" nodeny allow new connections, same as \"unlock\"\n"
+" avahi enable avahi service advertizing.\n"
+" noavahi disable avahi service advertizing.\n"
+" mdns enable avahi service advertizing.\n"
+" nomdns disable avahi service advertizing.\n"
/* access, filename */
" connect:host do reverse connection to host, \"host\"\n"
" may be a comma separated list of hosts\n"
@@ -3676,24 +3700,24 @@ void print_help(int mode) {
" nooverlay_yescursor overlay_nocursor 8to24 no8to24\n"
" 8to24_opts 24to32 no24to32 visual scale scale_cursor\n"
" viewonly noviewonly shared noshared forever noforever\n"
-" once timeout filexfer nofilexfer deny lock nodeny\n"
-" unlock connect allowonce allow localhost nolocalhost\n"
-" listen lookup nolookup accept afteraccept gone shm\n"
-" noshm flipbyteorder noflipbyteorder onetile noonetile\n"
-" solid_color solid nosolid blackout xinerama noxinerama\n"
-" xtrap noxtrap xrandr noxrandr xrandr_mode rotate padgeom\n"
-" quiet q noquiet modtweak nomodtweak xkb noxkb capslock\n"
-" nocapslock skip_lockkeys noskip_lockkeys skip_keycodes\n"
-" sloppy_keys nosloppy_keys skip_dups noskip_dups\n"
-" add_keysyms noadd_keysyms clear_mods noclear_mods\n"
-" clear_keys noclear_keys remap repeat norepeat fb nofb\n"
-" bell nobell sel nosel primary noprimary setprimary\n"
-" nosetprimary clipboard noclipboard setclipboard\n"
-" nosetclipboard seldir cursorshape nocursorshape\n"
-" cursorpos nocursorpos cursor_drag nocursor_drag cursor\n"
-" show_cursor noshow_cursor nocursor arrow xfixes\n"
-" noxfixes xdamage noxdamage xd_area xd_mem alphacut\n"
-" alphafrac alpharemove noalpharemove alphablend\n"
+" once timeout filexfer nofilexfer deny lock nodeny unlock\n"
+" avahi mdns noavahi nomdns connect allowonce allow\n"
+" localhost nolocalhost listen lookup nolookup accept\n"
+" afteraccept gone shm noshm flipbyteorder noflipbyteorder\n"
+" onetile noonetile solid_color solid nosolid blackout\n"
+" xinerama noxinerama xtrap noxtrap xrandr noxrandr\n"
+" xrandr_mode rotate padgeom quiet q noquiet modtweak\n"
+" nomodtweak xkb noxkb capslock nocapslock skip_lockkeys\n"
+" noskip_lockkeys skip_keycodes sloppy_keys nosloppy_keys\n"
+" skip_dups noskip_dups add_keysyms noadd_keysyms\n"
+" clear_mods noclear_mods clear_keys noclear_keys remap\n"
+" repeat norepeat fb nofb bell nobell sel nosel primary\n"
+" noprimary setprimary nosetprimary clipboard noclipboard\n"
+" setclipboard nosetclipboard seldir cursorshape\n"
+" nocursorshape cursorpos nocursorpos cursor_drag\n"
+" nocursor_drag cursor show_cursor noshow_cursor nocursor\n"
+" arrow xfixes noxfixes xdamage noxdamage xd_area xd_mem\n"
+" alphacut alphafrac alpharemove noalpharemove alphablend\n"
" noalphablend xwarppointer xwarp noxwarppointer\n"
" noxwarp buttonmap dragging nodragging ncache_cr\n"
" noncache_cr ncache_no_moveraise noncache_no_moveraise\n"
diff --git a/x11vnc/options.c b/x11vnc/options.c
index 485634e..3c82c76 100644
--- a/x11vnc/options.c
+++ b/x11vnc/options.c
@@ -113,6 +113,11 @@ int xform24to32 = 0; /* -24to32 */
char *cmap8to24_str = NULL;
int launch_gui = 0; /* -gui */
+#ifndef AVAHI
+#define AVAHI 0
+#endif
+int avahi = AVAHI; /* -avahi, -mdns */
+
int use_modifier_tweak = 1; /* use the shift/altgr modifier tweak */
int watch_capslock = 0; /* -capslock */
int skip_lockkeys = 0; /* -skip_lockkeys */
diff --git a/x11vnc/options.h b/x11vnc/options.h
index e74c4a5..adba3e7 100644
--- a/x11vnc/options.h
+++ b/x11vnc/options.h
@@ -88,6 +88,8 @@ extern char *cmap8to24_str;
extern int xform24to32;
extern int launch_gui;
+extern int avahi;
+
extern int use_modifier_tweak;
extern int watch_capslock;
extern int skip_lockkeys;
diff --git a/x11vnc/remote.c b/x11vnc/remote.c
index 13d8f04..d84014f 100644
--- a/x11vnc/remote.c
+++ b/x11vnc/remote.c
@@ -26,6 +26,7 @@
#include "unixpw.h"
#include "uinput.h"
#include "userinput.h"
+#include "avahi.h"
int send_remote_cmd(char *cmd, int query, int wait);
int do_remote_query(char *remote_cmd, char *query_cmd, int remote_sync,
@@ -1309,6 +1310,29 @@ char *process_remote_cmd(char *cmd, int stringonly) {
rfbLog("remote_cmd: allowing new connections.\n");
deny_all = 0;
+ } else if (!strcmp(p, "avahi") || !strcmp(p, "mdns")) {
+ if (query) {
+ snprintf(buf, bufn, "ans=%s:%d", p, avahi);
+ goto qry;
+ }
+ rfbLog("remote_cmd: enable -avahi mDNS mode.\n");
+ if (!avahi) {
+ avahi = 1;
+ avahi_initialise();
+ avahi_advertise(vnc_desktop_name, this_host(),
+ screen->port);
+ }
+ } else if (!strcmp(p, "noavahi") || !strcmp(p, "nomdns")) {
+ if (query) {
+ snprintf(buf, bufn, "ans=%s:%d", p, !avahi);
+ goto qry;
+ }
+ rfbLog("remote_cmd: disable -avahi mDNS mode.\n");
+ if (avahi) {
+ avahi = 0;
+ avahi_reset();
+ }
+
} else if (strstr(p, "connect") == p) {
NOTAPP
COLON_CHECK("connect:")
diff --git a/x11vnc/screen.c b/x11vnc/screen.c
index 3d4ee0c..e8d6dbc 100644
--- a/x11vnc/screen.c
+++ b/x11vnc/screen.c
@@ -23,6 +23,7 @@
#include "linuxfb.h"
#include "macosx.h"
#include "macosxCG.h"
+#include "avahi.h"
#include <rfb/rfbclient.h>
@@ -2888,6 +2889,13 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
install_passwds();
}
+#define DO_AVAHI \
+ if (avahi) { \
+ avahi_initialise(); \
+ avahi_advertise(vnc_desktop_name, host, lport); \
+ usleep(1000*1000); \
+ }
+
void announce(int lport, int ssl, char *iface) {
char *host = this_host();
@@ -2911,17 +2919,20 @@ void announce(int lport, int ssl, char *iface) {
if (lport >= 5900) {
snprintf(vnc_desktop_name, sz, "%s:%d",
host, lport - 5900);
+ DO_AVAHI
fprintf(stderr, "\n%s %s\n", tvdt,
vnc_desktop_name);
} else {
snprintf(vnc_desktop_name, sz, "%s:%d",
host, lport);
+ DO_AVAHI
fprintf(stderr, "\n%s %s\n", tvdt,
vnc_desktop_name);
}
} else if (lport >= 5900) {
snprintf(vnc_desktop_name, sz, "%s:%d",
host, lport - 5900);
+ DO_AVAHI
fprintf(stderr, "\n%s %s\n", tvdt, vnc_desktop_name);
if (lport >= 6000) {
rfbLog("possible aliases: %s:%d, "
@@ -2931,6 +2942,7 @@ void announce(int lport, int ssl, char *iface) {
} else {
snprintf(vnc_desktop_name, sz, "%s:%d",
host, lport);
+ DO_AVAHI
fprintf(stderr, "\n%s %s\n", tvdt, vnc_desktop_name);
rfbLog("possible alias: %s::%d\n",
host, lport);
diff --git a/x11vnc/tkx11vnc b/x11vnc/tkx11vnc
index bd05c1b..702261c 100755
--- a/x11vnc/tkx11vnc
+++ b/x11vnc/tkx11vnc
@@ -123,6 +123,7 @@ Clients
afteraccept:
gone:
vncconnect
+ avahi
-- D
filexfer
=GAL Java-applet::
diff --git a/x11vnc/tkx11vnc.h b/x11vnc/tkx11vnc.h
index 8b84847..6b4a6c2 100644
--- a/x11vnc/tkx11vnc.h
+++ b/x11vnc/tkx11vnc.h
@@ -134,6 +134,7 @@ char gui_code[] = "";
" afteraccept:\n"
" gone:\n"
" vncconnect\n"
+" avahi\n"
" -- D\n"
" filexfer\n"
" =GAL Java-applet::\n"
diff --git a/x11vnc/user.c b/x11vnc/user.c
index 7124092..0322f85 100644
--- a/x11vnc/user.c
+++ b/x11vnc/user.c
@@ -1382,6 +1382,28 @@ int wait_for_client(int *argc, char** argv, int http) {
keep_unixpw = 1;
}
+ if (!inetd) {
+ if (!use_openssl) {
+ announce(screen->port, use_openssl, NULL);
+ fprintf(stdout, "PORT=%d\n", screen->port);
+ } else {
+ fprintf(stdout, "PORT=%d\n", screen->port);
+ if (stunnel_port) {
+ fprintf(stdout, "SSLPORT=%d\n", stunnel_port);
+ } else if (use_openssl) {
+ fprintf(stdout, "SSLPORT=%d\n", screen->port);
+ }
+ }
+ fflush(stdout);
+ } else if (!use_openssl && avahi) {
+ char *name = rfb_desktop_name;
+ if (!name) {
+ name = use_dpy;
+ }
+ avahi_initialise();
+ avahi_advertise(name, this_host(), screen->port);
+ }
+
if (inetd && use_openssl) {
accept_openssl(OPENSSL_INETD);
}
diff --git a/x11vnc/win_utils.c b/x11vnc/win_utils.c
index aea8473..b477977 100644
--- a/x11vnc/win_utils.c
+++ b/x11vnc/win_utils.c
@@ -576,4 +576,3 @@ Window descend_pointer(int depth, Window start, char *name_info, int len) {
#endif /* NO_X11 */
}
-
diff --git a/x11vnc/x11vnc.1 b/x11vnc/x11vnc.1
index 05a13a0..06818d7 100644
--- a/x11vnc/x11vnc.1
+++ b/x11vnc/x11vnc.1
@@ -2,7 +2,7 @@
.TH X11VNC "1" "February 2007" "x11vnc " "User Commands"
.SH NAME
x11vnc - allow VNC connections to real X11 displays
- version: 0.8.5, lastmod: 2007-02-11
+ version: 0.8.5, lastmod: 2007-02-12
.SH SYNOPSIS
.B x11vnc
[OPTION]...
@@ -60,8 +60,12 @@ becomes a space character).
X11 server display to connect to, usually :0. The X
server process must be running on same machine and
support MIT-SHM. Equivalent to setting the DISPLAY
-environment variable to \fIdisp\fR. See the description
-below of the "\fB-display\fR \fIWAIT:...\fR" extensions.
+environment variable to \fIdisp\fR.
+.IP
+See the description below of the "\fB-display\fR \fIWAIT:...\fR"
+extensions, where alias "\fB-find\fR" will find the user's
+display automatically, and "\fB-create\fR" will create a
+Xvfb session if no session is found.
.PP
\fB-auth\fR \fIfile\fR
.IP
@@ -432,6 +436,18 @@ to the program location and in standard locations
.IP
As \fB-http,\fR but force lookup for ssl classes subdir.
.PP
+\fB-avahi\fR
+.IP
+Use the Avahi/mDNS ZeroConf protocol to advertize
+this VNC server to the local network. (Related terms:
+Rendezvous, Bonjour). Depending on your setup, you
+may need to start avahi-daemon and open udp port 5353
+in your firewall.
+.PP
+\fB-mdns\fR
+.IP
+Same as \fB-avahi.\fR
+.PP
\fB-connect\fR \fIstring\fR
.IP
For use with "vncviewer -listen" reverse connections.
@@ -843,15 +859,27 @@ is given 3 tries to enter the correct password.
If a list of allowed users is needed use \fB-unixpw\fR [list]
in addition to this option.
.PP
+\fB-find\fR
+.IP
+Find the user's display using FINDDISPLAY. It is an
+alias for "\fB-display\fR \fIWAIT:cmd=FINDDISPLAY\fR".
+.PP
+\fB-create\fR
+.IP
+First try to find the user's display using FINDDISPLAY,
+if that doesn't work create an X session via the
+FINDCREATEDISPLAY method. This is an alias for
+"\fB-display\fR \fIWAIT:cmd=FINDCREATEDISPLAY-Xvfb\fR".
+.PP
\fB-svc\fR
.IP
-Terminal services mode. Also "\fB-service\fR", implies
+Terminal services mode. Also "\fB-service\fR". Alias for
\fB-display\fR WAIT:cmd=FINDCREATEDISPLAY-Xvfb \fB-unixpw\fR
\fB-users\fR unixpw= \fB-ssl\fR SAVE
.PP
\fB-xdmsvc\fR
.IP
-Terminal services mode. Also "\fB-xdm_service\fR", implies
+Terminal services mode. Also "\fB-xdm_service\fR". Alias for
\fB-display\fR WAIT:cmd=FINDCREATEDISPLAY-Xvfb.xdmcp \fB-unixpw\fR
\fB-users\fR unixpw= \fB-ssl\fR SAVE
.PP
@@ -3976,6 +4004,14 @@ deny deny any new connections, same as "lock"
.IP
nodeny allow new connections, same as "unlock"
.IP
+avahi enable avahi service advertizing.
+.IP
+noavahi disable avahi service advertizing.
+.IP
+mdns enable avahi service advertizing.
+.IP
+nomdns disable avahi service advertizing.
+.IP
connect:host do reverse connection to host, "host"
may be a comma separated list of hosts
or host:ports. See \fB-connect.\fR Passwords
@@ -4511,24 +4547,24 @@ overlay_yescursor nooverlay_nocursor nooverlay_cursor
nooverlay_yescursor overlay_nocursor 8to24 no8to24
8to24_opts 24to32 no24to32 visual scale scale_cursor
viewonly noviewonly shared noshared forever noforever
-once timeout filexfer nofilexfer deny lock nodeny
-unlock connect allowonce allow localhost nolocalhost
-listen lookup nolookup accept afteraccept gone shm
-noshm flipbyteorder noflipbyteorder onetile noonetile
-solid_color solid nosolid blackout xinerama noxinerama
-xtrap noxtrap xrandr noxrandr xrandr_mode rotate padgeom
-quiet q noquiet modtweak nomodtweak xkb noxkb capslock
-nocapslock skip_lockkeys noskip_lockkeys skip_keycodes
-sloppy_keys nosloppy_keys skip_dups noskip_dups
-add_keysyms noadd_keysyms clear_mods noclear_mods
-clear_keys noclear_keys remap repeat norepeat fb nofb
-bell nobell sel nosel primary noprimary setprimary
-nosetprimary clipboard noclipboard setclipboard
-nosetclipboard seldir cursorshape nocursorshape
-cursorpos nocursorpos cursor_drag nocursor_drag cursor
-show_cursor noshow_cursor nocursor arrow xfixes
-noxfixes xdamage noxdamage xd_area xd_mem alphacut
-alphafrac alpharemove noalpharemove alphablend
+once timeout filexfer nofilexfer deny lock nodeny unlock
+avahi mdns noavahi nomdns connect allowonce allow
+localhost nolocalhost listen lookup nolookup accept
+afteraccept gone shm noshm flipbyteorder noflipbyteorder
+onetile noonetile solid_color solid nosolid blackout
+xinerama noxinerama xtrap noxtrap xrandr noxrandr
+xrandr_mode rotate padgeom quiet q noquiet modtweak
+nomodtweak xkb noxkb capslock nocapslock skip_lockkeys
+noskip_lockkeys skip_keycodes sloppy_keys nosloppy_keys
+skip_dups noskip_dups add_keysyms noadd_keysyms
+clear_mods noclear_mods clear_keys noclear_keys remap
+repeat norepeat fb nofb bell nobell sel nosel primary
+noprimary setprimary nosetprimary clipboard noclipboard
+setclipboard nosetclipboard seldir cursorshape
+nocursorshape cursorpos nocursorpos cursor_drag
+nocursor_drag cursor show_cursor noshow_cursor nocursor
+arrow xfixes noxfixes xdamage noxdamage xd_area xd_mem
+alphacut alphafrac alpharemove noalpharemove alphablend
noalphablend xwarppointer xwarp noxwarppointer
noxwarp buttonmap dragging nodragging ncache_cr
noncache_cr ncache_no_moveraise noncache_no_moveraise
diff --git a/x11vnc/x11vnc.c b/x11vnc/x11vnc.c
index 17144e0..a0d221b 100644
--- a/x11vnc/x11vnc.c
+++ b/x11vnc/x11vnc.c
@@ -1657,6 +1657,10 @@ int main(int argc, char* argv[]) {
exit(0);
}
}
+ } else if (!strcmp(arg, "-find")) {
+ use_dpy = strdup("WAIT:cmd=FINDDISPLAY");
+ } else if (!strcmp(arg, "-create")) {
+ use_dpy = strdup("WAIT:cmd=FINDCREATEDISPLAY-Xvfb");
} else if (!strcmp(arg, "-auth") || !strcmp(arg, "-xauth")) {
CHECK_ARGC
auth_file = strdup(argv[++i]);
@@ -1773,6 +1777,8 @@ int main(int argc, char* argv[]) {
} else if (!strcmp(arg, "-http_ssl")) {
try_http = 1;
http_ssl = 1;
+ } else if (!strcmp(arg, "-avahi") || !strcmp(arg, "-mdns")) {
+ avahi = 1;
} else if (!strcmp(arg, "-connect") ||
!strcmp(arg, "-connect_or_exit")) {
CHECK_ARGC
diff --git a/x11vnc/x11vnc_defs.c b/x11vnc/x11vnc_defs.c
index 862dbca..82380c3 100644
--- a/x11vnc/x11vnc_defs.c
+++ b/x11vnc/x11vnc_defs.c
@@ -15,7 +15,7 @@ int xtrap_base_event_type = 0;
int xdamage_base_event_type = 0;
/* date +'lastmod: %Y-%m-%d' */
-char lastmod[] = "0.8.5 lastmod: 2007-02-11";
+char lastmod[] = "0.8.5 lastmod: 2007-02-12";
/* X display info */