summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrunge <runge>2007-01-04 01:32:50 +0000
committerrunge <runge>2007-01-04 01:32:50 +0000
commit76a495aff1a1e923363a865bd5b9a0a95332374d (patch)
tree69b70910dbd5a3b9dab3ef183ac8b91007e070cb
parentc88d830f5591913f2e5e763814978e2877f367ec (diff)
downloadlibtdevnc-76a495af.tar.gz
libtdevnc-76a495af.zip
x11vnc: more -ncache improvements.
-rw-r--r--x11vnc/ChangeLog3
-rw-r--r--x11vnc/README2552
-rw-r--r--x11vnc/userinput.c686
-rw-r--r--x11vnc/x11vnc.12
-rw-r--r--x11vnc/x11vnc.c2
-rw-r--r--x11vnc/x11vnc_defs.c2
-rw-r--r--x11vnc/xdamage.c21
7 files changed, 1776 insertions, 1492 deletions
diff --git a/x11vnc/ChangeLog b/x11vnc/ChangeLog
index f86d22c..f04114c 100644
--- a/x11vnc/ChangeLog
+++ b/x11vnc/ChangeLog
@@ -1,3 +1,6 @@
+2007-01-03 Karl Runge <runge@karlrunge.com>
+ * x11vnc: more -ncache improvements.
+
2007-01-01 Karl Runge <runge@karlrunge.com>
* x11vnc: more -ncache improvements.
diff --git a/x11vnc/README b/x11vnc/README
index 1e3e08f..4fb66ed 100644
--- a/x11vnc/README
+++ b/x11vnc/README
@@ -1,5 +1,5 @@
-x11vnc README file Date: Mon Jan 1 21:04:46 EST 2007
+x11vnc README file Date: Wed Jan 3 19:10:56 EST 2007
The following information is taken from these URLs:
@@ -44,14 +44,17 @@ x11vnc: a VNC server for real X displays
nevertheless please feel free to [17]contact me if you have problems
or questions.
- An x11vnc side-project provides an [18]Enhanced TightVNC Viewer
+ Please help [18]beta test the new performance speedup feature using
+ [19]viewer-side pixel caching. Let me know how it goes; thanks.
+
+ An x11vnc side-project provides an [20]Enhanced TightVNC Viewer
package (ssvnc) with automatic SSL and/or SSH tunnelling support, SSL
Certificate creation, NewFBSize support on Unix, and cursor
- alphablending. Please help test out some recently added features:
- automatic service tunnelling via SSH for CUPS and SMB Printing,
- ESD/ARTSD Audio, and SMB (Windows/Samba) filesystem mounting; and Port
- Knocking. This bundle could be placed on, say, a USB memory stick for
- SSL/SSH VNC viewing from nearly any networked computer.
+ alphablending. This bundle could be placed on, say, a USB memory stick
+ for SSL/SSH VNC viewing from nearly any networked computer. Please
+ help test out some recently added features: automatic service
+ tunnelling via SSH for: CUPS and SMB Printing, ESD/ARTSD Audio, and
+ SMB (Windows/Samba) filesystem mounting; and Port Knocking.
Background:
@@ -59,15 +62,15 @@ x11vnc: a VNC server for real X displays
protocol (applications running on one computer but displaying their
windows on another) in the spirit of X, however, unlike X, the
viewing-end is very simple and maintains no state. It is a remote
- framebuffer (RFB) protocol
+ framebuffer (RFB) protocol.
Some VNC links:
- * [19]http://www.realvnc.com
- * [20]http://www.tightvnc.com
- * [21]http://www.ultravnc.com/
- * [22]http://www.redstonesoftware.com/
+ * [21]http://www.realvnc.com
+ * [22]http://www.tightvnc.com
+ * [23]http://www.ultravnc.com/
+ * [24]http://www.redstonesoftware.com/
- For Unix, the traditional VNC implementation includes a virtual X11
+ For Unix, the traditional VNC implementation includes a "virtual" X11
server Xvnc (usually launched via the vncserver command) that is not
associated with a physical display, but provides a "fake" one X11
clients (xterm, mozilla, etc.) can attach to. A remote user then
@@ -75,10 +78,11 @@ x11vnc: a VNC server for real X displays
network to view and interact with the whole virtual X11 desktop.
The VNC protocol is in most cases better suited for remote connections
- with low bandwidth and high latency than is the X11 protocol (the
- exception is cached pixmap data on the viewing-end). 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.
+ with low bandwidth and high latency than is the X11 protocol because
+ it involves far fewer "roundtrips" (an exception is the [25]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.
So the standard Xvnc/vncserver program is very useful, I use it for
things like:
@@ -103,10 +107,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 ([23]see below) and have it available to run
- on far-away.east. Similarly, have a VNC viewer (e.g. vncviewer) ready
- to run on sitting-here.west. We recommend [24]TightVNC Viewers (see
- [25]also here.)
+ Step 0. Download x11vnc ([26]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
+ [27]TightVNC Viewers (see [28]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
@@ -125,11 +130,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 [26]-auth option) to
+ the XAUTHORITY environment variable (or use the [29]-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
- [27]below.
+ [30]below.
If you suspect an X11 permissions problem do this simple test: while
sitting at the physical X display open a terminal window
@@ -137,10 +142,10 @@ 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 [28]below.
+ remote shell. Then fix this with the tips [31]below.
- When x11vnc starts up there will then be much chatter printed out,
- until it finally says something like:
+ When x11vnc starts up there will then be much chatter printed out (use
+ "-q" to quiet it), until it finally says something like:
.
.
13/05/2004 14:59:54 Autoprobing selected port 5900
@@ -156,8 +161,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 [29]this FAQ. For Solaris, vncviewer
- is available in the [30]Companion CD package SFWvnc).
+ viewer for your platform or see [32]this FAQ. For Solaris, vncviewer
+ is available in the [33]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:
@@ -167,13 +172,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 [31]-forever option to have
+ shutdown automatically (or you can use the [34]-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 [32]-forever option or as a [33]service,
+ terminal window with the [35]-forever option or as a [36]service,
you'd only have to do Step 3 as you moved around. Be sure to use a VNC
- [34]Password or [35]other measures if you do that.
+ [37]Password or [38]other measures if you do that.
Desktop Sharing: The above more or less assumed nobody was sitting at
@@ -189,7 +194,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 "[36]-connect
+ start their VNC viewers. For this usage mode the "[39]-connect
host1,host2" option may be of use to automatically connect to the
vncviewers in "-listen" mode on the list of hosts.
_________________________________________________________________
@@ -221,13 +226,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 [37]VNC password is also strongly recommended.
+ machine). Use of a [40]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 [38]inetd(8)). See the 3rd
- script example [39]below for more info.
+ far-away.east or having it started by [41]inetd(8)). See the 3rd
+ script example [42]below for more info.
Note the -t we used above (force allocate pseudoterminal), it actually
seems to improve interactive typing response via VNC!
@@ -237,11 +242,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 "[40]-connect
+ up x11vnc on it (if it isn't already running). (The "[43]-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 [41]chaining ssh's
+ see [44]chaining ssh's
_________________________________________________________________
@@ -250,11 +255,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 [42]-bg (forks into background after connection to the
+ x11vnc option [45]-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 [43]Enhanced TightVNC Viewer (ssvnc)
+ You may also want to look at the [46]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")
_________________________________________________________________
@@ -286,7 +291,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 [44]-connect option:
+ using the [47]-connect option:
#!/bin/sh
# usage: x11vnc_ssh <host>:<xdisplay>
# e.g.: x11vnc_ssh snoopy.peanuts.com:0
@@ -329,7 +334,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 [45]inetd(8)), you can simply
+ connections (or have it started out of [48]inetd(8)), you can simply
use the TightVNC "vncviewer -via gateway host:port" in its default
mode to provide secure ssh tunnelling.
_________________________________________________________________
@@ -337,37 +342,37 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
VNC password file: Also note in the #1. example script that the
- [46]option "-rfbauth .vnc/passwd" provides additional protection by
+ [49]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 [47]-storepasswd
+ vncpasswd or storepasswd programs, or the x11vnc [50]-storepasswd
option can be used to create the password file. x11vnc also has the
- slightly less secure [48]-passwdfile and "-passwd XXXXX" [49]options
+ slightly less secure [51]-passwdfile and "-passwd XXXXX" [52]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 [50]-usepw if you want to be forced
+ automatically or force you to (use [53]-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, [51]-ssl mode, a VPN,
- etc. (use the [52]Enhanced TightVNC Viewer (ssvnc) GUI if you want to
+ x11vnc: it is up to you to use ssh, stunnel, [54]-ssl mode, a VPN,
+ etc. (use the [55]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 [53]options and building x11vnc with
- [54]tcp_wrappers support to limit host access.
+ the -allow and -localhost [56]options and building x11vnc with
+ [57]tcp_wrappers support to limit host access.
_________________________________________________________________
Tunnelling x11vnc via SSL:
One can also encrypt the VNC traffic using an SSL tunnel such as
- [55]stunnel (also [56]stunnel.mirt.net) or using the built-in
- (Mar/2006) [57]-ssl openssl mode. A SSL-enabled Java applet VNC Viewer
+ [58]stunnel (also [59]stunnel.mirt.net) or using the built-in
+ (Mar/2006) [60]-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 [58]this FAQ on -ssl and -stunnel modes for
+ useful alternative. See [61]this FAQ on -ssl and -stunnel modes for
details and examples.
- The [59]Enhanced TightVNC Viewer (ssvnc) bundles contain some
+ The [62]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.
@@ -375,29 +380,29 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
Downloading x11vnc:
- x11vnc is a contributed program to the [60]LibVNCServer project at
+ x11vnc is a contributed program to the [63]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 Nov 2006, the [61]x11vnc-0.8.3.tar.gz source package is
- released (recommended download). The [62]x11vnc 0.8.3 release notes.
+ link. As of Nov 2006, the [64]x11vnc-0.8.3.tar.gz source package is
+ released (recommended download). The [65]x11vnc 0.8.3 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 [63]x11vnc-0.8.4.tar.gz tarball to build the most up to
+ bleeding edge [66]x11vnc-0.8.4.tar.gz tarball to build the most up to
date one.
- Precompiled Binaries/Packages: See the [64]FAQ below for information
+ Precompiled Binaries/Packages: See the [67]FAQ below for information
about where you might obtain a precompiled x11vnc binary from 3rd
parties and some ones I create.
To obtain VNC viewers for the viewing side (Windows, Mac OS, or Unix)
try these links:
- * [65]http://www.tightvnc.com/download.html
- * [66]http://www.realvnc.com/download-free.html
- * [67]http://sourceforge.net/projects/cotvnc/
- * [68]http://www.ultravnc.com/
- * [69]Our Enhanced TightVNC Viewer (ssvnc)
+ * [68]http://www.tightvnc.com/download.html
+ * [69]http://www.realvnc.com/download-free.html
+ * [70]http://sourceforge.net/projects/cotvnc/
+ * [71]http://www.ultravnc.com/
+ * [72]Our Enhanced TightVNC Viewer (ssvnc)
More tools: Here is a rsh/ssh wrapper script rx11vnc that attempts to
@@ -408,8 +413,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:
- * [70]rx11vnc wrapper script
- * [71]rx11vnc.pl wrapper script to tunnel traffic thru ssh
+ * [73]rx11vnc wrapper script
+ * [74]rx11vnc.pl wrapper script to tunnel traffic thru ssh
_________________________________________________________________
@@ -440,8 +445,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 [72]http://www.sunfreeware.com/. Some Solaris pre-built x11vnc
- binaries are [73]here.
+ are at [75]http://www.sunfreeware.com/. Some Solaris pre-built x11vnc
+ binaries are [76]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
@@ -461,12 +466,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 [74]build scripts below
+ libvncserver's choice of AM_CFLAGS. See the [77]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 [75]Misc. Build problems here.
+ You can find information on [78]Misc. Build problems here.
_________________________________________________________________
@@ -504,9 +509,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
- [76]ftp://ftp.uu.net/graphics/jpeg/ and zlib at
- [77]http://www.gzip.org/zlib/. See also
- [78]http://www.sunfreeware.com/ for Solaris binary packages of these
+ [79]ftp://ftp.uu.net/graphics/jpeg/ and zlib at
+ [80]http://www.gzip.org/zlib/. See also
+ [81]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.
@@ -577,7 +582,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 [79]this workaround FAQ.
+ OS's, see [82]this workaround FAQ.
Building on FreeBSD, OpenBSD, ...: The jpeg libraries seem to be in
@@ -614,7 +619,7 @@ make
OpenSSL: Starting with version 0.8.3 x11vnc can now be built with
- [80]SSL support. For this to be enabled the libssl.so library needs to
+ [83]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.
@@ -629,45 +634,45 @@ make
0.8.3 released in Nov 2006!
Please help test and debug the 0.8.4 version for release sometime in
- Winter 2006.
+ Spring 2007.
The version 0.8.4 beta tarball is kept here:
- [81]x11vnc-0.8.4.tar.gz
+ [84]x11vnc-0.8.4.tar.gz
There are also some Linux, Solaris, Mac OS X, and other OS test
- binaries [82]here. Please kick the tires and report bugs, performance
- regressions, undesired behavior, etc. to [83]me.
+ binaries [85]here. Please kick the tires and report bugs, performance
+ regressions, undesired behavior, etc. to [86]me.
- To aid testing of the [84]built-in SSL support for x11vnc, a number of
+ To aid testing of the [87]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
- [85]wrapper scripts and a GUI that start STUNNEL, [86]more details
+ [88]wrapper scripts and a GUI that start STUNNEL, [89]more details
here). It should be pretty convenient for automatic SSL and SSH
connections. It is described and can be downloaded from the
- [87]Enhanced TightVNC Viewer (ssvnc) page.
+ [90]Enhanced TightVNC Viewer (ssvnc) page.
Here are some features that will appear in the 0.8.4 release:
* Native Mac OS X support.
* Wireframe copyrect detection for local user activity (e.g. someone
sitting at the physical display moving windows)
- * Option [88]-nodpms to avoid problems with programs like KDE's
+ * Option [91]-nodpms to avoid problems with programs like KDE's
kdesktop_lock that keep restarting the screen saver every few
seconds.
* A new login mode: "-display wait:cmd=FINDCREATEDISPLAY -unixpw
..." that will Create a new X session (either virtual or real) for
the user if it cannot find the user's X session display.
* To automatically fix the common mouse motion problem on XINERAMA
- (multi-headed) displays, the [89]-xwarppointer option is enabled
+ (multi-headed) displays, the [92]-xwarppointer option is enabled
by default when XINERAMA is active.
- * Viewer-side pixmap caching. This one might not make it into 0.8.4
- but will benefit from much testing, thanks. A large area of pixels
- (at least twice as big as the framebuffer itself) is placed below
- the framebuffer to act as a buffer/cache area for pixel data. The
- VNC CopyRect encoding is used to move it around (so any viewer
- should 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!). Test it with something like "-ncache 10".
+ * [93]Viewer-side pixmap caching. This one might not make it into
+ 0.8.4 but will benefit from much testing, thanks. A large area of
+ pixels (at least twice as big as the framebuffer itself) is placed
+ below the framebuffer to act as a buffer/cache area for pixel
+ data. The VNC CopyRect encoding is used to move it around (so any
+ viewer should 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!). Test it with something like "-ncache 10".
If you have a Mac please try out the native Mac OS X support (build
with "./configure --without-x", or download a binary mentioned above),
@@ -676,61 +681,61 @@ make
Here are some features that appeared in the 0.8.3 release:
- * The [90]-ssl option provides SSL encryption and authentication
- natively via the [91]www.openssl.org library. One can use from a
+ * The [94]-ssl option provides SSL encryption and authentication
+ natively via the [95]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 [92]-stunnel option starts up a SSL tunnel
+ * Similar to -ssl, the [96]-stunnel option starts up a SSL tunnel
server stunnel (that must be installed separately on the system:
- [93]www.stunnel.org [94]stunnel.mirt.net ) to allow only encrypted
+ [97]www.stunnel.org [98]stunnel.mirt.net ) to allow only encrypted
SSL connections from the network.
- * The [95]-sslverify option allows for authenticating VNC clients
+ * The [99]-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
- [96]-sslGenCert, [97]-sslGenCA, and [98]related options.
+ [100]-sslGenCert, [101]-sslGenCA, and [102]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 [99]-https port option). A wrapper shell script
- [100]ss_vncviewer is also provided that sets up a stunnel
- client-side tunnel on Unix systems. See [101]Enhanced TightVNC
+ separate [103]-https port option). A wrapper shell script
+ [104]ss_vncviewer is also provided that sets up a stunnel
+ client-side tunnel on Unix systems. See [105]Enhanced TightVNC
Viewer (ssvnc) for other SSL/SSH viewer possibilities.
- * The [102]-unixpw option supports Unix username and password
- authentication (a simpler variant is the [103]-unixpw_nis option
+ * The [106]-unixpw option supports Unix username and password
+ authentication (a simpler variant is the [107]-unixpw_nis option
that works in environments where the encrypted passwords are
- readable, e.g. NIS). The [104]-ssl or [105]-localhost +
- [106]-stunnel options are enforced in this mode to prevent
+ readable, e.g. NIS). The [108]-ssl or [109]-localhost +
+ [110]-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 [107]-unixpw with "[108]-display WAIT:cmd=FINDDISPLAY" or
+ * Coupling [111]-unixpw with "[112]-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 [109]automatically.
- * Hooks are provided in the [110]-unixpw_cmd and "[111]-passwdfile
+ connected to [113]automatically.
+ * Hooks are provided in the [114]-unixpw_cmd and "[115]-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 [112]-rawfb only operation (e.g.
+ "./configure --without-x" for [116]-rawfb only operation (e.g.
embedded linux console devices).
- * The [113]-rotate option enables you to rotate or reflect the
+ * The [117]-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 "[114]-ultrafilexfer" alias is provided and improved UltraVNC
+ * The "[118]-ultrafilexfer" alias is provided and improved UltraVNC
filetransfer rates have been achieved.
- * Under the "[115]-connect_or_exit host" option x11vnc will exit
+ * Under the "[119]-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 "[116]-rawfb rand" and "-rawfb none" options are useful for
+ * The "[120]-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 "[117]-verbose"
+ * Reduced spewing of information at startup, use "[121]-verbose"
(also "-v") to turn it back on for debugging or if you are going
to send me a problem report.
- Here are some [118]Previous Release Notes
+ Here are some [122]Previous Release Notes
_________________________________________________________________
Some Notes:
@@ -757,11 +762,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 [119]-solid [color] option that
+ Update: As of Feb/2005 x11vnc has the [123]-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 [120]TightVNC encoding gives the best response for my
+ I also find the [124]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.
@@ -773,16 +778,16 @@ 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 "[121]-rfbport NNNN"
+ far-away.east:1. You can force the port with the "[125]-rfbport NNNN"
option where NNNN is the desired port number. If that port is already
taken, x11vnc will exit immediately. (also see the "SunRay Gotcha"
note below)
Options: x11vnc has (far too) many features that may be activated
- via its [122]command line options. Useful options are, e.g., -scale to
+ via its [126]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
- [123]-storepasswd option can be used to create the password file).
+ [127]-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
@@ -809,7 +814,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 [124]even more
+ window manager decorations. There will be an [128]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
@@ -819,8 +824,8 @@ make
Sun Ray Notes:
- You can run x11vnc on your (connected or disconnected) [125]SunRay
- session. Here are some [126]notes on SunRay usage with x11vnc.
+ You can run x11vnc on your (connected or disconnected) [129]SunRay
+ session. Here are some [130]notes on SunRay usage with x11vnc.
_________________________________________________________________
@@ -832,7 +837,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
- [127]-scrollcopyrect and [128]-wireframe speedups using the
+ [131]-scrollcopyrect and [132]-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
@@ -879,14 +884,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
- [129]this FAQ for details.
+ [133]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" [130]options, however, for a partial hack
+ X" and "-cursor some" [134]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 [131]-overlay option is also supplied. A similar thing is done
+ the [135]-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
@@ -894,18 +899,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 [132]the FAQ on this below.) The
+ redirectors do exist, e.g. esd [136]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 [133]-scrollcopyrect option
+ * The scroll detection algorithm for the [137]-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 [134]contact me if you have any questions,
+ Please feel free to [138]contact me if you have any questions,
problems, or comments about x11vnc, etc.
- Also, some people ask if they can make a donation, see [135]this link
+ Also, some people ask if they can make a donation, see [139]this link
for that.
_________________________________________________________________
@@ -914,349 +919,349 @@ make
[Building and Starting]
- [136]Q-1: I can't get x11vnc to start up. It says "XOpenDisplay failed
+ [140]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?
- [137]Q-2: I can't get x11vnc and/or libvncserver to compile.
+ [141]Q-2: I can't get x11vnc and/or libvncserver to compile.
- [138]Q-3: I just built x11vnc successfully, but when I use it my
+ [142]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).
- [139]Q-4: Help, I need to run x11vnc on Solaris 2.5.1 (or other old
+ [143]Q-4: Help, I need to run x11vnc on Solaris 2.5.1 (or other old
Unix/Linux) and it doesn't compile!
- [140]Q-5: Where can I get a precompiled x11vnc binary for my Operating
+ [144]Q-5: Where can I get a precompiled x11vnc binary for my Operating
System?
- [141]Q-6: Where can I get a VNC Viewer binary (or source code) for the
+ [145]Q-6: Where can I get a VNC Viewer binary (or source code) for the
Operating System I will be viewing from?
- [142]Q-7: How can I see all of x11vnc's command line options and
+ [146]Q-7: How can I see all of x11vnc's command line options and
documentation on how to use them?
- [143]Q-8: I don't like typing arcane command line options every time I
+ [147]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?
- [144]Q-9: How can I get the GUI to run in the System Tray, or at least
+ [148]Q-9: How can I get the GUI to run in the System Tray, or at least
be a smaller, simpler icon?
- [145]Q-10: How can I get x11vnc to listen on a different port besides
+ [149]Q-10: How can I get x11vnc to listen on a different port besides
the default VNC port (5900)?
- [146]Q-11: Can I make x11vnc more quiet and also go into the
+ [150]Q-11: Can I make x11vnc more quiet and also go into the
background after starting up?
- [147]Q-12: Sometimes when a VNC viewer dies abruptly, x11vnc also dies
+ [151]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.
- [148]Q-13: Are there any build-time customizations possible, e.g.
+ [152]Q-13: Are there any build-time customizations possible, e.g.
change defaults, create a smaller binary, etc?
[Win2VNC Related]
- [149]Q-14: I have two separate machine displays in front of me, one
+ [153]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?
- [150]Q-15: I am running Win2VNC on my Windows machine and "x11vnc
+ [154]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
- [151]Q-16: Can I run "x11vnc -nofb" on a Mac OS X machine to redirect
+ [155]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]
- [152]Q-17: The X display I run x11vnc on is only 8 bits per pixel
+ [156]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.
- [153]Q-18: Color problems: Why are the colors for some windows
+ [157]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.
- [154]Q-19: How do I figure out the window id to supply to the -id
+ [158]Q-19: How do I figure out the window id to supply to the -id
windowid option?
- [155]Q-20: Why don't menus or other transient windows come up when I
+ [159]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?
- [156]Q-21: My X display is depth 24 at 24bpp (instead of the normal
+ [160]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]
- [157]Q-22: Can I use x11vnc to view and interact with an Xterminal
+ [161]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?
- [158]Q-23: How do I get my X permissions (MIT-MAGIC-COOKIE file)
+ [162]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]
- [159]Q-24: I'm having trouble using x11vnc with my Sun Ray session.
+ [163]Q-24: I'm having trouble using x11vnc with my Sun Ray session.
[Remote Control]
- [160]Q-25: How do I stop x11vnc once it is running in the background?
+ [164]Q-25: How do I stop x11vnc once it is running in the background?
- [161]Q-26: Can I change settings in x11vnc without having to restart
+ [165]Q-26: Can I change settings in x11vnc without having to restart
it? Can I remote control it?
[Security and Permissions]
- [162]Q-27: How do I create a VNC password for use with x11vnc?
+ [166]Q-27: How do I create a VNC password for use with x11vnc?
- [163]Q-28: Can I make it so -storepasswd doesn't show my password on
+ [167]Q-28: Can I make it so -storepasswd doesn't show my password on
the screen?
- [164]Q-29: Can I have two passwords for VNC viewers, one for full
+ [168]Q-29: Can I have two passwords for VNC viewers, one for full
access and the other for view-only access to the display?
- [165]Q-30: Can I have as many full-access and view-only passwords as I
+ [169]Q-30: Can I have as many full-access and view-only passwords as I
like?
- [166]Q-31: Does x11vnc support Unix usernames and passwords? Can I
+ [170]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?
- [167]Q-32: Can I supply an external program to provide my own custom
+ [171]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)?
- [168]Q-33: Why does x11vnc exit as soon as the VNC viewer disconnects?
+ [172]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?
- [169]Q-34: Can I limit which machines incoming VNC clients can connect
+ [173]Q-34: Can I limit which machines incoming VNC clients can connect
from?
- [170]Q-35: How do I build x11vnc/libvncserver with libwrap
+ [174]Q-35: How do I build x11vnc/libvncserver with libwrap
(tcp_wrappers) support?
- [171]Q-36: Can I have x11vnc only listen on one network interface
+ [175]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?
- [172]Q-37: Now that -localhost implies listening only on the loopback
+ [176]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?
- [173]Q-38: Can I fine tune what types of user input are allowed? E.g.
+ [177]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?
- [174]Q-39: Can I prompt the user at the local X display whether the
+ [178]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?
- [175]Q-40: I start x11vnc as root because it is launched via inetd(8)
+ [179]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?
- [176]Q-41: I use a screen-lock when I leave my workstation (e.g.
+ [180]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?
- [177]Q-42: Can I have x11vnc automatically lock the screen when I
+ [181]Q-42: Can I have x11vnc automatically lock the screen when I
disconnect the VNC viewer?
[Encrypted Connections]
- [178]Q-43: How can I tunnel my connection to x11vnc via an encrypted
+ [182]Q-43: How can I tunnel my connection to x11vnc via an encrypted
SSH channel between two Unix machines?
- [179]Q-44: How can I tunnel my connection to x11vnc via an encrypted
+ [183]Q-44: How can I tunnel my connection to x11vnc via an encrypted
SSH channel from Windows using an SSH client like Putty?
- [180]Q-45: How can I tunnel my connection to x11vnc via an encrypted
+ [184]Q-45: How can I tunnel my connection to x11vnc via an encrypted
SSL channel using an external tool like stunnel?
- [181]Q-46: Does x11vnc have built-in SSL tunneling?
+ [185]Q-46: Does x11vnc have built-in SSL tunneling?
- [182]Q-47: How do I use VNC Viewers with built-in SSL tunneling?
+ [186]Q-47: How do I use VNC Viewers with built-in SSL tunneling?
- [183]Q-48: How do I use VNC Viewers with built-in SSL tunneling when
+ [187]Q-48: How do I use VNC Viewers with built-in SSL tunneling when
going through a Web Proxy?
- [184]Q-49: Can Apache web server act as a gateway for users to connect
+ [188]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?
- [185]Q-50: Can I create and use my own SSL Certificate Authority (CA)
+ [189]Q-50: Can I create and use my own SSL Certificate Authority (CA)
with x11vnc?
[Display Managers and Services]
- [186]Q-51: How can I run x11vnc as a "service" that is always
+ [190]Q-51: How can I run x11vnc as a "service" that is always
available?
- [187]Q-52: How can I use x11vnc to connect to an X login screen like
+ [191]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).
- [188]Q-53: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
+ [192]Q-53: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
- [189]Q-54: Can I have x11vnc allow a user to log in with her UNIX
+ [193]Q-54: Can I have x11vnc allow a user to log in with her UNIX
password and then have it find her X display on that machine and then
connect to it?
- [190]Q-55: Can I have x11vnc restart itself after it terminates?
+ [194]Q-55: Can I have x11vnc restart itself after it terminates?
- [191]Q-56: How do I make x11vnc work with the Java VNC viewer applet
+ [195]Q-56: How do I make x11vnc work with the Java VNC viewer applet
in a web browser?
- [192]Q-57: Are reverse connections (i.e. the VNC server connecting to
+ [196]Q-57: Are reverse connections (i.e. the VNC server connecting to
the VNC viewer) using "vncviewer -listen" and vncconnect(1) supported?
- [193]Q-58: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a
+ [197]Q-58: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a
real display, but for a virtual one I keep around).
- [194]Q-59: How can I use x11vnc on "headless" machines? Why might I
+ [198]Q-59: How can I use x11vnc on "headless" machines? Why might I
want to?
[Resource Usage and Performance]
- [195]Q-60: I have lots of memory, but why does x11vnc fail with
+ [199]Q-60: 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)?
- [196]Q-61: How can I make x11vnc use less system resources?
+ [200]Q-61: How can I make x11vnc use less system resources?
- [197]Q-62: How can I make x11vnc use MORE system resources?
+ [201]Q-62: How can I make x11vnc use MORE system resources?
- [198]Q-63: I use x11vnc over a slow link with high latency (e.g.
+ [202]Q-63: I use x11vnc over a slow link with high latency (e.g.
dialup modem), is there anything I can do to speed things up?
- [199]Q-64: Does x11vnc support the X DAMAGE Xserver extension to find
+ [203]Q-64: Does x11vnc support the X DAMAGE Xserver extension to find
modified regions of the screen quickly and efficiently?
- [200]Q-65: My OpenGL application shows no screen updates unless I
+ [204]Q-65: My OpenGL application shows no screen updates unless I
supply the -noxdamage option to x11vnc.
- [201]Q-66: When I drag windows around with the mouse or scroll up and
+ [205]Q-66: 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?
- [202]Q-67: Why not do something like wireframe animations to avoid the
+ [206]Q-67: Why not do something like wireframe animations to avoid the
windows "lurching" when being moved or resized?
- [203]Q-68: Can x11vnc try to apply heuristics to detect when a window
+ [207]Q-68: Can x11vnc try to apply heuristics to detect when a window
is scrolling its contents and use the CopyRect encoding for a speedup?
- [204]Q-69: Can x11vnc do client-side caching of pixel data? I.e. so
+ [208]Q-69: 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]
- [205]Q-70: Why isn't the mouse cursor shape (the little icon shape
+ [209]Q-70: Why isn't the mouse cursor shape (the little icon shape
where the mouse pointer is) correct as I move from window to window?
- [206]Q-71: When using XFIXES cursorshape mode, some of the cursors
+ [210]Q-71: 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?
- [207]Q-72: In XFIXES mode, are there any hacks to handle cursor
+ [211]Q-72: In XFIXES mode, are there any hacks to handle cursor
transparency ("alpha channel") exactly?
[Mouse Pointer]
- [208]Q-73: Why does the mouse arrow just stay in one corner in my
+ [212]Q-73: Why does the mouse arrow just stay in one corner in my
vncviewer, whereas my cursor (that does move) is just a dot?
- [209]Q-74: Can I take advantage of the TightVNC extension to the VNC
+ [213]Q-74: 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)?
- [210]Q-75: Is it possible to swap the mouse buttons (e.g. left-handed
+ [214]Q-75: 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]
- [211]Q-76: How can I get my AltGr and Shift modifiers to work between
+ [215]Q-76: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages?
- [212]Q-77: When I try to type a "<" (i.e. less than) instead I get ">"
+ [216]Q-77: When I try to type a "<" (i.e. less than) instead I get ">"
(i.e. greater than)! Strangely, typing ">" works OK!!
- [213]Q-78: When I try to type a "<" (i.e. less than) instead I get
+ [217]Q-78: When I try to type a "<" (i.e. less than) instead I get
"<," (i.e. an extra comma).
- [214]Q-79: I'm using an "international" keyboard (e.g. German "de", or
+ [218]Q-79: 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?
- [215]Q-80: When typing I sometimes get double, triple, or more of my
+ [219]Q-80: 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?
- [216]Q-81: The x11vnc -norepeat mode is in effect, but I still get
+ [220]Q-81: The x11vnc -norepeat mode is in effect, but I still get
repeated keystrokes!!
- [217]Q-82: The machine where I run x11vnc has an AltGr key, but the
+ [221]Q-82: 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?
- [218]Q-83: I have a Sun machine I run x11vnc on. Its Sun keyboard has
+ [222]Q-83: 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)
- [219]Q-84: Can I map a keystroke to a mouse button click on the remote
+ [223]Q-84: Can I map a keystroke to a mouse button click on the remote
machine?
- [220]Q-85: How can I get Caps_Lock to work between my VNC viewer and
+ [224]Q-85: How can I get Caps_Lock to work between my VNC viewer and
x11vnc?
[Screen Related Issues and Features]
- [221]Q-86: The remote display is larger (in number of pixels) than the
+ [225]Q-86: 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?
- [222]Q-87: Does x11vnc support server-side framebuffer scaling? (E.g.
+ [226]Q-87: Does x11vnc support server-side framebuffer scaling? (E.g.
to make the desktop smaller).
- [223]Q-88: Does x11vnc work with Xinerama? (i.e. multiple monitors
+ [227]Q-88: Does x11vnc work with Xinerama? (i.e. multiple monitors
joined together to form one big, single screen).
- [224]Q-89: Can I use x11vnc on a multi-headed display that is not
+ [228]Q-89: Can I use x11vnc on a multi-headed display that is not
Xinerama (i.e. separate screens :0.0, :0.1, ... for each monitor)?
- [225]Q-90: Can x11vnc show only a portion of the display? (E.g. for a
+ [229]Q-90: Can x11vnc show only a portion of the display? (E.g. for a
special purpose rfb application).
- [226]Q-91: Does x11vnc support the XRANDR (X Resize, Rotate and
+ [230]Q-91: Does x11vnc support the XRANDR (X Resize, Rotate and
Reflection) extension? Whenever I rotate or resize the screen x11vnc
just seems to crash.
- [227]Q-92: Independent of any XRANDR, can I have x11vnc rotate and/or
+ [231]Q-92: 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).
- [228]Q-93: Why is the view in my VNC viewer completely black? Or why
+ [232]Q-93: Why is the view in my VNC viewer completely black? Or why
is everything flashing around randomly?
- [229]Q-94: I use Linux Virtual Consoles (VC's) to implement 'Fast User
+ [233]Q-94: 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
@@ -1264,60 +1269,60 @@ make
otherwise all messed up unless the X session x11vnc is attached to is
in the active VC?
- [230]Q-95: I am using x11vnc where my local machine has "popup/hidden
+ [234]Q-95: 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?
- [231]Q-96: Help! x11vnc and my KDE screensaver keep switching each
+ [235]Q-96: Help! x11vnc and my KDE screensaver keep switching each
other on and off every few seconds.
- [232]Q-97: Can I use x11vnc to view my VMWare session remotely?
+ [236]Q-97: Can I use x11vnc to view my VMWare session remotely?
[Exporting non-X11 devices via VNC]
- [233]Q-98: Can non-X devices (e.g. a raw framebuffer) be viewed (and
+ [237]Q-98: Can non-X devices (e.g. a raw framebuffer) be viewed (and
even controlled) via VNC with x11vnc?
- [234]Q-99: Can I export via VNC a Webcam or TV tuner framebuffer using
+ [238]Q-99: Can I export via VNC a Webcam or TV tuner framebuffer using
x11vnc?
- [235]Q-100: Can I connect via VNC to a Qt-embedded/Qtopia application
+ [239]Q-100: 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)?
- [236]Q-101: Now that non-X11 devices can be exported via VNC using
+ [240]Q-101: 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?
- [237]Q-102: Does x11vnc support Mac OS X Aqua/Quartz displays natively
+ [241]Q-102: Does x11vnc support Mac OS X Aqua/Quartz displays natively
(i.e. no X11 involved)?
[Misc: Clipboard, File Transfer/Sharing, Printing, Sound, Beeps,
Thanks, etc.]
- [238]Q-103: Does the Clipboard/Selection get transferred between the
+ [242]Q-103: Does the Clipboard/Selection get transferred between the
vncviewer and the X display?
- [239]Q-104: Can I use x11vnc to record a Shock Wave Flash (or other
+ [243]Q-104: 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?
- [240]Q-105: Can I transfer files back and forth with x11vnc?
+ [244]Q-105: Can I transfer files back and forth with x11vnc?
- [241]Q-106: Can I (temporarily) mount my local (viewer-side)
+ [245]Q-106: Can I (temporarily) mount my local (viewer-side)
Windows/Samba File share on the machine where x11vnc is running?
- [242]Q-107: Can I redirect CUPS print jobs from the remote desktop
+ [246]Q-107: Can I redirect CUPS print jobs from the remote desktop
where x11vnc is running to a printer on my local (viewer-side)
machine?
- [243]Q-108: How can I hear the sound (audio) from the remote
+ [247]Q-108: How can I hear the sound (audio) from the remote
applications on the desktop I am viewing via x11vnc?
- [244]Q-109: Why don't I hear the "Beeps" in my X session (e.g. when
+ [248]Q-109: Why don't I hear the "Beeps" in my X session (e.g. when
typing tput bel in an xterm)?
- [245]Q-110: Thanks for your program and for your help! Can I make a
+ [249]Q-110: Thanks for your program and for your help! Can I make a
donation?
_________________________________________________________________
@@ -1330,7 +1335,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 [246]-display
+ on). Set your DISPLAY environment variable or use the [250]-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).
@@ -1347,9 +1352,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 [247]this Howto for much info on X11 permissions. For example, you
+ or [251]this Howto for much info on X11 permissions. For example, you
may need to set your XAUTHORITY environment variable or use the
- [248]-auth option to point to the correct MIT-MAGIC-COOKIE file (e.g.
+ [252]-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
@@ -1371,7 +1376,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 [249]this faq for other display manager
+ read the gdm cookie file, see [253]this faq for other display manager
cookie file names). While running x11vnc as root, remember it comes
with no warranty ;-).
@@ -1381,7 +1386,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 [250]-users option).
+ (please read the documentation on the [254]-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
@@ -1559,7 +1564,7 @@ h
earlier and perhaps non-Solaris):
First use the environment settings (CPPFLAGS, LDFLAGS, etc.) in the
- above [251]Solaris build script to run the configure command. That
+ above [255]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
@@ -1585,7 +1590,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
- [252]SunOS 4.x
+ [256]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
@@ -1595,28 +1600,28 @@ typedef unsigned int in_addr_t;
Q-5: Where can I get a precompiled x11vnc binary for my Operating
System?
- Hopefully the [253]build steps above and [254]FAQ provide enough info
+ Hopefully the [257]build steps above and [258]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) [255]http://packages.debian.org/x11vnc
-
- Slackware: (.tgz) [256]http://www.linuxpackages.net/ Redhat/Fedora:
- (.rpm) [257]http://dag.wieers.com/packages/x11vnc/
- [258]http://dries.ulyssis.org/rpm/packages/x11vnc SuSE: (.rpm)
- [259]http://linux01.gwdg.de/~pbleser/ Solaris: (pkg)
- [260]http://www.sunfreeware.com/ FreeBSD: (.tbz)
- [261]http://www.freebsd.org/ [262]http://www.freshports.org/net/x11vnc
- OpenBSD: (.tgz) [263]http://www.openbsd.org/ NetBSD: (src)
- [264]http://pkgsrc.se/x11/x11vnc Nokia 770 (.deb)
- [265]http://mike.saunby.net/770/x11vnc/ Sharp Zaurus
- [266]http://www.pdaxrom.org/ and [267]http://www.focv.com/
+ Debian: (.deb) [259]http://packages.debian.org/x11vnc
+
+ Slackware: (.tgz) [260]http://www.linuxpackages.net/ Redhat/Fedora:
+ (.rpm) [261]http://dag.wieers.com/packages/x11vnc/
+ [262]http://dries.ulyssis.org/rpm/packages/x11vnc SuSE: (.rpm)
+ [263]http://linux01.gwdg.de/~pbleser/ Solaris: (pkg)
+ [264]http://www.sunfreeware.com/ FreeBSD: (.tbz)
+ [265]http://www.freebsd.org/ [266]http://www.freshports.org/net/x11vnc
+ OpenBSD: (.tgz) [267]http://www.openbsd.org/ NetBSD: (src)
+ [268]http://pkgsrc.se/x11/x11vnc Nokia 770 (.deb)
+ [269]http://mike.saunby.googlepages.com/x11vncfornokia7702 Sharp
+ Zaurus [270]http://www.pdaxrom.org/ and [271]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 [268]my collection of
+ (and all else fails!) you can try one of [272]my collection of
binaries for various OS's and x11vnc releases.
As a general note, the x11vnc program is simple enough you don't
@@ -1634,7 +1639,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 [269]-httpdir option. E.g.:
+ tarball and point x11vnc to it via the [273]-httpdir option. E.g.:
x11vnc -httpdir /path/to/x11vnc-0.8.3/classes/ssl ...
@@ -1643,11 +1648,11 @@ typedef unsigned int in_addr_t;
To obtain VNC viewers for the viewing side (Windows, Mac OS, or Unix)
try here:
- * [270]http://www.tightvnc.com/download.html
- * [271]http://www.realvnc.com/download-free.html
- * [272]http://sourceforge.net/projects/cotvnc/
- * [273]http://www.ultravnc.com/
- * [274]Our Enhanced TightVNC Viewer (ssvnc)
+ * [274]http://www.tightvnc.com/download.html
+ * [275]http://www.realvnc.com/download-free.html
+ * [276]http://sourceforge.net/projects/cotvnc/
+ * [277]http://www.ultravnc.com/
+ * [278]Our Enhanced TightVNC Viewer (ssvnc)
Q-7: How can I see all of x11vnc's command line options and
@@ -1655,7 +1660,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
- [275]here as well. Yes, x11vnc does have a lot of options, doesn't
+ [279]here as well. Yes, x11vnc does have a lot of options, doesn't
it...
@@ -1687,10 +1692,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 [276]-gui option for more info. Examples: "x11vnc
+ for testing. See the [280]-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 "[277]-gui tray" system tray mode.
+ also a "[281]-gui tray" system tray mode.
Q-9: How can I get the GUI to run in the System Tray, or at least be a
@@ -1729,11 +1734,11 @@ display :0
Q-11: Can I make x11vnc more quiet and also go into the background
after starting up?
- Use the [278]-q and [279]-bg options, respectively. (also: -quiet is
+ Use the [282]-q and [283]-bg options, respectively. (also: -quiet is
an alias for -q)
Note that under -bg the stderr messages will be lost unless you use
- the "[280]-o logfile" option.
+ the "[284]-o logfile" option.
Q-12: Sometimes when a VNC viewer dies abruptly, x11vnc also dies with
@@ -1754,7 +1759,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 [281]build notes for general background).
+ (see the [285]build notes for general background).
/*
* Mar/2006
* Build-time customization via CPPFLAGS.
@@ -1825,21 +1830,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 "[282]-nofb" option
+ Yes, for best response start up x11vnc with the "[286]-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 [283]x2vnc, however you would
+ This will also work X11 to X11 using [287]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:
- * [284]Original Win2VNC
- * [285]Enhanced Win2VNC and [286]sourceforge link
- * [287]x2vnc
- * [288]x2x also [289]here
- * [290]zvnc (MorphOS)
+ * [288]Original Win2VNC
+ * [289]Enhanced Win2VNC and [290]sourceforge link
+ * [291]x2vnc
+ * [292]x2x also [293]here
+ * [294]zvnc (MorphOS)
All of them will work with x11vnc (except x2x where it is not needed).
@@ -1859,7 +1864,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 [291]-visual option to allow you to force the framebuffer
+ has the [295]-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:
@@ -1873,7 +1878,7 @@ display :0
and keyboard input to it from Windows and X11 machines via Win2VNC and
x2vnc, respectively?
- Yes, as of Nov/2006 [292]you can. There may be a trick or two you'll
+ Yes, as of Nov/2006 [296]you can. There may be a trick or two you'll
need to do to get the Clipboard exchange between the machines to work.
@@ -1884,7 +1889,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 [293]-flashcmap option to have x11vnc watch for changes in the
+ Use the [297]-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
@@ -1893,13 +1898,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 [294]-8to24 (Jan/2006) can often remove the need
+ Also note the option [298]-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 [295]-notruecolor option has corrected colors
+ In some rare cases the [299]-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.
@@ -1910,13 +1915,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 [296]previous question regarding 8 bpp
+ You may want to review the [300]previous question regarding 8 bpp
PseudoColor.
- On some hardware (Sun/SPARC and SGI), the [297]-overlay option
+ On some hardware (Sun/SPARC and SGI), the [301]-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
- [298]-8to24 option may help (also discussed below).
+ [302]-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
@@ -1952,7 +1957,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 [299]-overlay x11vnc option (Aug/2004) to have x11vnc use the
+ use the [303]-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
@@ -1977,7 +1982,7 @@ TrueColor defdepth 24
Xsun, e.g. in your /etc/dt/config/Xservers file).
- The -8to24 mode: The [300]-8to24 x11vnc option (Jan/2006) is a kludge
+ The -8to24 mode: The [304]-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
@@ -1991,11 +1996,11 @@ TrueColor defdepth 24
32bpp view is exported via VNC.
Even on pure 8bpp displays it can be used as an alternative to
- [301]-flashcmap to avoid color flashing completely.
+ [305]-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: [302]-fixscreen V=3.0 to
+ row, or by using something like: [306]-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.
@@ -2008,23 +2013,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 [303]-8to24 help description for information on
+ speedup. See the [307]-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 [304]-id option to
+ possible workaround in this case is to use the [308]-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 [305]-8to24 method
+ for x11vnc to be able to do so in real time. The [309]-8to24 method
does this approximately and is somewhat usable. Fortunately the
- [306]-overlay option works for Solaris machines with overlay visuals
+ [310]-overlay option works for Solaris machines with overlay visuals
where most of this problem occurs.
@@ -2035,9 +2040,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 [307]color problems.
+ debugging x11vnc [311]color problems.
- Also, as of Dec/2004 you can use "[308]-id pick" to have x11vnc run
+ Also, as of Dec/2004 you can use "[312]-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.
@@ -2055,7 +2060,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 [309]-sid windowid option ("shifted" windowid).
+ polling, try the [313]-sid windowid option ("shifted" windowid).
Q-21: My X display is depth 24 at 24bpp (instead of the normal depth
@@ -2090,7 +2095,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 [310]-24to32 option to have
+ Update: as of Apr/2006 you can use the [314]-24to32 option to have
x11vnc dynamically transform the 24bpp pixel data to 32bpp. This extra
transformation could slow things down further however.
@@ -2109,15 +2114,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 [311]-display option to point the display to that of
+ machine. Use the [315]-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 [312]-noshm option (this enables the polling
+ and finally supply the [316]-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 [313]-flipbyteorder if the
+ on the polling rate. You may also need [317]-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
@@ -2141,7 +2146,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
- [314]-auth option to point to the correct file). Other options include
+ [318]-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 -
@@ -2153,7 +2158,7 @@ TrueColor defdepth 24
details.
If the display name in the cookie file needs to be changed between the
- two hosts, see [315]this note on the "xauth add ..." command.
+ two hosts, see [319]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
@@ -2167,7 +2172,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 [316]poll
+ Not recommended, but as a last resort, you could have x11vnc [320]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...)
@@ -2196,13 +2201,13 @@ TrueColor defdepth 24
Q-24: I'm having trouble using x11vnc with my Sun Ray session.
- The [317]Sun Ray technology is a bit like "VNC done in hardware" (the
+ The [321]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 [318]this discussion of Sun Ray issues for
+ "Soft Ray". Please see [322]this discussion of Sun Ray issues for
solutions to problems.
[Remote Control]
@@ -2210,18 +2215,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 [319]-remote and [320]-query
+ amount of things on the fly: see the [323]-remote and [324]-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 [321]-forever option has not been supplied, x11vnc will
+ If the [325]-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 [322]-bg option
+ If you have not put x11vnc in the background via the [326]-bg option
or shell & operator, then simply press Ctrl-C in the shell where
x11vnc is running to stop it.
@@ -2231,15 +2236,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 [323]-clear_mods
- option and [324]-clear_keys option can be used to release pressed keys
+ by tapping Ctrl, Shift, and Alt. Alternatively, the [327]-clear_mods
+ option and [328]-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 [325]-remote (same as -R) and [326]-query (same as -Q)
+ Look at the [329]-remote (same as -R) and [330]-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",
@@ -2250,7 +2255,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 [327]-gui option for more info. You will need to
+ mechanism. See the [331]-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".
@@ -2265,12 +2270,12 @@ TrueColor defdepth 24
vncpasswd(1) program from those packages.
As of Jun/2004 x11vnc supports the -storepasswd "pass" "file"
- [328]option, which is the same functionality of storepasswd. Be sure
+ [332]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: "[329]-rfbauth
+ You then use the password via the x11vnc option: "[333]-rfbauth
$HOME/myvncpasswd"
As of Jan/2006 if you do not supply any arguments:
@@ -2282,11 +2287,11 @@ TrueColor defdepth 24
~/.mypass", the password you are prompted for will be stored in that
file.
- x11vnc also has the [330]-passwdfile and -passwd/-viewpasswd plain
+ x11vnc also has the [334]-passwdfile and -passwd/-viewpasswd plain
text (i.e. not obscured like the -rfbauth VNC passwords) password
options.
- You can use the [331]-usepw option to automatically use any password
+ You can use the [335]-usepw option to automatically use any password
file you have in ~/.vnc/passwd or ~/.vnc/passwdfile (the latter is
used with the -passwdfile option).
@@ -2318,14 +2323,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 [332]-viewpasswd option to supply the
- view-only password. Note the full-access password option [333]-passwd
+ Yes, as of May/2004 there is the [336]-viewpasswd option to supply the
+ view-only password. Note the full-access password option [337]-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
- [334]-passwdfile option to specify a file containing plain text
+ [338]-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
@@ -2333,7 +2338,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 [335]-rfbauth
+ View-only passwords currently do not work for the [339]-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
@@ -2346,7 +2351,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 [336]-passwdfile
+ Yes, as of Jan/2006 in the libvncserver CVS the [340]-passwdfile
option has been extended to handle as many passwords as you like. You
put the view-only passwords after a line __BEGIN_VIEWONLY__.
@@ -2356,7 +2361,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 [337]-unixpw option that does
+ Update: as of Feb/2006 x11vnc has the [341]-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
@@ -2366,7 +2371,7 @@ TrueColor defdepth 24
A list of allowed Unix usernames may also be supplied along with
per-user settings.
- There is also the [338]-unixpw_nis option for non-shadow-password
+ There is also the [342]-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
@@ -2375,11 +2380,11 @@ TrueColor defdepth 24
shadow(5).
Two settings are enforced in the -unixpw and -unixpw_nis modes to
- provide extra security: the 1) [339]-localhost and 2) [340]-stunnel or
- [341]-ssl options. Without these one might send the Unix username and
+ provide extra security: the 1) [343]-localhost and 2) [344]-stunnel or
+ [345]-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 [342]-ssl (the constraint is automatically relaxed if
+ stunnel or [346]-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).
@@ -2398,13 +2403,13 @@ TrueColor defdepth 24
approximate at best.
One approximate method involves starting x11vnc with the
- [343]-localhost option. This basically requires the viewer user to log
+ [347]-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 [344]elsewhere on this page. [345]stunnel does this as well.
+ mentioned [348]elsewhere on this page. [349]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
@@ -2415,7 +2420,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 [346]-accept option that runs a program to examine the connection
+ the [350]-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
@@ -2451,7 +2456,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 [347]-accept where an external program may be run to decide if a
+ the [351]-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,
@@ -2459,26 +2464,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:
- * [348]-unixpw_cmd command
- * [349]-passwdfile cmd:command
- * [350]-passwdfile custom:command
+ * [352]-unixpw_cmd command
+ * [353]-passwdfile cmd:command
+ * [354]-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 [351]-unixpw_cmd the normal [352]-unixpw Login: and Password:
+ For [355]-unixpw_cmd the normal [356]-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 "[353]-passwdfile cmd:command" the command is run and it returns a
- password list (like a password file, see the [354]-passwdfile
+ For "[357]-passwdfile cmd:command" the command is run and it returns a
+ password list (like a password file, see the [358]-passwdfile
read:filename mode). Perhaps a dynamic, one-time password is retrieved
from a server this way.
- For "[355]-passwdfile custom:command" one gets complete control over
+ For "[359]-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
@@ -2492,7 +2497,7 @@ exit 1 # reject it
it is rejected.
In all cases the "RFB_*" enviornment variables are set as under
- [356]-accept. These variables can provide useful information for the
+ [360]-accept. These variables can provide useful information for the
externally supplied program to use.
@@ -2502,15 +2507,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 [357]-forever option (aka -many) to have
+ periods of time. Use the [361]-forever option (aka -many) to have
x11vnc wait for more connections after the first client disconnects.
- Use the [358]-shared option to have x11vnc allow multiple clients to
+ Use the [362]-shared option to have x11vnc allow multiple clients to
connect simultaneously.
- Recommended additional safety measures include using ssh ([359]see
- above), stunnel, [360]-ssl, or a VPN to authenticate and encrypt the
+ Recommended additional safety measures include using ssh ([363]see
+ above), stunnel, [364]-ssl, or a VPN to authenticate and encrypt the
viewer connections or to at least use the -rfbauth passwd-file
- [361]option to use VNC password protection (or [362]-passwdfile) It is
+ [365]option to use VNC password protection (or [366]-passwdfile) It is
up to YOU to apply these security measures, they will not be done for
you automatically.
@@ -2518,7 +2523,7 @@ exit 1 # reject it
Q-34: Can I limit which machines incoming VNC clients can connect
from?
- Yes, look at the [363]-allow and [364]-localhost options to limit
+ Yes, look at the [367]-allow and [368]-localhost options to limit
connections by hostname or IP address. E.g.
x11vnc -allow 192.168.0.1,192.168.0.2
@@ -2530,7 +2535,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
- [365](tcp_wrappers) and then use /etc/hosts.allow See hosts_access(5)
+ [369](tcp_wrappers) and then use /etc/hosts.allow See hosts_access(5)
for complete details.
@@ -2550,7 +2555,7 @@ exit 1 # reject it
is "vnc", e.g.:
vnc: 192.168.100.3 .example.com
- Note that if you run x11vnc out of [366]inetd you do not need to build
+ Note that if you run x11vnc out of [370]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.
@@ -2559,15 +2564,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 "[367]-listen ipaddr" option that enables
+ As of Mar/2005 there is the "[371]-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
- "[368]-allow host1,..." option to allow only specific hosts in.
+ "[372]-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 [369]-localhost now implies "-listen localhost" since that
+ The option [373]-localhost now implies "-listen localhost" since that
is what most people expect it to do.
@@ -2575,7 +2580,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 "[370]-allow localhost". Unlike [371]-localhost
+ To do this specify "[374]-allow localhost". Unlike [375]-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
@@ -2586,7 +2591,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 [372]-input option allows you to do this. "K",
+ As of Feb/2005, the [376]-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
@@ -2601,7 +2606,7 @@ exit 1 # reject it
some clients view-only? How about running an arbitrary program to make
the decisions?
- Yes, look at the "[373]-accept command" option, it allows you to
+ Yes, look at the "[377]-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
@@ -2620,7 +2625,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 [374]-viewonly option has been
+ mouse on the "View" button. If the [378]-viewonly option has been
supplied, the "View" action will not be present: the whole display is
view only in that case.
@@ -2636,7 +2641,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 [375]ftp://ftp.x.org/
+ is available at [379]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
@@ -2675,7 +2680,7 @@ elif [ $rc = 4 ]; then
fi
exit 1
- Stefan Radman has written a nice dtksh script [376]dtVncPopup for use
+ Stefan Radman has written a nice dtksh script [380]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.
@@ -2684,13 +2689,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 "[377]-gone
+ To run a command when a client disconnects, use the "[381]-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 "[378]-afteraccept command" option will run the
+ As of Jan/2006 the "[382]-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").
@@ -2700,7 +2705,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 [379]-users option that allows things
+ As of Feb/2005 x11vnc has the [383]-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.
@@ -2725,7 +2730,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 [380]blockdpy.c The idea behind it is simple (but
+ source for it is [384]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
@@ -2741,8 +2746,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 [381]-accept option and told
- to exit via the [382]-gone option (the vnc client user should
+ The blockdpy utility is launched by the [385]-accept option and told
+ to exit via the [386]-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.
@@ -2750,7 +2755,7 @@ exit 1
Q-42: Can I have x11vnc automatically lock the screen when I
disconnect the VNC viewer?
- Yes, a user mentions he uses the [383]-gone option under CDE to run a
+ Yes, a user mentions he uses the [387]-gone option under CDE to run a
screen lock program:
x11vnc -display :0 -forever -gone 'dtaction LockDisplay'
@@ -2759,7 +2764,7 @@ exit 1
x11vnc -display :0 -forever -gone 'kdesktop_lock'
x11vnc -display :0 -forever -gone 'xlock &'
- Here is a scheme using the [384]-afteraccept option (in version 0.7.3)
+ Here is a scheme using the [388]-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
@@ -2790,21 +2795,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 [385]how to tunnel VNC via
+ See the description earlier on this page on [389]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 [386]Enhanced TightVNC Viewer (ssvnc) page where much of
+ See also the [390]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?
- [387]Above we described how to tunnel VNC via SSH from Unix to Unix,
+ [391]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
@@ -2825,11 +2830,11 @@ fi
:0 (plus other cmdline options) in the 'Remote command' Putty setting
under 'Connections/SSH'.
- See also the [388]Enhanced TightVNC Viewer (ssvnc) page where much of
+ See also the [392]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 [389]-localhost
- and [390]-rfbauth/[391]-passwdfile options.
+ For extra protection feel free to run x11vnc with the [393]-localhost
+ and [394]-rfbauth/[395]-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
@@ -2837,11 +2842,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 [392]chaining ssh's.
+ automated by [396]chaining ssh's.
- As discussed [393]above another option is to first start the VNC
+ As discussed [397]above another option is to first start the VNC
viewer in "listen" mode, and then launch x11vnc with the
- "[394]-connect localhost" option to establish the reverse connection.
+ "[398]-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).
@@ -2851,7 +2856,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 [395]stunnel (also [396]stunnel.mirt.net)
+ IPSEC. SSL tunnels such as [399]stunnel (also [400]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
@@ -2859,12 +2864,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 [397]-ssl,
- [398]-stunnel, and [399]-sslverify to provide integrated SSL schemes.
- They are discussed [400]in the Next FAQ (you may want to skip to it
+ Update: As of Feb/2006 x11vnc has the options [401]-ssl,
+ [402]-stunnel, and [403]-sslverify to provide integrated SSL schemes.
+ They are discussed [404]in the Next FAQ (you may want to skip to it
now).
- Here are some basic examples using [401]stunnel but the general idea
+ Here are some basic examples using [405]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
@@ -2888,7 +2893,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 [402]signed by
+ stunnel is built. One can also create certificates [406]signed by
Certificate Authorities or self-signed if desired using the x11vnc
utilities described there.
@@ -2902,7 +2907,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 [403]ss_vncviewer script can automate
+ That's it. (note that the [407]ss_vncviewer script can automate
this.)
Be sure to use a VNC password because unlike ssh by default the
@@ -2910,13 +2915,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 [404]the key management section for details.
+ and also [408]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 [405]article The article also
+ found at the stunnel site and in this [409]article The article also
shows the detailed steps to set up all the authentication
- certificates. (for both server and clients, see also the [406]x11vnc
+ certificates. (for both server and clients, see also the [410]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
@@ -2937,7 +2942,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 [407]-inetd mode:
+ start up x11vnc in [411]-inetd mode:
stunnel -p /path/to/stunnel.pem -P none -d 5900 -l ./x11vnc_sh
Where the script x11vnc_sh starts up x11vnc:
@@ -2980,28 +2985,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 [408]SSL-enabled
- Java applet that can be served up via the [409]-httpdir or [410]-http
- options when [411]-ssl is enabled. It will also be served via HTTPS
+ Note: as of Mar/2006 libvncserver/x11vnc provides a [412]SSL-enabled
+ Java applet that can be served up via the [413]-httpdir or [414]-http
+ options when [415]-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 [412]-https option.
+ the [416]-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 [413]-stunnel or [414]-ssl option on the server side it works well
- and is convenient. Here is a simple script [415]ss_vncviewer that
+ the [417]-stunnel or [418]-ssl option on the server side it works well
+ and is convenient. Here is a simple script [419]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 [416]Enhanced TightVNC Viewer
+ Update Jul/2006: we now provide an [420]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 [417]in the Previous FAQ
+ You can read about non-built-in methods [421]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
@@ -3012,14 +3017,14 @@ connect = 5900
Built-in SSL x11vnc options:
- As of Feb/2006 the x11vnc [418]-ssl and [419]-stunnel options automate
- the SSL tunnel creation on the x11vnc server side. An [420]SSL-enabled
+ As of Feb/2006 the x11vnc [422]-ssl and [423]-stunnel options automate
+ the SSL tunnel creation on the x11vnc server side. An [424]SSL-enabled
Java Viewer applet is also provided that can be served via HTTP or
HTTPS to automate SSL on the client side.
- The [421]-ssl mode uses the [422]www.openssl.org library if available
- at build time. The [423]-stunnel mode requires the
- [424]www.stunnel.org command stunnel(8) to be installed on the system.
+ The [425]-ssl mode uses the [426]www.openssl.org library if available
+ at build time. The [427]-stunnel mode requires the
+ [428]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"
@@ -3071,12 +3076,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 [425]x11vnc Key Management for some utilities
+ See the discussion on [429]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 [426]ss_vncviewer provides an example on unix
+ The wrapper script [430]ss_vncviewer provides an example on unix
(-verify option).
Here are some notes on the simpler default (non-CA) operation. To have
@@ -3092,7 +3097,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
- [427]here), then Man-In-The-Middle-Attacks are prevented. Otherwise,
+ [431]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.)
@@ -3117,7 +3122,7 @@ connect = 5900
including using https to download it into the browser and connect to
x11vnc.
- See the [428]next FAQ for SSL enabled VNC Viewers.
+ See the [432]next FAQ for SSL enabled VNC Viewers.
Q-47: How do I use VNC Viewers with built-in SSL tunneling?
@@ -3128,9 +3133,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 [429]-httpdir can be used to specify the path to .../classes/ssl.
+ the [433]-httpdir can be used to specify the path to .../classes/ssl.
A typical location might be /usr/local/share/x11vnc/classes/ssl. Or
- [430]-http can be used to try to have it find the directory
+ [434]-http can be used to try to have it find the directory
automatically.
The Java viewer uses SSL to communicate securely with x11vnc. Note
@@ -3155,7 +3160,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 [431]-https option to get an additional port dedicated to https
+ the [435]-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:
@@ -3168,7 +3173,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
- [432]proxy scheme to enter a firewall or otherwise have rules applied
+ [436]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".)
@@ -3192,11 +3197,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 [433]-https option if you want a dedicated
+ let you connect. Use the [437]-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 [434]This Page.
+ connection with the Java Applet see [438]This Page.
Notes on the VNC Viewer ss_vncviewer wrapper script:
@@ -3204,10 +3209,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 [435]for
+ package. The basic ideas of doing this were discussed [439]for
external tunnel utilities here.
- The [436]ss_vncviewer script provided with x11vnc can set up the
+ The [440]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
@@ -3239,14 +3244,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 [437]this page for more information on
+ separate the two by commas. See [441]this page for more information on
how Web proxies come into play.
- If one uses a Certificate Authority (CA) scheme described [438]here,
+ If one uses a Certificate Authority (CA) scheme described [442]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 [439]Enhanced TightVNC Viewer
+ Update Jul/2006: we now provide an [443]Enhanced TightVNC Viewer
(ssvnc) package that starts up STUNNEL automatically along with some
other features. All binaries are provided in the package.
@@ -3282,7 +3287,7 @@ connect = 5900
(instead of the unsigned one in https://yourmachine.com:5900/ that
gives the default index.vnc)
- Note that the [440]ss_vncviewer stunnel wrapper script can use Web
+ Note that the [444]ss_vncviewer stunnel wrapper script can use Web
proxies as well.
Proxies that limit CONNECT to ports 443 and 563:
@@ -3311,7 +3316,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 [441]trick discussed above, do:
+ parameters in the URL. To use the GET [445]trick discussed above, do:
https://yourmachine.com/proxy.vnc?PORT=443&GET=1
@@ -3319,7 +3324,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 [442]here. This provides a clean alternative to the
+ It is discussed [446]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.
@@ -3327,7 +3332,7 @@ connect = 5900
Q-50: Can I create and use my own SSL Certificate Authority (CA) with
x11vnc?
- Yes, see [443]this page for how to do this and the utility commands
+ Yes, see [447]this page for how to do this and the utility commands
x11vnc provides to create and manage many types of certificates and
private keys.
@@ -3346,14 +3351,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 [444]FAQ on x11vnc
+ * Use the description under "Continuously" in the [448]FAQ on x11vnc
and Display Managers
- * Use the description in the [445]FAQ on x11vnc and inetd(8)
- * Use the description in the [446]FAQ on Unix user logins and
+ * Use the description in the [449]FAQ on x11vnc and inetd(8)
+ * Use the description in the [450]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 [447]x11vnc_loop rc.local hack
+ * Although less reliable, see the [451]x11vnc_loop rc.local hack
below.
The display manager scheme will not be specific to which user has the
@@ -3375,7 +3380,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
- [448]this link.
+ [452]this link.
Q-52: How can I use x11vnc to connect to an X login screen like xdm,
@@ -3390,7 +3395,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 [449]-auth option sets the XAUTHORITY variable for you).
+ (the [453]-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
@@ -3415,7 +3420,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
- [450]the example at the end of this FAQ). Then restart dtlogin, e.g.:
+ [454]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
@@ -3478,7 +3483,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 [451]full details
+ killed immediately after the user logs in. Here are [455]full details
on how to configure gdm
_________________________________________________________________
@@ -3520,14 +3525,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: [452]x11vnc_loop It will need some local
+ file like rc.local: [456]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 [453]-loop
+ described above is greatly preferred. There is also the [457]-loop
option that does something similar.
If the machine is a traditional Xterminal you may want to read
- [454]this FAQ.
+ [458]this FAQ.
Q-53: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
@@ -3537,7 +3542,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 [455]-inetd
+ where the shell script /usr/local/bin/x11vnc_sh uses the [459]-inetd
option and looks something like (you'll need to customize to your
settings).
#!/bin/sh
@@ -3550,7 +3555,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 [456]-quiet) option: "/usr/local/bin/x11vnc -q
+ specify the -q (aka [460]-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
@@ -3558,12 +3563,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 [457]-auth to point to the
+ Note also the need to set XAUTHORITY via [461]-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
- [458]FAQ on Unix user logins and inetd(8) works around the XAUTHORITY
+ [462]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
@@ -3629,13 +3634,13 @@ service x11vncservice
and then have it find her X display on that machine and then connect
to it?
- The easiest way to do this is via [459]inetd(8) using the [460]-unixpw
- and [461]-display WAIT options. The reason inetd(8) makes this easier
+ The easiest way to do this is via [463]inetd(8) using the [464]-unixpw
+ and [465]-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 [462]this example).
+ x11vnc's (see [466]this example).
- The [463]-display WAIT option makes x11vnc wait until a VNC viewer is
+ The [467]-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. So one could supply "-display
@@ -3679,7 +3684,7 @@ exit 0
or raw xauth data (the above example does the latter). On Linux if the
virtual terminal is known append ",VT=n" to the DISPLAY line.
- The [464]-unixpw option allows [465]UNIX password logins. Here are a
+ The [468]-unixpw option allows [469]UNIX password logins. Here are a
couple /etc/inetd.conf examples for this:
5900 stream tcp nowait nobody /usr/sbin/tcpd /usr/local/bin/x11vnc -inetd
-unixpw \
@@ -3699,9 +3704,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 "[466]-users unixpw=" option.
+ logs in due to the "[470]-users unixpw=" option.
- Note that [467]SSL is required for this mode because otherwise the
+ Note that [471]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 user is whose display
@@ -3713,7 +3718,7 @@ xpw=
FINDDISPLAY method it will create an X server session for the user.
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 [468]Xdummy and if that does not work Xvfb. Note that
+ servers: first [472]Xdummy and if that does not work Xvfb. Note that
Xdummy requires root permission and only works on Linux.
So an inetd(8) example might look like:
@@ -3723,7 +3728,7 @@ xpw=
11vnc
Where the very long lines have been split. This will allow direct SSL
- (e.g. [469]ss_vncviewer) access and also Java Web browers access via:
+ (e.g. [473]ss_vncviewer) access and also Java Web browers access via:
https://hostname:5915/.
For reference, xinetd format in the file, say, /etc/xinetd.d/x11vnc:
@@ -3748,7 +3753,7 @@ ocal/bin/x11vnc
WAIT:cmd=FINDCREATEDISPLAY-X,Xvfb,Xdummy". The "X" one means to try to
start up a real, hardware X server (if there is already a real X
server running this may only work on Linux and the chvt program may
- [470]need to be run to switch to the correct Linux virtual terminal).
+ [474]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.
@@ -3764,7 +3769,7 @@ ocal/bin/x11vnc
Q-55: Can I have x11vnc restart itself after it terminates?
One could do this in a shell script, but now there is an option
- [471]-loop that makes it easier. Of course when x11vnc restarts it
+ [475]-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"
@@ -3775,7 +3780,7 @@ ocal/bin/x11vnc
web browser?
To have x11vnc serve up a Java VNC viewer applet to any web browsers
- that connect to it, run x11vnc with this [472]option:
+ that connect to it, run x11vnc with this [476]option:
-httpdir /path/to/the/java/classes/dir
(this directory will contain the files index.vnc and, for example,
@@ -3794,7 +3799,7 @@ ocal/bin/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 [473]-http option will try to guess where the Java
+ As of May/2005 the [477]-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.
@@ -3810,7 +3815,7 @@ ocal/bin/x11vnc
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
- [474]-connect option. To connect immediately at x11vnc startup time
+ [478]-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).
@@ -3818,7 +3823,7 @@ ocal/bin/x11vnc
file is checked periodically (about once a second) for new hosts to
connect to.
- The [475]-remote control option (aka -R) can also be used to do this
+ The [479]-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
@@ -3830,7 +3835,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 [476]-vncconnect option to x11vnc (Note:
+ www.realvnc.com) specify the [480]-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
@@ -3873,8 +3878,8 @@ 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 [477]FINDCREATEDISPLAY discussion of the
- "[478]-display WAIT:cmd=FINDDISPLAY" option where virtual (Xvfb or
+ Update Nov/2006: See the [481]FINDCREATEDISPLAY discussion of the
+ "[482]-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
@@ -3883,7 +3888,7 @@ xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
There are some annoyances WRT Xvfb though. The default keyboard
mapping seems to be very poor. One should run x11vnc with
- [479]-add_keysyms option to have keysyms added automatically. Also, to
+ [483]-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"
@@ -3909,11 +3914,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) [480]switching even though it
+ Linux Virtual Console/Terminal (VC/VT) [484]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 [481]Xdummy that allows you to
+ Jul/2005 we have an LD_PRELOAD script [485]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
@@ -3945,7 +3950,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 [482]this FAQ) and access it from
+ display via x11vnc (e.g. see [486]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
@@ -3968,7 +3973,7 @@ 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 [483]FINDCREATEDISPLAY discussion of the "[484]-display
+ See also the [487]FINDCREATEDISPLAY discussion of the "[488]-display
WAIT:cmd=FINDDISPLAY" option where virtual Xvfb or Xdummy, or real X
servers are started automatically for new users connecting.
@@ -3992,7 +3997,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 [485]shm_clear to list and prompt for removal
+ Here is a shell script [489]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,
@@ -4026,40 +4031,40 @@ ied)
in /etc/system. See the next paragraph for more workarounds.
To minimize the number of shm segments used by x11vnc try using the
- [486]-onetile option (corresponds to only 3 shm segments used, and
+ [490]-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
- [487]-noshm option. Performance will be somewhat degraded but when
+ [491]-noshm option. Performance will be somewhat degraded but when
done over local machine sockets it should be acceptable (see an
- [488]earlier question discussing -noshm).
+ [492]earlier question discussing -noshm).
Q-61: How can I make x11vnc use less system resources?
- The [489]-nap (now on by default) and "[490]-wait n" (where n is the
+ The [493]-nap (now on by default) and "[494]-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 "[491]-sb 15" will cause
+ are good places to start. Something like "[495]-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 [492]-onetile
+ will make x11vnc's screen polling less severe. Using the [496]-onetile
option will use less memory and use fewer shared memory slots (add
- [493]-fs 1.0 for one less slot).
+ [497]-fs 1.0 for one less slot).
Q-62: How can I make x11vnc use MORE system resources?
- You can try [494]-threads and dial down the wait time (e.g. -wait 1)
- and possibly dial down [495]-defer as well. Note that if you try to
+ You can try [498]-threads and dial down the wait time (e.g. -wait 1)
+ and possibly dial down [499]-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 [496]-id option) can be streamed over a LAN or wireless at
+ the x11vnc [500]-id option) can be streamed over a LAN or wireless at
a reasonable frame rate.
@@ -4075,7 +4080,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
- [497]-solid [color] option to try to do this automatically.
+ [501]-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
@@ -4084,9 +4089,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 [498]-scrollcopyrect is active and
+ problem in x11vnc 0.7.2 if [502]-scrollcopyrect is active and
detecting scrolls for the application).
- * If the [499]-wireframe option is not available (earlier than
+ * If the [503]-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)
@@ -4109,7 +4114,7 @@ ied)
noticed.
VNC viewer parameters:
- * Use a [500]TightVNC enabled viewer! (Actually, RealVNC 4.x viewer
+ * Use a [504]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
@@ -4131,37 +4136,37 @@ ied)
file.
x11vnc parameters:
- * Make sure the [501]-wireframe option is active (it should be on by
+ * Make sure the [505]-wireframe option is active (it should be on by
default) and you have Opaque Moves/Resizes Enabled in the window
manager.
- * Make sure the [502]-scrollcopyrect option is active (it should be
+ * Make sure the [506]-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
- [503]-solid
- * Specify [504]-speeds modem to force the wireframe and
+ [507]-solid
+ * Specify [508]-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 [505]-nodragging (no screen updates when dragging mouse,
+ drastic [509]-nodragging (no screen updates when dragging mouse,
but sometimes you miss visual feedback)
- * Set [506]-fs 1.0 (disables fullscreen updates)
- * Try increasing [507]-wait or [508]-defer (reduces the maximum
+ * Set [510]-fs 1.0 (disables fullscreen updates)
+ * Try increasing [511]-wait or [512]-defer (reduces the maximum
"frame rate", but won't help much for large screen changes)
- * Try the [509]-progressive pixelheight mode with the block
+ * Try the [513]-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 [510]-id (cuts
+ * If you just want to watch one (simple) window use [514]-id (cuts
down extraneous polling and updates, but can be buggy or
insufficient)
- * Set [511]-nosel (disables all clipboard selection exchange)
- * Use [512]-nocursor and [513]-nocursorpos (repainting the remote
+ * Set [515]-nosel (disables all clipboard selection exchange)
+ * Use [516]-nocursor and [517]-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
- [514]-readtimeout n setting if it sometimes takes more than 20sec
+ [518]-readtimeout n setting if it sometimes takes more than 20sec
to paint the full screen, etc.
- * Do not use [515]-fixscreen to automatically refresh the whole
+ * Do not use [519]-fixscreen to automatically refresh the whole
screen, tap three Alt_L's then the screen has painting errors
(rare problem).
@@ -4184,7 +4189,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 [516]slow (e.g.
+ in main memory. So reading the fb is still painfully [520]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
@@ -4202,20 +4207,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 "[517]-xd_area A" option to adjust the size
+ skipped). You can use the "[521]-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 "[518]-xd_mem f" may also be of use in tuning the
- algorithm. To disable using DAMAGE entirely use "[519]-noxdamage".
+ The option "[522]-xd_mem f" may also be of use in tuning the
+ algorithm. To disable using DAMAGE entirely use "[523]-noxdamage".
Q-65: 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 "[520]-noxdamage" option.
+ he uses the "[524]-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
@@ -4227,14 +4232,14 @@ ied)
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 [521]slow hardware read rates from
+ This problem is primarily due to [525]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
- [522]-pointer_mode option for more info. The next bottleneck is
+ [526]-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
@@ -4244,26 +4249,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 "[523]-pointer_mode 1" option.
+ the "[527]-pointer_mode 1" option.
- Also added was the [524]-nodragging option that disables all screen
+ Also added was the [528]-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 [525]-pointer_mode n option was introduced. n=1 is
+ As of Dec/2004 the [529]-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 [526]-threads option can improve
+ Also, in some circumstances the [530]-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 [527]wireframe FAQ and
- [528]scrollcopyrect FAQ below) provide schemes to sweep this problem
+ As of Apr/2005 two new options (see the [531]wireframe FAQ and
+ [532]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
@@ -4287,8 +4292,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 [529]slow video card
- read rates (see [530]here too). A displacement, even a small one, of a
+ intermediate steps. BTW the lurching is due to [533]slow video card
+ read rates (see [534]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.
@@ -4296,7 +4301,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 [531]-nowireframe option
+ with the problem. It can be disabled with the [535]-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
@@ -4341,13 +4346,13 @@ EndSection
* Maximum time to show a wireframe animation.
* Minimum time between sending wireframe outlines.
- See the [532]"-wireframe tweaks" option for more details. On a slow
+ See the [536]"-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
- [533]"-wirecopyrect mode" option. It is also on by default. This
+ [537]"-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
@@ -4395,7 +4400,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 [534]slow).
+ the hardware framebuffer is [538]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.
@@ -4422,10 +4427,10 @@ EndSection
the X server display: if one falls too far behind it could become a
mess...
- The initial implementation of [535]-scrollcopyrect option is useful in
+ The initial implementation of [539]-scrollcopyrect option is useful in
that it detects many scrolls and thus gives a much nicer working
- environment (especially when combined with the [536]-wireframe
- [537]-wirecopyrect [538]options, which are also on by default; and if
+ environment (especially when combined with the [540]-wireframe
+ [541]-wirecopyrect [542]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.
@@ -4458,10 +4463,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: [539]-fixscreen
+ also: [543]-fixscreen
* Some applications, notably OpenOffice, do XCopyArea scrolls in
weird ways that assume ancestor window clipping is taking place.
- See the [540]-scr_skip option for ways to tweak this on a
+ See the [544]-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
@@ -4478,7 +4483,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 [541]-scale option there will be a quick CopyRect
+ * When using the [545]-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
@@ -4491,7 +4496,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 [542]-noscrollcopyrect (or -noscr for short). If you find
+ with the [546]-noscrollcopyrect (or -noscr for short). If you find
some extremely bad and repeatable behavior for -scrollcopyrect please
report a bug.
@@ -4516,9 +4521,10 @@ EndSection
that pixel data is needed again it does not have to be retransmitted
over the network.
- As of Dec/2006 in the [543]0.8.4 development tarball there is an
+ As of Dec/2006 in the [547]0.8.4 development tarball there is an
experimental client-side caching implementation enabled by the
- "[544]-ncache n" option.
+ "[548]-ncache n" option. In fact, during the test period at least it
+ is on by default with n set to 10.
It is a simple scheme where the lower portion of the framebuffer (i.e.
below the user's actual display) is used for storing pixel data.
@@ -4601,23 +4607,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 "[545]-cursor X" option that
+ A simple kludge is provided by the "[549]-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 "[546]-cursor some" option for
+ work for those cases. Also see the "[550]-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
- [547]-overlay option is supplied. See [548]this FAQ for more info.
+ [551]-overlay option is supplied. See [552]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
- [549]Solaris 10.
+ [553]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
@@ -4625,7 +4631,7 @@ 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. [550]Details can be found here.
+ hidden alpha channel data under 32bpp. [554]Details can be found here.
Q-71: When using XFIXES cursorshape mode, some of the cursors look
@@ -4658,17 +4664,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 "[551]-alphacut n" option lets
+ course!) some tunable parameters. The "[555]-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 "[552]-alphafrac f" option tries to correct individual
+ 240. The "[556]-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 [553]-alpharemove that is useful for
+ Finally, there is an option [557]-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
@@ -4694,10 +4700,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 [554]-nocursorshape x11vnc option. In this case the cursor is
+ with the [558]-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 [555]-noalphablend option to disable this
+ the x11vnc side. Use the [559]-noalphablend option to disable this
behavior (always approximate transparent cursors with opaque RGB
values).
@@ -4721,7 +4727,7 @@ 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 [556]Enhanced TightVNC Viewer (ssvnc)
+ This patch is applied to the [560]Enhanced TightVNC Viewer (ssvnc)
package we provide.
[Mouse Pointer]
@@ -4729,9 +4735,9 @@ EndSection
Q-73: 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 [557]tightvnc extension
+ This default takes advantage of a [561]tightvnc extension
(CursorShapeUpdates) that allows specifying a cursor image shape for
- the local VNC viewer. You may disable it with the [558]-nocursor
+ the local VNC viewer. You may disable it with the [562]-nocursor
option to x11vnc if your viewer does not have this extension.
Note: as of Aug/2004 this should be fixed: the default for
@@ -4745,17 +4751,17 @@ EndSection
clients (i.e. passive viewers can see the mouse cursor being moved
around by another viewer)?
- Use the [559]-cursorpos option when starting x11vnc. A VNC viewer must
+ Use the [563]-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 [560]-nocursorpos and [561]-nocursorshape.
+ is the default. See also [564]-nocursorpos and [565]-nocursorshape.
Q-75: 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: [562]-buttonmap
+ You can remap the mouse buttons via something like: [566]-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.
@@ -4763,7 +4769,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 [563]-debug_pointer option prints out much info for
+ Note that the [567]-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
@@ -4785,7 +4791,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 [564]-buttonmap but rather configuring the X server
+ consider not using [568]-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"').
@@ -4815,7 +4821,7 @@ EndSection
Q-76: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages?
- The option [565]-modtweak should help here. It is a mode that monitors
+ The option [569]-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.
@@ -4824,16 +4830,16 @@ 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 [566]this FAQ for more info). Without
+ not exist on the keyboard (see [570]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 [567]FAQ about the -xkb option for a more powerful method
+ Also see the [571]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
- [568]-debug_keyboard option prints out much info for every keystroke
+ [572]-debug_keyboard option prints out much info for every keystroke
and so can be useful debugging things.
@@ -4845,9 +4851,9 @@ EndSection
(e.g. pc105 in the XF86Config file when it should be something else,
say pc104).
- Short Cut: Try the [569]-xkb or [570]-sloppy_keys options and see if
+ Short Cut: Try the [573]-xkb or [574]-sloppy_keys options and see if
that helps the situation. The discussion below is a bit outdated (e.g.
- [571]-modtweak is now the default) but it is useful reference for
+ [575]-modtweak is now the default) but it is useful reference for
various tricks and so is kept.
@@ -4890,17 +4896,17 @@ EndSection
-remap less-comma
These are convenient in that they do not modify the actual X server
- settings. The former ([572]-modtweak) is a mode that monitors the
+ settings. The former ([576]-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 ([573]-remap less-comma) is an immediate remapping of the
+ The latter ([577]-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 [574]FAQ about the -xkb option as a possible workaround
+ See also the [578]FAQ about the -xkb option as a possible workaround
using the XKEYBOARD extension.
- Note that the [575]-debug_keyboard option prints out much info for
+ Note that the [579]-debug_keyboard option prints out much info for
every keystroke to aid debugging keyboard problems.
@@ -4908,13 +4914,13 @@ EndSection
(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 [576]keymapping
+ the Shift key before releasing the "<". Because of a [580]keymapping
ambiguity the last event "< up" is interpreted as "," because that key
unshifted is the comma.
- This should not happen in [577]-xkb mode, because it works hard to
+ This should not happen in [581]-xkb mode, because it works hard to
resolve the ambiguities. If you do not want to use -xkb, try the
- option [578]-sloppy_keys to attempt a similar type of algorithm.
+ option [582]-sloppy_keys to attempt a similar type of algorithm.
Q-79: I'm using an "international" keyboard (e.g. German "de", or
@@ -4938,7 +4944,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 [579]-modtweak
+ This all worked fine with x11vnc running with the [583]-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
@@ -4955,7 +4961,7 @@ EndSection
* there is a new option -xkb to use the XKEYBOARD extension API to
do the Modifier key tweaking.
- The [580]-xkb option seems to fix all of the missing keys: "@", "<",
+ The [584]-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
@@ -4963,7 +4969,7 @@ EndSection
debugging output (send it along with any problems you report).
Update: as of Jun/2005 x11vnc will try to automatically enable
- [581]-xkb if it appears that would be beneficial (e.g. if it sees any
+ [585]-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.
@@ -4978,7 +4984,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:
- [582]-skip_keycodes 93
+ [586]-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
@@ -4996,16 +5002,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 [583]-remap x11vnc option:
+ created using the [587]-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
- [584]-add_keysyms option in the next paragraph.
- Update: for convenience "[585]-remap DEAD" does many of these
+ [588]-add_keysyms option in the next paragraph.
+ Update: for convenience "[589]-remap DEAD" does many of these
mappings at once.
- * To complement the above workaround using the [586]-remap, an
- option [587]-add_keysyms was added. This option instructs x11vnc
+ * To complement the above workaround using the [590]-remap, an
+ option [591]-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
@@ -5024,7 +5030,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) [588]-norepeat x11vnc option. You will still
+ use the new (Jul/2004) [592]-norepeat x11vnc option. You will still
have autorepeating because that is taken care of on your VNC viewer
side.
@@ -5048,7 +5054,7 @@ 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 [589]-norepeat (which has since Dec/2004 been
+ needed, or to use the [593]-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
@@ -5059,7 +5065,7 @@ EndSection
keystrokes!!
Are you using x11vnc to log in to an X session via display manager?
- (as described in [590]this FAQ) If so, x11vnc is starting before your
+ (as described in [594]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
@@ -5083,7 +5089,7 @@ EndSection
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 "[591]-remap Super_R-Mode_switch" x11vnc option may
+ Something like "[595]-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)).
@@ -5106,7 +5112,7 @@ 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 [592]-remap Alt_L-Meta_L to x11vnc may be sufficient for ones
+ the [596]-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.
@@ -5117,7 +5123,7 @@ EndSection
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 [593]-remap
+ have x11vnc do the remapping. This can be done via the [597]-remap
option using the fake "keysyms" Button1, Button2, etc. as the "to"
keys (i.e. the ones after the "-")
@@ -5126,7 +5132,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:
- [594]-remap Super_R-Button2
+ [598]-remap Super_R-Button2
maps the Super_R "flag" key press to the Button2 click, thereby making
X pasting a bit easier.
@@ -5145,10 +5151,10 @@ 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
- [595]-skip_lockkeys option should help to accomplish this. For finer
- grain control use something like: "[596]-remap Caps_Lock-None".
+ [599]-skip_lockkeys option should help to accomplish this. For finer
+ grain control use something like: "[600]-remap Caps_Lock-None".
- Also try the [597]-nomodtweak and [598]-capslock options.
+ Also try the [601]-nomodtweak and [602]-capslock options.
[Screen Related Issues and Features]
@@ -5171,7 +5177,7 @@ 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
- [599]this FAQ on x11vnc scaling.
+ [603]this FAQ on x11vnc scaling.
Q-87: Does x11vnc support server-side framebuffer scaling? (E.g. to
@@ -5179,7 +5185,7 @@ EndSection
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 "[600]-scale fraction" option. "fraction" can either be a
+ use the "[604]-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.
@@ -5200,7 +5206,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
- [601]applications. Since with integer scale factors the framebuffers
+ [605]applications. Since with integer scale factors the framebuffers
become huge and scaling operations time consuming, be sure to use
":nb" for the fastest response.
@@ -5226,7 +5232,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 ([602]-rfbport option,
+ different scalings listening on separate ports ([606]-rfbport option,
etc.).
Update: As of May/2006 x11vnc also supports the UltraVNC server-side
@@ -5236,8 +5242,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 [603]GUI, then to avoid all of the x11vnc's simultaneously
- answering the gui you will need to use something like [604]"-connect
+ use the [607]GUI, then to avoid all of the x11vnc's simultaneously
+ answering the gui you will need to use something like [608]"-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
@@ -5246,7 +5252,7 @@ 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
- [605]"-scale_cursor frac" option to set the cursor scaling to a
+ [609]"-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).
@@ -5268,17 +5274,17 @@ 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 [606]-blackout x11vnc option
+ may be distracting to the viewer. The [610]-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
- [607]-xinerama x11vnc option can be used to have it automatically
+ [611]-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:
- [608]-xinerama is now on by default.
+ [612]-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 [609]-xwarppointer
+ of the large display. If this happens try using the [613]-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
@@ -5303,23 +5309,23 @@ 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 [610]FAQ to increase the limit. It
- is probably also a good idea to run with the [611]-onetile option in
+ /etc/system as mentioned in another [614]FAQ to increase the limit. It
+ is probably also a good idea to run with the [615]-onetile option in
this case (to limit each x11vnc to 3 shm segments), or even
- [612]-noshm to use no shm segments.
+ [616]-noshm to use no shm segments.
Q-90: Can x11vnc show only a portion of the display? (E.g. for a
special purpose rfb application).
- As of Mar/2005 x11vnc has the "[613]-clip WxH+X+Y" option to select a
+ As of Mar/2005 x11vnc has the "[617]-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 [614]Xinerama screen into two
+ One user used -clip to split up a large [618]Xinerama screen into two
more managable smaller screens.
This also works to view a sub-region of a single application window if
- the [615]-id or [616]-sid options are used. The offset is measured
+ the [619]-id or [620]-sid options are used. The offset is measured
from the upper left corner of the selected window.
@@ -5328,7 +5334,7 @@ EndSection
crash.
As of Dec/2004 x11vnc supports XRANDR. You enable it with the
- [617]-xrandr option to make x11vnc monitor XRANDR events and also trap
+ [621]-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.
@@ -5338,9 +5344,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 [618]-padgeom option to make the region big
+ viewers you can try the [622]-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: [619]enhanced_tightvnc_viewer
+ for the TightVNC Viewer on Unix: [623]enhanced_tightvnc_viewer
If you specify "-xrandr newfbsize" then vnc viewers that do not
support NewFBSize will be disconnected before the resize. If you
@@ -5352,7 +5358,7 @@ EndSection
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 [620]-rotate option allow this. E.g's:
+ As of Jul/2006 there is the [624]-rotate option allow this. E.g's:
"-rotate +90", "-rotate -90", "-rotate x", etc.
@@ -5417,13 +5423,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 [621]here for how to
+ straight xscreensaver (see the instructions [625]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 [622]-nodpms option was added
+ suspend, or off). In Nov/2006 the x11vnc [626]-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
@@ -5443,9 +5449,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 [623]this FAQ
+ desktop in a separate Virtual Console (e.g. VC 8) (see [627]this FAQ
on VC's for background). Unfortunately, this Fullscreen VC is not an X
- server. So x11vnc cannot access it (however, [624]see this discussion
+ server. So x11vnc cannot access it (however, [628]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.
@@ -5466,13 +5472,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 [625]is in the active VC.
+ as long as the VMWare X session [629]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 [626]-id windowid option. The
+ the VMWare menu buttons) by use of the [630]-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
@@ -5488,10 +5494,10 @@ EndSection
controlled) via VNC with x11vnc?
As of Apr/2005 there is support for this. Two options were added:
- "[627]-rawfb string" (to indicate the raw framembuffer device, file,
- etc. and its parameters) and "[628]-pipeinput command" (to provide an
+ "[631]-rawfb string" (to indicate the raw framembuffer device, file,
+ etc. and its parameters) and "[632]-pipeinput command" (to provide an
external program that will inject or otherwise process mouse and
- keystroke input). Some useful [629]-pipeinput schemes, VID, CONSOLE,
+ keystroke input). Some useful [633]-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
@@ -5529,9 +5535,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 [630]-snapfb option with
+ this). The "snap:" setting applies the [634]-snapfb option with
"file:" type reading (this is useful for exporting webcams or TV tuner
- video; see [631]the next FAQ for more info).
+ video; see [635]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
@@ -5575,7 +5581,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 [632]X
+ for the case of Xvfb x11vnc can poll it much better via the [636]X
API, but you get the idea.
By default in -rawfb mode x11vnc will actually close any X display it
@@ -5604,13 +5610,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 [633]Qt-embedded apps (PDAs/Handhelds). By default the
+ fullscreen, or [637]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 [634]this FAQ for details. If specified via "-rawfb Video"
+ kernel. See [638]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).
@@ -5618,10 +5624,10 @@ EndSection
also useful in testing.
- All of the above [635]-rawfb options are just for viewing the raw
+ All of the above [639]-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 [636]video camera mapped its framebuffer
+ this feature (e.g. suppose a [640]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
@@ -5659,7 +5665,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 [637]active VC) one
+ view and interact with VC #2 (assuming it is the [641]active VC) one
can run something like:
x11vnc -rawfb map:/dev/fb0@1024x768x16 -pipeinput './vcinject.pl 2'
@@ -5714,7 +5720,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
- [638]Qt-embedded Also, for example the [639]VMWare Fullscreen mode is
+ [642]Qt-embedded Also, for example the [643]VMWare Fullscreen mode is
actually viewable under -rawfb and can be interacted with if uinput is
enabled.
@@ -5734,9 +5740,9 @@ EndSection
Q-99: Can I export via VNC a Webcam or TV tuner framebuffer using
x11vnc?
- Yes, this is possible to some degree with the [640]-rawfb option.
+ Yes, this is possible to some degree with the [644]-rawfb option.
There is no X11 involved: snapshots from the video capture device are
- used for the screen image data. See the [641]previous FAQ on -rawfb
+ used for the screen image data. See the [645]previous FAQ on -rawfb
for background. For best results, use x11vnc version 0.8.1 or later.
Roughly, one would do something like this:
@@ -5748,7 +5754,7 @@ EndSection
snapshot to a file that you point -rawfb to; ask me if it is not clear
what to do).
- The "snap:" enforces [642]-snapfb mode which appears to be necessary.
+ The "snap:" enforces [646]-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.
@@ -5770,7 +5776,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 [643]-24to32 option will be automatically imposed when in
+ etc, the [647]-24to32 option will be automatically imposed when in
24bpp.
Note that by its very nature, video capture involves rapid change in
@@ -5778,7 +5784,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 [644]-wait, [645]-slow_fb, or [646]-defer
+ the framerate via the [648]-wait, [649]-slow_fb, or [650]-defer
options. Decreasing the window size and bpp also helps.
@@ -5867,7 +5873,7 @@ EndSection
format to HI240, RGB565, RGB24, RGB32, RGB555, and
GREY respectively. See -rawfb video for details.
- See also the [647]-freqtab option to supply your own xawtv channel to
+ See also the [651]-freqtab option to supply your own xawtv channel to
frequency mappings for your country (only ntsc-cable-us is built into
x11vnc).
@@ -5876,7 +5882,7 @@ EndSection
running on my handheld or PC using the Linux console framebuffer (i.e.
not X11)?
- Yes, the basic method for this is the [648]-rawfb scheme where the
+ Yes, the basic method for this is the [652]-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:
@@ -5889,7 +5895,7 @@ EndSection
x11vnc -rawfb /dev/fb0@640x480x16
Also, to force usage of the uinput injection method use "-pipeinput
- UINPUT". See the [649]-pipeinput description for tunable parameters,
+ UINPUT". See the [653]-pipeinput description for tunable parameters,
etc.
One problem with the x11vnc uinput scheme is that it cannot guess the
@@ -5905,7 +5911,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 [650]-pipeinput UINPUT option for tuning
+ times a second. See the [654]-pipeinput UINPUT option for tuning
parameters that can be set (there are some experimental thresh=N
tuning parameters as well)
@@ -5939,7 +5945,7 @@ EndSection
Q-101: 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 [651]-rawfb only
+ Yes, as of Jul/2006 x11vnc enables building for [655]-rawfb only
support. Just do something like when building:
./configure --without-x (plus any other flags)
make
@@ -5955,11 +5961,11 @@ EndSection
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
- [652]-rawfb mechanism described above. The mouse and keyboard input is
+ [656]-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 [653]OSXvnc (aka Vine
- Server), or [654]Apple Remote Desktop (ARD). Perhaps there is some
+ So you can use x11vnc as an alternative to [657]OSXvnc (aka Vine
+ Server), or [658]Apple Remote Desktop (ARD). Perhaps there is some
x11vnc feature you'd like to use on Mac OS X, etc.
Notes:
@@ -5968,7 +5974,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 [655]-id windowid mode (and the
+ only work reasonably in single window [659]-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
@@ -5982,9 +5988,9 @@ EndSection
./configure --without-x
make
- Win2VNC/x2vnc: One handy use is to use the [656]-nofb mode to
+ Win2VNC/x2vnc: One handy use is to use the [660]-nofb mode to
redirect mouse and keyboard input to a nearby Mac (i.e. one to the
- side of your desk) via [657]x2vnc or Win2VNC. See [658]this FAQ for
+ side of your desk) via [661]x2vnc or Win2VNC. See [662]this FAQ for
more info.
Options: Here are the Mac OS X specific x11vnc options:
@@ -6054,11 +6060,11 @@ rm -f $tmp
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 [659]-nosel option. If you don't
+ Clipboard/Selection exchanged use the [663]-nosel option. If you don't
want the PRIMARY selection to be polled for changes use the
- [660]-noprimary option. (with a similar thing for CLIPBOARD). You can
- also fine-tune it a bit with the [661]-seldir dir option and also
- [662]-input.
+ [664]-noprimary option. (with a similar thing for CLIPBOARD). You can
+ also fine-tune it a bit with the [665]-seldir dir option and also
+ [666]-input.
You may need to watch out for desktop utilities such as KDE's
"Klipper" that do odd things with the selection, clipboard, and
@@ -6070,7 +6076,7 @@ rm -f $tmp
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
- [663]pyvnc2swf. There are a number of [664]tutorials on how to do
+ [667]pyvnc2swf. There are a number of [668]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
@@ -6085,7 +6091,7 @@ rm -f $tmp
(and Windows viewers only support filetransfer it appears).
TightVNC file transfer is on by default, if you want to disable it use
- the [665]-nofilexfer option. UltraVNC file transfer is currently off
+ the [669]-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
@@ -6101,7 +6107,7 @@ rm -f $tmp
You will have to use an external network redirection for this.
Filesystem mounting is not part of the VNC protocol.
- We show a simple [666]Samba example here.
+ We show a simple [670]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:
@@ -6138,7 +6144,7 @@ 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 [667]Enhanced TightVNC Viewer (ssvnc) package we provide (as
+ into the [671]Enhanced TightVNC Viewer (ssvnc) package we provide (as
of Sep 2006 it is there for testing).
@@ -6148,7 +6154,7 @@ d,ip=127.0.0.1,port=1139
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 [668]CUPS example here. Non-CUPS port
+ We show a simple Unix to Unix [672]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).
@@ -6220,7 +6226,7 @@ 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 [669]Enhanced TightVNC Viewer (ssvnc) package we provide (as
+ into the [673]Enhanced TightVNC Viewer (ssvnc) package we provide (as
of Sep 2006 it is there for testing).
@@ -6321,7 +6327,7 @@ 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 [670]Enhanced TightVNC Viewer (ssvnc) package
+ redir setup into the [674]Enhanced TightVNC Viewer (ssvnc) package
we provide (as of Sep/2006 it is there for testing).
@@ -6333,9 +6339,9 @@ 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 [671]-nobell option. If
+ If you don't want to hear the beeps use the [675]-nobell option. If
you want to hear the audio from the remote applications, consider
- trying a [672]redirector such as esd.
+ trying a [676]redirector such as esd.
@@ -6369,661 +6375,665 @@ References
15. http://www.karlrunge.com/x11vnc/index.html#faq
16. http://www.karlrunge.com/x11vnc/disclaimer.html
17. http://www.karlrunge.com/x11vnc/index.html#contact
- 18. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 19. http://www.realvnc.com/
- 20. http://www.tightvnc.com/
- 21. http://www.ultravnc.com/
- 22. http://www.redstonesoftware.com/vnc.html
- 23. http://www.karlrunge.com/x11vnc/index.html#downloading
- 24. http://www.tightvnc.com/download.html
- 25. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 26. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 27. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 28. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 29. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
- 30. http://www.sun.com/software/solaris/freeware/
- 31. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 32. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 33. http://www.karlrunge.com/x11vnc/index.html#faq-service
- 34. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 35. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
- 36. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 37. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
- 38. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 39. http://www.karlrunge.com/x11vnc/index.html#tightvnc_via
- 40. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 41. http://www.karlrunge.com/x11vnc/chainingssh.html
- 42. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 43. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 44. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 45. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 46. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 47. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 48. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 49. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 50. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
- 51. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 52. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 53. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
- 54. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 55. http://www.stunnel.org/
- 56. http://stunnel.mirt.net/
- 57. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 58. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 59. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 60. http://sourceforge.net/projects/libvncserver/
- 61. http://sourceforge.net/project/showfiles.php?group_id=32584&package_id=119006&release_id=463226
- 62. http://sourceforge.net/project/shownotes.php?release_id=463226&group_id=32584
- 63. http://www.karlrunge.com/x11vnc/x11vnc-0.8.4.tar.gz
- 64. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
- 65. http://www.tightvnc.com/download.html
- 66. http://www.realvnc.com/download-free.html
- 67. http://sourceforge.net/projects/cotvnc/
- 68. http://www.ultravnc.com/
- 69. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 70. http://www.karlrunge.com/x11vnc/rx11vnc
- 71. http://www.karlrunge.com/x11vnc/rx11vnc.pl
- 72. http://www.sunfreeware.com/
- 73. http://www.karlrunge.com/x11vnc/bins
- 74. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 75. http://www.karlrunge.com/x11vnc/miscbuild.html
- 76. ftp://ftp.uu.net/graphics/jpeg/
- 77. http://www.gzip.org/zlib/
- 78. http://www.sunfreeware.com/
- 79. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
- 80. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 81. http://www.karlrunge.com/x11vnc/x11vnc-0.8.4.tar.gz
- 82. http://www.karlrunge.com/x11vnc/bins
- 83. mailto:x11vnc-beta@karlrunge.com
- 84. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 85. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 86. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 87. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 88. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
- 89. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 90. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 91. http://www.openssl.org/
- 92. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 93. http://www.stunnel.org/
- 94. http://stunnel.mirt.net/
- 95. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
- 96. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCert
- 97. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCA
- 98. http://www.karlrunge.com/x11vnc/ssl.html
- 99. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 100. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 101. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 102. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 103. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
- 104. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 105. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 106. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 107. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 108. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 109. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 110. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 111. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 112. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 113. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
- 114. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
- 115. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
+ 18. http://www.karlrunge.com/x11vnc/index.html#beta-test
+ 19. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 20. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 21. http://www.realvnc.com/
+ 22. http://www.tightvnc.com/
+ 23. http://www.ultravnc.com/
+ 24. http://www.redstonesoftware.com/vnc.html
+ 25. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 26. http://www.karlrunge.com/x11vnc/index.html#downloading
+ 27. http://www.tightvnc.com/download.html
+ 28. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 29. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 30. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 31. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 32. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
+ 33. http://www.sun.com/software/solaris/freeware/
+ 34. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 35. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 36. http://www.karlrunge.com/x11vnc/index.html#faq-service
+ 37. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 38. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
+ 39. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 40. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
+ 41. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 42. http://www.karlrunge.com/x11vnc/index.html#tightvnc_via
+ 43. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 44. http://www.karlrunge.com/x11vnc/chainingssh.html
+ 45. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 46. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 47. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 48. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 49. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 50. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 51. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 52. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 53. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
+ 54. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 55. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 56. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
+ 57. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 58. http://www.stunnel.org/
+ 59. http://stunnel.mirt.net/
+ 60. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 61. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 62. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 63. http://sourceforge.net/projects/libvncserver/
+ 64. http://sourceforge.net/project/showfiles.php?group_id=32584&package_id=119006&release_id=463226
+ 65. http://sourceforge.net/project/shownotes.php?release_id=463226&group_id=32584
+ 66. http://www.karlrunge.com/x11vnc/x11vnc-0.8.4.tar.gz
+ 67. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
+ 68. http://www.tightvnc.com/download.html
+ 69. http://www.realvnc.com/download-free.html
+ 70. http://sourceforge.net/projects/cotvnc/
+ 71. http://www.ultravnc.com/
+ 72. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 73. http://www.karlrunge.com/x11vnc/rx11vnc
+ 74. http://www.karlrunge.com/x11vnc/rx11vnc.pl
+ 75. http://www.sunfreeware.com/
+ 76. http://www.karlrunge.com/x11vnc/bins
+ 77. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 78. http://www.karlrunge.com/x11vnc/miscbuild.html
+ 79. ftp://ftp.uu.net/graphics/jpeg/
+ 80. http://www.gzip.org/zlib/
+ 81. http://www.sunfreeware.com/
+ 82. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
+ 83. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 84. http://www.karlrunge.com/x11vnc/x11vnc-0.8.4.tar.gz
+ 85. http://www.karlrunge.com/x11vnc/bins
+ 86. mailto:x11vnc-beta@karlrunge.com
+ 87. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 88. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 89. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 90. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 91. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
+ 92. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 93. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 94. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 95. http://www.openssl.org/
+ 96. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 97. http://www.stunnel.org/
+ 98. http://stunnel.mirt.net/
+ 99. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
+ 100. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCert
+ 101. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCA
+ 102. http://www.karlrunge.com/x11vnc/ssl.html
+ 103. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 104. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 105. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 106. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 107. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
+ 108. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 109. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 110. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 111. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 112. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 113. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 114. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 115. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
116. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 117. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-v,
- 118. http://www.karlrunge.com/x11vnc/prevrels.html
- 119. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 120. http://www.tightvnc.com/
- 121. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 122. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
- 123. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 124. http://www.karlrunge.com/x11vnc/recurse_x11vnc.jpg
- 125. http://wwws.sun.com/sunray/index.html
- 126. http://www.karlrunge.com/x11vnc/sunray.html
- 127. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 128. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 129. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 130. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 131. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 132. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 133. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 134. mailto:xvml@karlrunge.com
- 135. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
- 136. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 137. http://www.karlrunge.com/x11vnc/index.html#faq-build
- 138. http://www.karlrunge.com/x11vnc/index.html#faq-missing-xtest
- 139. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
- 140. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
- 141. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
- 142. http://www.karlrunge.com/x11vnc/index.html#faq-cmdline-opts
- 143. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
- 144. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
- 145. http://www.karlrunge.com/x11vnc/index.html#faq-change-port
- 146. http://www.karlrunge.com/x11vnc/index.html#faq-quiet-bg
- 147. http://www.karlrunge.com/x11vnc/index.html#faq-sigpipe
- 148. http://www.karlrunge.com/x11vnc/index.html#faq-build-customizations
- 149. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
- 150. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc-8bpp
- 151. http://www.karlrunge.com/x11vnc/index.html#faq-macosx-nofb
- 152. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
- 153. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
- 154. http://www.karlrunge.com/x11vnc/index.html#faq-windowid
- 155. http://www.karlrunge.com/x11vnc/index.html#faq-transients-id
- 156. http://www.karlrunge.com/x11vnc/index.html#faq-24bpp
- 157. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 158. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
- 159. http://www.karlrunge.com/x11vnc/index.html#faq-sunrays
- 160. http://www.karlrunge.com/x11vnc/index.html#faq-stop-bg
- 161. http://www.karlrunge.com/x11vnc/index.html#faq-remote_control
- 162. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 163. http://www.karlrunge.com/x11vnc/index.html#faq-passwd-noecho
- 164. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 165. http://www.karlrunge.com/x11vnc/index.html#faq-multipasswd
- 166. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
- 167. http://www.karlrunge.com/x11vnc/index.html#faq-custom-passwords
- 168. http://www.karlrunge.com/x11vnc/index.html#faq-forever-shared
- 169. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
- 170. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 171. http://www.karlrunge.com/x11vnc/index.html#faq-listen-interface
- 172. http://www.karlrunge.com/x11vnc/index.html#faq-listen-localhost
- 173. http://www.karlrunge.com/x11vnc/index.html#faq-input-opt
- 174. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 175. http://www.karlrunge.com/x11vnc/index.html#faq-users-opt
- 176. http://www.karlrunge.com/x11vnc/index.html#faq-blockdpy
- 177. http://www.karlrunge.com/x11vnc/index.html#faq-gone-lock
- 178. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-unix
- 179. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-putty
- 180. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 181. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 182. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 183. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
- 184. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 185. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-ca
- 186. http://www.karlrunge.com/x11vnc/index.html#faq-service
- 187. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 188. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 189. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 190. http://www.karlrunge.com/x11vnc/index.html#faq-loop
- 191. http://www.karlrunge.com/x11vnc/index.html#faq-java-http
- 192. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
- 193. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 194. http://www.karlrunge.com/x11vnc/index.html#faq-headless
- 195. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
- 196. http://www.karlrunge.com/x11vnc/index.html#faq-less-resource
- 197. http://www.karlrunge.com/x11vnc/index.html#faq-more-resource
- 198. http://www.karlrunge.com/x11vnc/index.html#faq-slow-link
- 199. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage
- 200. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage-opengl
- 201. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
- 202. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 203. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
- 204. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 205. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-shape
- 206. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha
- 207. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 208. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-arrow
- 209. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-positions
- 210. http://www.karlrunge.com/x11vnc/index.html#faq-buttonmap-opt
- 211. http://www.karlrunge.com/x11vnc/index.html#faq-altgr
- 212. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 213. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless-sloppy
- 214. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 215. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys
- 216. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys-still
- 217. http://www.karlrunge.com/x11vnc/index.html#faq-remap-opt
- 218. http://www.karlrunge.com/x11vnc/index.html#faq-sun-alt-meta
- 219. http://www.karlrunge.com/x11vnc/index.html#faq-remap-button-click
- 220. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
- 221. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
- 222. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
- 223. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
- 224. http://www.karlrunge.com/x11vnc/index.html#faq-multi-screen
- 225. http://www.karlrunge.com/x11vnc/index.html#faq-clip-screen
- 226. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
- 227. http://www.karlrunge.com/x11vnc/index.html#faq-rotate
- 228. http://www.karlrunge.com/x11vnc/index.html#faq-black-screen
- 229. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 230. http://www.karlrunge.com/x11vnc/index.html#faq-hidden-taskbars
- 231. http://www.karlrunge.com/x11vnc/index.html#faq-kde-screensaver
- 232. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
- 233. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 234. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 235. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 236. http://www.karlrunge.com/x11vnc/index.html#faq-no-x11
- 237. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 238. http://www.karlrunge.com/x11vnc/index.html#faq-clipboard
- 239. http://www.karlrunge.com/x11vnc/index.html#faq-record-swf
- 240. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
- 241. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
- 242. http://www.karlrunge.com/x11vnc/index.html#faq-cups
- 243. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 244. http://www.karlrunge.com/x11vnc/index.html#faq-beeps
- 245. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
- 246. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
- 247. http://www.tldp.org/HOWTO/Remote-X-Apps.html
- 248. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 249. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 250. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 251. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 252. http://www.karlrunge.com/x11vnc/x11vnc_sunos4.html
- 253. http://www.karlrunge.com/x11vnc/index.html#building
- 254. http://www.karlrunge.com/x11vnc/index.html#faq-build
- 255. http://packages.debian.org/x11vnc
- 256. http://www.linuxpackages.net/search_view.php?by=name&name=x11vnc
- 257. http://dag.wieers.com/packages/x11vnc/
- 258. http://dries.ulyssis.org/rpm/packages/x11vnc/info.html
- 259. http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=Network/x11vnc/
- 260. http://www.sunfreeware.com/
- 261. http://www.freebsd.org/cgi/ports.cgi?query=x11vnc&stype=all
- 262. http://www.freshports.org/net/x11vnc
- 263. http://www.openbsd.org/3.9_packages/i386/x11vnc-0.6.2.tgz-long.html
- 264. http://pkgsrc.se/x11/x11vnc
- 265. http://mike.saunby.net/770/x11vnc/
- 266. http://www.pdaxrom.org/ipk_feed.php?menuid=11&showfeed=unstable#x11vnc
- 267. http://www.focv.com/ipkg/
- 268. http://www.karlrunge.com/x11vnc/bins
- 269. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 270. http://www.tightvnc.com/download.html
- 271. http://www.realvnc.com/download-free.html
- 272. http://sourceforge.net/projects/cotvnc/
- 273. http://www.ultravnc.com/
- 274. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 275. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
- 276. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 277. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
- 278. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
- 279. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 280. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-o
- 281. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 282. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofb
- 283. http://fredrik.hubbe.net/x2vnc.html
- 284. http://www.hubbe.net/~hubbe/win2vnc.html
- 285. http://www.deboer.gmxhome.de/
- 286. http://sourceforge.net/projects/win2vnc/
+ 117. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
+ 118. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
+ 119. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
+ 120. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 121. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-v,
+ 122. http://www.karlrunge.com/x11vnc/prevrels.html
+ 123. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 124. http://www.tightvnc.com/
+ 125. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 126. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
+ 127. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 128. http://www.karlrunge.com/x11vnc/recurse_x11vnc.jpg
+ 129. http://wwws.sun.com/sunray/index.html
+ 130. http://www.karlrunge.com/x11vnc/sunray.html
+ 131. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 132. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 133. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 134. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 135. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 136. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 137. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 138. mailto:xvml@karlrunge.com
+ 139. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 140. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 141. http://www.karlrunge.com/x11vnc/index.html#faq-build
+ 142. http://www.karlrunge.com/x11vnc/index.html#faq-missing-xtest
+ 143. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
+ 144. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
+ 145. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
+ 146. http://www.karlrunge.com/x11vnc/index.html#faq-cmdline-opts
+ 147. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
+ 148. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
+ 149. http://www.karlrunge.com/x11vnc/index.html#faq-change-port
+ 150. http://www.karlrunge.com/x11vnc/index.html#faq-quiet-bg
+ 151. http://www.karlrunge.com/x11vnc/index.html#faq-sigpipe
+ 152. http://www.karlrunge.com/x11vnc/index.html#faq-build-customizations
+ 153. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
+ 154. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc-8bpp
+ 155. http://www.karlrunge.com/x11vnc/index.html#faq-macosx-nofb
+ 156. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
+ 157. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 158. http://www.karlrunge.com/x11vnc/index.html#faq-windowid
+ 159. http://www.karlrunge.com/x11vnc/index.html#faq-transients-id
+ 160. http://www.karlrunge.com/x11vnc/index.html#faq-24bpp
+ 161. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 162. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
+ 163. http://www.karlrunge.com/x11vnc/index.html#faq-sunrays
+ 164. http://www.karlrunge.com/x11vnc/index.html#faq-stop-bg
+ 165. http://www.karlrunge.com/x11vnc/index.html#faq-remote_control
+ 166. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 167. http://www.karlrunge.com/x11vnc/index.html#faq-passwd-noecho
+ 168. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 169. http://www.karlrunge.com/x11vnc/index.html#faq-multipasswd
+ 170. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
+ 171. http://www.karlrunge.com/x11vnc/index.html#faq-custom-passwords
+ 172. http://www.karlrunge.com/x11vnc/index.html#faq-forever-shared
+ 173. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
+ 174. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 175. http://www.karlrunge.com/x11vnc/index.html#faq-listen-interface
+ 176. http://www.karlrunge.com/x11vnc/index.html#faq-listen-localhost
+ 177. http://www.karlrunge.com/x11vnc/index.html#faq-input-opt
+ 178. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 179. http://www.karlrunge.com/x11vnc/index.html#faq-users-opt
+ 180. http://www.karlrunge.com/x11vnc/index.html#faq-blockdpy
+ 181. http://www.karlrunge.com/x11vnc/index.html#faq-gone-lock
+ 182. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-unix
+ 183. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-putty
+ 184. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 185. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 186. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 187. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
+ 188. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 189. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-ca
+ 190. http://www.karlrunge.com/x11vnc/index.html#faq-service
+ 191. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 192. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 193. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 194. http://www.karlrunge.com/x11vnc/index.html#faq-loop
+ 195. http://www.karlrunge.com/x11vnc/index.html#faq-java-http
+ 196. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
+ 197. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 198. http://www.karlrunge.com/x11vnc/index.html#faq-headless
+ 199. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
+ 200. http://www.karlrunge.com/x11vnc/index.html#faq-less-resource
+ 201. http://www.karlrunge.com/x11vnc/index.html#faq-more-resource
+ 202. http://www.karlrunge.com/x11vnc/index.html#faq-slow-link
+ 203. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage
+ 204. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage-opengl
+ 205. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
+ 206. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 207. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
+ 208. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 209. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-shape
+ 210. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha
+ 211. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 212. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-arrow
+ 213. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-positions
+ 214. http://www.karlrunge.com/x11vnc/index.html#faq-buttonmap-opt
+ 215. http://www.karlrunge.com/x11vnc/index.html#faq-altgr
+ 216. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 217. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless-sloppy
+ 218. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 219. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys
+ 220. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys-still
+ 221. http://www.karlrunge.com/x11vnc/index.html#faq-remap-opt
+ 222. http://www.karlrunge.com/x11vnc/index.html#faq-sun-alt-meta
+ 223. http://www.karlrunge.com/x11vnc/index.html#faq-remap-button-click
+ 224. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
+ 225. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
+ 226. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
+ 227. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
+ 228. http://www.karlrunge.com/x11vnc/index.html#faq-multi-screen
+ 229. http://www.karlrunge.com/x11vnc/index.html#faq-clip-screen
+ 230. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
+ 231. http://www.karlrunge.com/x11vnc/index.html#faq-rotate
+ 232. http://www.karlrunge.com/x11vnc/index.html#faq-black-screen
+ 233. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 234. http://www.karlrunge.com/x11vnc/index.html#faq-hidden-taskbars
+ 235. http://www.karlrunge.com/x11vnc/index.html#faq-kde-screensaver
+ 236. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 237. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 238. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 239. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 240. http://www.karlrunge.com/x11vnc/index.html#faq-no-x11
+ 241. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 242. http://www.karlrunge.com/x11vnc/index.html#faq-clipboard
+ 243. http://www.karlrunge.com/x11vnc/index.html#faq-record-swf
+ 244. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
+ 245. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
+ 246. http://www.karlrunge.com/x11vnc/index.html#faq-cups
+ 247. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 248. http://www.karlrunge.com/x11vnc/index.html#faq-beeps
+ 249. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 250. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
+ 251. http://www.tldp.org/HOWTO/Remote-X-Apps.html
+ 252. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 253. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 254. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 255. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 256. http://www.karlrunge.com/x11vnc/x11vnc_sunos4.html
+ 257. http://www.karlrunge.com/x11vnc/index.html#building
+ 258. http://www.karlrunge.com/x11vnc/index.html#faq-build
+ 259. http://packages.debian.org/x11vnc
+ 260. http://www.linuxpackages.net/search_view.php?by=name&name=x11vnc
+ 261. http://dag.wieers.com/packages/x11vnc/
+ 262. http://dries.ulyssis.org/rpm/packages/x11vnc/info.html
+ 263. http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=Network/x11vnc/
+ 264. http://www.sunfreeware.com/
+ 265. http://www.freebsd.org/cgi/ports.cgi?query=x11vnc&stype=all
+ 266. http://www.freshports.org/net/x11vnc
+ 267. http://www.openbsd.org/3.9_packages/i386/x11vnc-0.6.2.tgz-long.html
+ 268. http://pkgsrc.se/x11/x11vnc
+ 269. http://mike.saunby.googlepages.com/
+ 270. http://www.pdaxrom.org/ipk_feed.php?menuid=11&showfeed=unstable#x11vnc
+ 271. http://www.focv.com/ipkg/
+ 272. http://www.karlrunge.com/x11vnc/bins
+ 273. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 274. http://www.tightvnc.com/download.html
+ 275. http://www.realvnc.com/download-free.html
+ 276. http://sourceforge.net/projects/cotvnc/
+ 277. http://www.ultravnc.com/
+ 278. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 279. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
+ 280. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 281. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
+ 282. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
+ 283. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 284. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-o
+ 285. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 286. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofb
287. http://fredrik.hubbe.net/x2vnc.html
- 288. http://freshmeat.net/projects/x2x/
- 289. http://ftp.digital.com/pub/Digital/SRC/x2x/
- 290. http://zapek.com/software/zvnc/
- 291. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-visual
- 292. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 293. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
- 294. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 295. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-notruecolor
- 296. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
- 297. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 288. http://www.hubbe.net/~hubbe/win2vnc.html
+ 289. http://www.deboer.gmxhome.de/
+ 290. http://sourceforge.net/projects/win2vnc/
+ 291. http://fredrik.hubbe.net/x2vnc.html
+ 292. http://freshmeat.net/projects/x2x/
+ 293. http://ftp.digital.com/pub/Digital/SRC/x2x/
+ 294. http://zapek.com/software/zvnc/
+ 295. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-visual
+ 296. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 297. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
298. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 299. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 300. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 301. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
- 302. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 303. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 304. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 305. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 306. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 307. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 299. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-notruecolor
+ 300. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
+ 301. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 302. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 303. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 304. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 305. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
+ 306. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 307. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
308. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 309. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sid
- 310. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
- 311. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
- 312. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 313. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flipbyteorder
- 314. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 315. http://www.karlrunge.com/x11vnc/index.html#xauth_pain
- 316. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 317. http://wwws.sun.com/sunray/index.html
- 318. http://www.karlrunge.com/x11vnc/sunray.html
- 319. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 320. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
- 321. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 322. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 323. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
- 324. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_keys
- 325. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 326. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
- 327. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 328. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-storepasswd
- 329. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 330. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 331. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
- 332. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewpasswd
- 333. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwd
- 334. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 335. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 336. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 337. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 338. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
- 339. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 340. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 341. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 342. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 309. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 310. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 311. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 312. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 313. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sid
+ 314. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
+ 315. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
+ 316. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 317. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flipbyteorder
+ 318. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 319. http://www.karlrunge.com/x11vnc/index.html#xauth_pain
+ 320. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 321. http://wwws.sun.com/sunray/index.html
+ 322. http://www.karlrunge.com/x11vnc/sunray.html
+ 323. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 324. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
+ 325. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 326. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 327. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
+ 328. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_keys
+ 329. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 330. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
+ 331. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 332. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-storepasswd
+ 333. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 334. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 335. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
+ 336. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewpasswd
+ 337. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwd
+ 338. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 339. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 340. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 341. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 342. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
343. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 344. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 345. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel
- 346. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 347. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 348. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 349. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 350. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 351. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 352. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 344. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 345. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 346. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 347. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 348. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 349. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel
+ 350. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 351. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 352. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
353. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
354. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 355. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 356. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 357. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 358. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-shared
- 359. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 360. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 361. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 362. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 363. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 364. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 365. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 366. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 367. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listen
- 368. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 369. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 370. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 371. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 372. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
- 373. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 374. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewonly
- 375. ftp://ftp.x.org/
- 376. http://www.karlrunge.com/x11vnc/dtVncPopup
- 377. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 378. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
- 379. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 380. http://www.karlrunge.com/x11vnc/blockdpy.c
- 381. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 382. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 383. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 384. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
- 385. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 386. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 387. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 388. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 389. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 390. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 391. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 392. http://www.karlrunge.com/x11vnc/index.html#gateway_double_ssh
- 393. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 394. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 395. http://www.stunnel.org/
- 396. http://stunnel.mirt.net/
- 397. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 398. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 399. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
- 400. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 401. http://www.stunnel.org/
- 402. http://www.karlrunge.com/x11vnc/ssl.html
- 403. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 404. http://www.karlrunge.com/x11vnc/ssl.html
- 405. http://www.securityfocus.com/infocus/1677
+ 355. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 356. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 357. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 358. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 359. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 360. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 361. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 362. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-shared
+ 363. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 364. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 365. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 366. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 367. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 368. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 369. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 370. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 371. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listen
+ 372. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 373. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 374. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 375. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 376. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
+ 377. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 378. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewonly
+ 379. ftp://ftp.x.org/
+ 380. http://www.karlrunge.com/x11vnc/dtVncPopup
+ 381. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 382. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
+ 383. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 384. http://www.karlrunge.com/x11vnc/blockdpy.c
+ 385. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 386. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 387. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 388. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
+ 389. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 390. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 391. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 392. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 393. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 394. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 395. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 396. http://www.karlrunge.com/x11vnc/index.html#gateway_double_ssh
+ 397. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 398. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 399. http://www.stunnel.org/
+ 400. http://stunnel.mirt.net/
+ 401. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 402. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 403. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
+ 404. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 405. http://www.stunnel.org/
406. http://www.karlrunge.com/x11vnc/ssl.html
- 407. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
- 408. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 409. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 410. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 411. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 412. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 413. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 414. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 415. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 416. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 417. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 407. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 408. http://www.karlrunge.com/x11vnc/ssl.html
+ 409. http://www.securityfocus.com/infocus/1677
+ 410. http://www.karlrunge.com/x11vnc/ssl.html
+ 411. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
+ 412. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 413. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 414. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 415. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 416. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 417. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
418. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 419. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 420. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 421. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 422. http://www.openssl.org/
+ 419. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 420. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 421. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 422. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
423. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 424. http://www.stunnel.org/
- 425. http://www.karlrunge.com/x11vnc/ssl.html
- 426. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 427. http://www.karlrunge.com/x11vnc/ssl.html
- 428. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 429. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 430. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 431. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 432. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 433. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 434. http://www.karlrunge.com/x11vnc/ssl-output.html
- 435. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 436. http://www.karlrunge.com/x11vnc/ss_vncviewer
- 437. http://www.karlrunge.com/x11vnc/ssl-portal.html
- 438. http://www.karlrunge.com/x11vnc/ssl.html
- 439. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 440. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 441. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 442. http://www.karlrunge.com/x11vnc/ssl-portal.html
- 443. http://www.karlrunge.com/x11vnc/ssl.html
- 444. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
- 445. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 446. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 447. http://www.karlrunge.com/x11vnc/index.html#x11vnc_loop
- 448. http://club.mandriva.com/xwiki/bin/view/KB/XwinXset
- 449. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 450. http://www.karlrunge.com/x11vnc/index.html#dtlogin_solaris
- 451. http://www.jirka.org/gdm-documentation/x241.html
- 452. http://www.karlrunge.com/x11vnc/x11vnc_loop
- 453. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 454. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
- 455. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
- 456. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
- 457. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 458. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 459. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 460. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 461. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 462. http://www.karlrunge.com/x11vnc/index.html#stunnel-inetd
- 463. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 424. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 425. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 426. http://www.openssl.org/
+ 427. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 428. http://www.stunnel.org/
+ 429. http://www.karlrunge.com/x11vnc/ssl.html
+ 430. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 431. http://www.karlrunge.com/x11vnc/ssl.html
+ 432. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 433. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 434. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 435. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 436. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 437. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 438. http://www.karlrunge.com/x11vnc/ssl-output.html
+ 439. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 440. http://www.karlrunge.com/x11vnc/ss_vncviewer
+ 441. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 442. http://www.karlrunge.com/x11vnc/ssl.html
+ 443. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 444. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 445. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 446. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 447. http://www.karlrunge.com/x11vnc/ssl.html
+ 448. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 449. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 450. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 451. http://www.karlrunge.com/x11vnc/index.html#x11vnc_loop
+ 452. http://club.mandriva.com/xwiki/bin/view/KB/XwinXset
+ 453. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 454. http://www.karlrunge.com/x11vnc/index.html#dtlogin_solaris
+ 455. http://www.jirka.org/gdm-documentation/x241.html
+ 456. http://www.karlrunge.com/x11vnc/x11vnc_loop
+ 457. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 458. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
+ 459. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
+ 460. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
+ 461. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 462. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 463. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
464. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 465. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
- 466. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 467. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 468. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 469. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 470. http://www.karlrunge.com/x11vnc/faq-linuxvc
- 471. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 472. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 473. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 474. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 475. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 476. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-vncconnect
- 477. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 478. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 479. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 480. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 481. http://www.karlrunge.com/x11vnc/Xdummy
- 482. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
- 483. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 484. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 485. http://www.karlrunge.com/x11vnc/shm_clear
- 486. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 487. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 488. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 489. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nap
- 490. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 491. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sb
- 492. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 493. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
- 494. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
- 495. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 496. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 497. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 498. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 499. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 500. http://www.tightvnc.com/
- 501. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 465. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 466. http://www.karlrunge.com/x11vnc/index.html#stunnel-inetd
+ 467. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 468. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 469. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
+ 470. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 471. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 472. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 473. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 474. http://www.karlrunge.com/x11vnc/faq-linuxvc
+ 475. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 476. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 477. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 478. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 479. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 480. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-vncconnect
+ 481. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 482. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 483. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 484. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 485. http://www.karlrunge.com/x11vnc/Xdummy
+ 486. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 487. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 488. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 489. http://www.karlrunge.com/x11vnc/shm_clear
+ 490. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 491. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 492. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 493. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nap
+ 494. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 495. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sb
+ 496. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 497. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
+ 498. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
+ 499. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 500. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 501. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
502. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 503. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 504. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-speeds
- 505. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 506. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
- 507. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 508. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 509. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-progressive
- 510. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 511. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
- 512. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
- 513. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
- 514. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-readtimeout
- 515. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 516. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 517. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_area
- 518. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_mem
- 519. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 520. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 521. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 522. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 523. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 524. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 525. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 526. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
- 527. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 528. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
- 529. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
- 530. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 531. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 532. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 533. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 503. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 504. http://www.tightvnc.com/
+ 505. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 506. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 507. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 508. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-speeds
+ 509. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 510. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
+ 511. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 512. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 513. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-progressive
+ 514. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 515. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
+ 516. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
+ 517. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
+ 518. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-readtimeout
+ 519. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 520. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 521. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_area
+ 522. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_mem
+ 523. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 524. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 525. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 526. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 527. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 528. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 529. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 530. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
+ 531. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 532. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
+ 533. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
534. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 535. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 535. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
536. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 537. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wirecopyrect
- 538. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 539. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 540. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scr_skip
- 541. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
- 542. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 543. http://www.karlrunge.com/x11vnc/index.html#beta-test
- 544. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
- 545. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 546. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 547. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 548. http://www.karlrunge.com/x11vnc/index.html#the-overlay-mode
- 549. http://www.karlrunge.com/x11vnc/index.html#solaris10-build
- 550. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 551. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphacut
- 552. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphafrac
- 553. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alpharemove
- 554. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
- 555. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noalphablend
- 556. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 557. http://www.tightvnc.com/
- 558. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
- 559. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursorpos
- 560. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
- 561. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
- 562. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
- 563. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_pointer
- 564. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
- 565. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 566. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 567. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 568. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
- 569. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 570. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
- 571. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 572. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 573. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 574. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 575. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
- 576. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 577. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 578. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
- 579. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 580. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 537. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 538. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 539. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 540. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 541. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wirecopyrect
+ 542. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 543. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 544. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scr_skip
+ 545. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
+ 546. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 547. http://www.karlrunge.com/x11vnc/index.html#beta-test
+ 548. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
+ 549. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 550. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 551. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 552. http://www.karlrunge.com/x11vnc/index.html#the-overlay-mode
+ 553. http://www.karlrunge.com/x11vnc/index.html#solaris10-build
+ 554. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 555. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphacut
+ 556. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphafrac
+ 557. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alpharemove
+ 558. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
+ 559. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noalphablend
+ 560. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 561. http://www.tightvnc.com/
+ 562. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
+ 563. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursorpos
+ 564. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
+ 565. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
+ 566. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
+ 567. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_pointer
+ 568. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
+ 569. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 570. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 571. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 572. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
+ 573. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 574. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
+ 575. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 576. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 577. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 578. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 579. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
+ 580. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
581. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 582. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_keycodes
- 583. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 584. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 585. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 586. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 587. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 588. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
- 589. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
- 590. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 591. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 592. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 593. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 594. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 595. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
+ 582. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
+ 583. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 584. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 585. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 586. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_keycodes
+ 587. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 588. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 589. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 590. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 591. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 592. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
+ 593. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
+ 594. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 595. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
596. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 597. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
- 598. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
- 599. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
- 600. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
- 601. http://www.cus.cam.ac.uk/~ssb22/source/vnc-magnification.html
- 602. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 603. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 604. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 605. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale_cursor
- 606. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-blackout
- 607. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
- 608. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
- 609. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 610. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
- 611. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 612. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 613. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clip
- 614. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
- 615. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 616. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 617. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xrandr
- 618. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-padgeom
- 619. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 620. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
- 621. http://www.jwz.org/xscreensaver/man1.html
- 622. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
- 623. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 624. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 625. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 626. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 627. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 628. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 629. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 630. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
- 631. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 632. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 633. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 634. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 635. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 636. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 637. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 638. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 639. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
- 640. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 641. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 642. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
- 643. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
- 644. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 645. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-slow_fb
- 646. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 647. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-freqtab
- 648. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 649. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 650. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 651. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 652. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 653. http://www.redstonesoftware.com/vnc.html
- 654. http://www.apple.com/remotedesktop/
- 655. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 656. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 657. http://fredrik.hubbe.net/x2vnc.html
- 658. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
- 659. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
- 660. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noprimary
- 661. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-seldir
- 662. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
- 663. http://www.unixuser.org/~euske/vnc2swf/
- 664. http://wolphination.com/linux/2006/06/30/how-to-record-videos-of-your-desktop/
- 665. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofilexfer
- 666. http://www.samba.org/
- 667. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 668. http://www.cups.org/
- 669. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 670. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
- 671. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nobell
- 672. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 597. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 598. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 599. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
+ 600. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 601. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
+ 602. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
+ 603. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
+ 604. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
+ 605. http://www.cus.cam.ac.uk/~ssb22/source/vnc-magnification.html
+ 606. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 607. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 608. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 609. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale_cursor
+ 610. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-blackout
+ 611. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
+ 612. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
+ 613. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 614. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
+ 615. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 616. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 617. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clip
+ 618. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
+ 619. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 620. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 621. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xrandr
+ 622. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-padgeom
+ 623. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 624. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
+ 625. http://www.jwz.org/xscreensaver/man1.html
+ 626. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
+ 627. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 628. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 629. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 630. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 631. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 632. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 633. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 634. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
+ 635. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 636. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 637. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 638. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 639. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 640. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 641. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 642. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 643. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 644. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 645. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 646. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
+ 647. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
+ 648. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 649. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-slow_fb
+ 650. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 651. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-freqtab
+ 652. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 653. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 654. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 655. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 656. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 657. http://www.redstonesoftware.com/vnc.html
+ 658. http://www.apple.com/remotedesktop/
+ 659. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 660. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 661. http://fredrik.hubbe.net/x2vnc.html
+ 662. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
+ 663. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
+ 664. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noprimary
+ 665. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-seldir
+ 666. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
+ 667. http://www.unixuser.org/~euske/vnc2swf/
+ 668. http://wolphination.com/linux/2006/06/30/how-to-record-videos-of-your-desktop/
+ 669. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofilexfer
+ 670. http://www.samba.org/
+ 671. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 672. http://www.cups.org/
+ 673. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 674. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html
+ 675. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nobell
+ 676. http://www.karlrunge.com/x11vnc/index.html#faq-sound
=======================================================================
http://www.karlrunge.com/x11vnc/chainingssh.html:
@@ -9262,7 +9272,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.4 lastmod: 2007-01-01
+x11vnc: allow VNC connections to real X11 displays. 0.8.4 lastmod: 2007-01-03
x11vnc options:
-display disp -auth file -id windowid
@@ -9369,7 +9379,7 @@ libvncserver-tight-extension options:
% x11vnc -help
-x11vnc: allow VNC connections to real X11 displays. 0.8.4 lastmod: 2007-01-01
+x11vnc: allow VNC connections to real X11 displays. 0.8.4 lastmod: 2007-01-03
(type "x11vnc -opts" to just list the options.)
diff --git a/x11vnc/userinput.c b/x11vnc/userinput.c
index 57a302a..7ee7db3 100644
--- a/x11vnc/userinput.c
+++ b/x11vnc/userinput.c
@@ -1970,6 +1970,7 @@ void batch_copyregion(sraRegionPtr* region, int *dx, int *dy, int ncr, double de
rfbClientIteratorPtr i;
rfbClientPtr cl;
int k, direct, mode, nrects = 0, bad = 0;
+ double start = dnow();
/* XXX Y */
@@ -2039,13 +2040,15 @@ void batch_copyregion(sraRegionPtr* region, int *dx, int *dy, int ncr, double de
}
rfbReleaseClientIterator(i);
-fprintf(stderr, "batch_copyregion: nrects: %d nregions: %d\n", nrects, ncr);
+fprintf(stderr, "batch_copyregion: nrects: %d nregions: %d dt=%.4f\n", nrects, ncr, dnow() - start);
}
void batch_push(int nreg, double delay) {
int k;
batch_copyregion(batch_reg, batch_dxs, batch_dys, nreg, delay);
+ /* XXX Y */
+ fb_push();
for (k=0; k < nreg; k++) {
sraRgnDestroy(batch_reg[k]);
}
@@ -4157,6 +4160,8 @@ void snap_old(void);
int check_copyrect_raise(int idx, Window orig_frame, int try_batch) {
char *no = "none";
int doraise = 1;
+ int valid;
+ XWindowAttributes attr;
if (! ncache_wf_raises) {
doraise = 0;
@@ -4177,7 +4182,8 @@ fprintf(stderr, "--YES, wf_raise\n");
if (try_batch) {
nb = &nr;
}
- bs_restore(idx, nb, 0, 1, 1, 1);
+ valid = 1;
+ bs_restore(idx, nb, &attr, 0, 1, &valid, 1);
try_to_fix_su(orig_frame, idx, 0x1, nb, NULL);
if (nb && nr) {
batch_push(nr, -1.0);
@@ -5906,6 +5912,7 @@ int lookup_old_stack_index(int ic) {
}
#define STORE(k, w, attr) \
+ if (0) fprintf(stderr, "STORE(%d) = 0x%x\n", k, w); \
cache_list[k].win = w; \
cache_list[k].fetched = 1; \
cache_list[k].valid = 1; \
@@ -5917,6 +5924,7 @@ int lookup_old_stack_index(int ic) {
cache_list[k].time = dnow();
#define CLEAR(k) \
+ if (0) fprintf(stderr, "CLEAR(%d)\n", k); \
cache_list[k].bs_x = -1; \
cache_list[k].bs_y = -1; \
cache_list[k].bs_w = -1; \
@@ -5930,6 +5938,7 @@ int lookup_old_stack_index(int ic) {
cache_list[k].su_time = 0.0;
#define DELETE(k) \
+ if (0) fprintf(stderr, "DELETE(%d) = 0x%x\n", k, cache_list[k].win); \
cache_list[k].win = None; \
cache_list[k].fetched = 0; \
cache_list[k].valid = 0; \
@@ -6878,9 +6887,8 @@ void clip_region(sraRegionPtr r, Window win) {
}
}
-int bs_save(int idx, int *nbatch, int clip, int only_if_tracking, int verb) {
+int bs_save(int idx, int *nbatch, XWindowAttributes *attr, int clip, int only_if_tracking, int *valid, int verb) {
Window win = cache_list[idx].win;
- XWindowAttributes attr;
int x1, y1, w1, h1;
int x2, y2, w2, h2;
int x, y, w, h;
@@ -6892,27 +6900,33 @@ int bs_save(int idx, int *nbatch, int clip, int only_if_tracking, int verb) {
w1 = cache_list[idx].width;
h1 = cache_list[idx].height;
- if (only_if_tracking && cache_list[idx].bs_x < 0) {
- return;
- }
-
if (verb) fprintf(stderr, "backingstore save: 0x%x %3d clip=%d\n", (unsigned int) win, idx, clip);
X_LOCK;
- if (! valid_wr(idx, win, &attr)) {
+ if (*valid) {
+ attr->x = x1;
+ attr->y = y1;
+ attr->width = w1;
+ attr->height = h1;
+ } else if (! valid_wr(idx, win, attr)) {
fprintf(stderr, "bs_save: not a valid X window: 0x%x\n", (unsigned int) win);
-/* XXX Y */
-/* DELETE(idx); */
X_UNLOCK;
+ *valid = 0;
cache_list[idx].valid = 0;
return 0;
+ } else {
+ *valid = 1;
}
X_UNLOCK;
- x2 = attr.x;
- y2 = attr.y;
- w2 = attr.width;
- h2 = attr.height;
+ if (only_if_tracking && cache_list[idx].bs_x < 0) {
+ return 0;
+ }
+
+ x2 = attr->x;
+ y2 = attr->y;
+ w2 = attr->width;
+ h2 = attr->height;
if (cache_list[idx].bs_x < 0) {
rc = find_rect(idx, x2, y2, w2, h2);
@@ -6927,7 +6941,9 @@ fprintf(stderr, "bs_save: not a valid X window: 0x%x\n", (unsigned int) win);
h = cache_list[idx].bs_h;
if (x < 0 || ! rc) {
- STORE(idx, win, attr);
+// if (!novalidate) {
+// STORE(idx, win, attr);
+// }
fprintf(stderr, "BS_save: FAIL FOR: %d\n", idx);
return 0;
}
@@ -6968,15 +6984,16 @@ if (verb) fprintf(stderr, "BS_save: %.4f %.2f %d done. %dx%d+%d+%d %dx%d+%d+%d
sraRgnDestroy(r0);
sraRgnDestroy(r);
- STORE(idx, win, attr);
+// if (!novalidate) {
+// STORE(idx, win, attr);
+// }
cache_list[idx].bs_time = dnow();
return 1;
}
-int su_save(int idx, int *nbatch, int clip, int verb) {
+int su_save(int idx, int *nbatch, XWindowAttributes *attr, int clip, int *valid, int verb) {
Window win = cache_list[idx].win;
- XWindowAttributes attr;
int x1, y1, w1, h1;
int x2, y2, w2, h2;
int x, y, w, h;
@@ -6991,20 +7008,26 @@ if (verb) fprintf(stderr, "save-unders save: 0x%x %3d \n", (unsigned int
h1 = cache_list[idx].height;
X_LOCK;
- if (! valid_wr(idx, win, &attr)) {
+ if (*valid) {
+ attr->x = x1;
+ attr->y = y1;
+ attr->width = w1;
+ attr->height = h1;
+ } else if (! valid_wr(idx, win, attr)) {
fprintf(stderr, "su_save: not a valid X window: 0x%x\n", (unsigned int) win);
-/* XXX Y */
-/* DELETE(idx); */
X_UNLOCK;
+ *valid = 0;
cache_list[idx].valid = 0;
return 0;
+ } else {
+ *valid = 1;
}
X_UNLOCK;
- x2 = attr.x;
- y2 = attr.y;
- w2 = attr.width;
- h2 = attr.height;
+ x2 = attr->x;
+ y2 = attr->y;
+ w2 = attr->width;
+ h2 = attr->height;
if (cache_list[idx].bs_x < 0) {
rc = find_rect(idx, x2, y2, w2, h2);
@@ -7018,7 +7041,9 @@ fprintf(stderr, "su_save: not a valid X window: 0x%x\n", (unsigned int) win);
h = cache_list[idx].su_h;
if (x < 0 || ! rc) {
- STORE(idx, win, attr);
+// if (!novalidate) {
+// STORE(idx, win, attr);
+// }
fprintf(stderr, "SU_save: FAIL FOR: %d\n", idx);
return 0;
}
@@ -7059,15 +7084,16 @@ if (verb) fprintf(stderr, "SU_save: %.4f %.2f %d done. %dx%d+%d+%d %dx%d+%d+%d
sraRgnDestroy(r0);
sraRgnDestroy(r);
- STORE(idx, win, attr);
+// if (!novalidate) {
+// STORE(idx, win, attr);
+// }
cache_list[idx].su_time = dnow();
return 1;
}
-int bs_restore(int idx, int *nbatch, int clip, int nopad, int novalidate, int verb) {
+int bs_restore(int idx, int *nbatch, XWindowAttributes *attr, int clip, int nopad, int *valid, int verb) {
Window win = cache_list[idx].win;
- XWindowAttributes attr;
int x1, y1, w1, h1;
int x2, y2, w2, h2;
int x, y, w, h;
@@ -7082,23 +7108,25 @@ if (verb) fprintf(stderr, "backingstore restore: 0x%x %3d \n", (unsigned int
h1 = cache_list[idx].height;
X_LOCK;
- if (novalidate) {
- attr.x = x1;
- attr.y = y1;
- attr.width = w1;
- attr.height = h1;
- } else if (! valid_wr(idx, win, &attr)) {
+ if (*valid) {
+ attr->x = x1;
+ attr->y = y1;
+ attr->width = w1;
+ attr->height = h1;
+ } else if (! valid_wr(idx, win, attr)) {
fprintf(stderr, "BS_restore: not a valid X window: 0x%x\n", (unsigned int) win);
- DELETE(idx);
+ *valid = 0;
X_UNLOCK;
return 0;
+ } else {
+ *valid = 1;
}
X_UNLOCK;
- x2 = attr.x;
- y2 = attr.y;
- w2 = attr.width;
- h2 = attr.height;
+ x2 = attr->x;
+ y2 = attr->y;
+ w2 = attr->width;
+ h2 = attr->height;
x = cache_list[idx].bs_x;
y = cache_list[idx].bs_y;
@@ -7106,9 +7134,9 @@ fprintf(stderr, "BS_restore: not a valid X window: 0x%x\n", (unsigned int) win);
h = cache_list[idx].bs_h;
if (x < 0 || cache_list[idx].bs_time == 0.0) {
- if (!novalidate) {
- STORE(idx, win, attr);
- }
+// if (!novalidate) {
+// STORE(idx, win, attr);
+// }
return 0;
}
@@ -7162,22 +7190,20 @@ if (verb) fprintf(stderr, "BS_rest: %.4f %.2f %d done. %dx%d+%d+%d %dx%d+%d+%d
sraRgnDestroy(r0);
sraRgnDestroy(r);
- if (!novalidate) {
- STORE(idx, win, attr);
- }
+// if (!novalidate) {
+// STORE(idx, win, attr);
+// }
return 1;
}
-int su_restore(int idx, int *nbatch, int clip, int nopad, int verb) {
+int su_restore(int idx, int *nbatch, XWindowAttributes *attr, int clip, int nopad, int *valid, int verb) {
Window win = cache_list[idx].win;
- XWindowAttributes attr;
int x1, y1, w1, h1;
int x2, y2, w2, h2;
int x, y, w, h;
int dx, dy;
sraRegionPtr r, r0;
- int invalid = 0;
if (verb) fprintf(stderr, "save-unders restore: 0x%x %3d \n", (unsigned int) win, idx);
@@ -7187,18 +7213,24 @@ if (verb) fprintf(stderr, "save-unders restore: 0x%x %3d \n", (unsigned int
h1 = cache_list[idx].height;
X_LOCK;
- if (! valid_wr(idx, win, &attr)) {
+ if (*valid) {
+ attr->x = x1;
+ attr->y = y1;
+ attr->width = w1;
+ attr->height = h1;
+ } else if (! valid_wr(idx, win, attr)) {
fprintf(stderr, "SU_restore: not a valid X window: 0x%x\n", (unsigned int) win);
- invalid = 1;
+ *valid = 0;
x2 = x1;
y2 = y1;
w2 = w1;
h2 = h1;
} else {
- x2 = attr.x;
- y2 = attr.y;
- w2 = attr.width;
- h2 = attr.height;
+ x2 = attr->x;
+ y2 = attr->y;
+ w2 = attr->width;
+ h2 = attr->height;
+ *valid = 1;
}
X_UNLOCK;
@@ -7209,9 +7241,9 @@ fprintf(stderr, "SU_restore: not a valid X window: 0x%x\n", (unsigned int) win);
if (x < 0 || cache_list[idx].bs_x < 0 || cache_list[idx].su_time == 0.0) {
fprintf(stderr, "SU_rest: su_x/bs_x/su_time: %d %d %.3f\n", x, cache_list[idx].bs_x, cache_list[idx].su_time);
- if (invalid) {
- DELETE(idx);
- }
+// if (invalid) {
+// DELETE(idx);
+// }
return 0;
}
@@ -7265,11 +7297,11 @@ if (verb) fprintf(stderr, "SU_rest: %.4f %.2f %d done. %dx%d+%d+%d %dx%d+%d+%d
sraRgnDestroy(r0);
sraRgnDestroy(r);
- if (invalid) {
- DELETE(idx);
- } else {
- STORE(idx, win, attr);
- }
+// if (invalid) {
+// DELETE(idx);
+// } else if (!novalidate) {
+// STORE(idx, win, attr);
+// }
return 1;
}
@@ -7357,10 +7389,10 @@ void block_stats(void) {
double t2 = cache_list[k].bs_time;
if (t1 > 0.0) {t1 = dnow() - t1;} else {t1 = -1.0;}
if (t2 > 0.0) {t2 = dnow() - t2;} else {t2 = -1.0;}
- fprintf(stderr, " [%02d] %04d 0x%08x bs: %04dx%04d+%04d+%05d vw: %04dx%04d+%04d+%04d cl: %04dx%04d+%04d+%04d map=%d su=%9.3f bs=%9.3f\n",
+ fprintf(stderr, " [%02d] %04d 0x%08x bs: %04dx%04d+%04d+%05d vw: %04dx%04d+%04d+%04d cl: %04dx%04d+%04d+%04d map=%d su=%9.3f bs=%9.3f cnt=%d/%d\n",
n, k, (unsigned int) win, w, h, x, y, attr.width, attr.height, attr.x, attr.y,
cache_list[k].width, cache_list[k].height, cache_list[k].x, cache_list[k].y,
- attr.map_state == IsViewable, t1, t2);
+ attr.map_state == IsViewable, t1, t2, cache_list[k].create_cnt, cache_list[k].map_cnt);
}
}
frac = area /(dpy_x * dpy_y);
@@ -7638,13 +7670,13 @@ int try_to_fix_su(Window win, int idx, Window above, int *nbatch, char *mode) {
int unmapped = 0;
int moved = 0;
-fprintf(stderr, "TRY_TO_FIX_SU(%d) 0x%x 0x%x unmapped=%d\n", idx, win, above, unmapped);
if (mode && !strcmp(mode, "unmapped")) {
unmapped = 1;
} else if (mode && !strcmp(mode, "moved")) {
moved = 1;
}
+fprintf(stderr, "TRY_TO_FIX_SU(%d) 0x%x 0x%x unmapped=%d\n", idx, win, above, unmapped);
if (idx < 0) {
return 0;
@@ -7851,25 +7883,176 @@ sraRegionPtr idx_create_rgn(sraRegionPtr r0, int idx) {
return rtmp;
}
+#define EVLISTMAX 256
+#define EV_RESET 0
+#define EV_CREATE 1
+#define EV_DESTROY 2
+#define EV_UNMAP 3
+#define EV_MAP 4
+#define EV_REPARENT 5
+#define EV_CONFIGURE 6
+#define EV_VISIBILITY_UNOBS 7
+#define EV_VISIBILITY_OBS 8
+#define EV_PROPERTY 9
+Window _ev_list[EVLISTMAX];
+int _ev_case[EVLISTMAX];
+int _ev_list_cnt;
+
+int n_CN = 0, n_RN = 0, n_DN = 0, n_ON = 0, n_MN = 0, n_UN = 0;
+int n_VN = 0, n_VN_p = 0, n_VN_u = 0, n_ST = 0, n_PN = 0;
+
+int ev_store(Window win, int type) {
+ if (type == EV_RESET) {
+ n_CN = 0; n_RN = 0; n_DN = 0; n_ON = 0; n_MN = 0; n_UN = 0;
+ n_VN = 0; n_VN_p = 0; n_VN_u = 0; n_ST = 0; n_PN = 0;
+ _ev_list_cnt = 0;
+ return 1;
+ }
+ if (_ev_list_cnt >= EVLISTMAX) {
+ return 0;
+ }
+ _ev_list[_ev_list_cnt] = win;
+ _ev_case[_ev_list_cnt++] = type;
+}
+
+int ev_lookup(Window win, int type) {
+ int i;
+ for(i=0; i < _ev_list_cnt; i++) {
+ if (_ev_list[i] == win && _ev_case[i] == type) {
+ return 1;
+ }
+ }
+ return 0;
+}
+
+unsigned long all_ev = SubstructureNotifyMask|StructureNotifyMask|VisibilityChangeMask;
+unsigned long win_ev = StructureNotifyMask|VisibilityChangeMask;
+
+void read_events(int *n_in) {
+ int n = *n_in;
+ Window win, win2;
+ XEvent ev;
+
+ while (xcheckmaskevent(dpy, all_ev, &Ev[n])) {
+ int type = Ev[n].type;
+ Window w = None;
+ win = Ev[n].xany.window;
+ Ev_done[n] = 0;
+ Ev_area[n] = 0;
+ Ev_win[n] = win;
+ Ev_map[n] = None;
+ Ev_unmap[n] = None;
+ Ev_order[n] = n;
+
+ ev = Ev[n];
+
+if (type == DestroyNotify) w = Ev[n].xcreatewindow.window;
+if (type == CreateNotify) w = Ev[n].xdestroywindow.window;
+if (type == ReparentNotify) w = Ev[n].xreparent.window;
+if (type == UnmapNotify) w = Ev[n].xunmap.window;
+if (type == MapNotify) w = Ev[n].xmap.window;
+if (type == Expose) w = Ev[n].xexpose.window;
+if (type == ConfigureNotify) w = Ev[n].xconfigure.window;
+if (n == *n_in) fprintf(stderr, "\n");
+fprintf(stderr, "----- %d inputev 0x%08x w: 0x%08x %s\n", n, win, w, Etype(type));
+
+ if (win == rootwin) {
+ if (type == CreateNotify) {
+ win2 = ev.xcreatewindow.window;
+ ev_store(win2, EV_CREATE);
+ n++;
+ n_CN++;
+ } else if (type == ReparentNotify) {
+ if (ev.xreparent.parent != rootwin) {
+ win2 = ev.xreparent.window;
+ if (win2 != rootwin) {
+ ev_store(win2, EV_REPARENT);
+ }
+ }
+ n++;
+ n_RN++;
+ } else if (type == PropertyNotify) {
+ set_prop_atom(Ev[n].xproperty.atom);
+ n++;
+ n_PN++;
+ } else if (type == MapNotify) {
+ win2 = ev.xmap.window;
+ ev_store(win2, EV_MAP);
+ n++;
+ n_CN++;
+ } else {
+ /* skip rest */
+#if 0
+ Window w = None;
+if (type == DestroyNotify) w = Ev[n].xdestroywindow.window;
+if (type == UnmapNotify) w = Ev[n].xunmap.window;
+if (type == MapNotify) w = Ev[n].xmap.window;
+if (type == Expose) w = Ev[n].xexpose.window;
+if (type == ConfigureNotify) w = Ev[n].xconfigure.window;
+if (type != ConfigureNotify) fprintf(stderr, "root: skip %s for 0x%x\n", Etype(type), (unsigned int) w);
+#endif
+
+ }
+ } else {
+ if (type == ReparentNotify) {
+ ev_store(win, EV_REPARENT);
+ n++;
+ n_RN++;
+ } else if (type == DestroyNotify) {
+ ev_store(win, EV_DESTROY);
+ n++;
+ n_DN++;
+ } else if (type == ConfigureNotify) {
+ ev_store(win, EV_CONFIGURE);
+ n++;
+ n_ON++;
+ } else if (type == VisibilityNotify) {
+ if (Ev[n].xvisibility.state == VisibilityUnobscured) {
+ ev_store(win, EV_VISIBILITY_UNOBS);
+ n_VN_u++;
+ } else {
+ ev_store(win, EV_VISIBILITY_OBS);
+ n_VN_p++;
+ }
+ n++;
+ n_VN++;
+ } else if (type == MapNotify) {
+ ev_store(win, EV_MAP);
+ Ev_map[n] = win;
+ n++;
+ n_MN++;
+ } else if (type == UnmapNotify) {
+ ev_store(win, EV_UNMAP);
+ Ev_unmap[n] = win;
+ n++;
+ n_UN++;
+ } else {
+ /* skip rest */
+fprintf(stderr, "----- skip %s\n", Etype(type));
+ }
+ }
+ if (n >= EVMAX) {
+ break;
+ }
+ }
+ *n_in = n;
+}
+
int check_ncache(int reset, int mode) {
static double last_root = 0.0;
static int first = 1;
static int last_client_count = -1;
int i, k, n;
- int n_CN = 0, n_RN = 0, n_DN = 0, n_ON = 0, n_MN = 0, n_UN = 0;
- int n_VN = 0, n_VN_p = 0, n_VN_u = 0, n_ST = 0, n_PN = 0;
int did_sched = 0;
double now, refresh = 60.0;
Window win, win2;
XWindowAttributes attr;
- unsigned long all_ev = SubstructureNotifyMask|StructureNotifyMask|VisibilityChangeMask;
- unsigned long win_ev = StructureNotifyMask|VisibilityChangeMask;
-
+ int valid;
int try_batch = 1; /* XXX Y */
int use_batch = 0;
int nreg = 0, *nbatch;
- int create_cnt, create_tot;
+ int create_cnt;
int pixels = 0, ttot;
int desktop_change = 0, n1, n2;
static int saw_desktop_change = 0;
@@ -7880,10 +8063,12 @@ int check_ncache(int reset, int mode) {
sraRegionPtr missed_bs_restore_rgn;
int nrects = 0;
+ int nsave, nxsel;
+ int did_vis_snap = 0;
int skipwins_n = 0;
- int skipwins_max = 16;
- Window skipwins[16];
+ int skipwins_max = 256;
+ Window skipwins[256];
if (unixpw_in_progress) return -1;
@@ -7995,7 +8180,7 @@ if (c) fprintf(stderr, "check_ncache purged %d events\n", c);
"This is the Pixel buffer cache region. Your VNC Viewer is not hiding it from you.",
white_pixel());
rfbDrawString(screen, &default8x16Font, dx, ds + Dy+2*dy,
- "Try resizing your VNC Viewer so you don't see it !!",
+ "Try resizing your VNC Viewer so you don't see it!! Pay no attention to the man behind the curtain...",
white_pixel());
rfbDrawString(screen, &default8x16Font, dx, ds + Dy+3*dy,
"To disable run the server with: x11vnc -ncache 0 ...",
@@ -8045,13 +8230,13 @@ fprintf(stderr, "\n**** checking cache_list[%d]\n\n", cache_list_num);
block_stats();
for(k=0; k<cache_list_num; k++) {
- int valid = 0;
+ valid = 0;
win = cache_list[k].win;
X_LOCK;
if (win == None) {
;
} else if (cache_list[k].selectinput && cache_list[k].time > now - refresh) {
- ;
+ valid = 1;
} else if (valid_window(win, &attr, 1)) {
STORE(k, win, attr);
if (! cache_list[k].selectinput) {
@@ -8069,7 +8254,7 @@ fprintf(stderr, "DELETE(%d) %dx%d+%d+%d\n", k, cache_list[k].width, cache_list[k
X_UNLOCK;
/* XXX Y */
if (valid) {
- if (cache_list[k].create_cnt && attr.map_state != IsViewable && cache_list[k].map_cnt == 0) {
+ if (cache_list[k].create_cnt && cache_list[k].map_state != IsViewable && cache_list[k].map_cnt == 0) {
if (cache_list[k].bs_x >= 0) {
fprintf(stderr, "Created window never mapped: freeing(%d) 0x%x\n", k, (unsigned int) win);
free_rect(k);
@@ -8129,9 +8314,17 @@ fprintf(stderr, "Created window never mapped: freeing(%d) 0x%x\n", k, (unsigned
} else if (aw * ah < 64 * 64) {
;
} else {
-//fprintf(stderr, "*SNAP BS_save: 0x%x %d %d %d\n", (unsigned int) win, aw, ah, cache_list[idx].map_state);
- bs_save(idx, bat, 1, 0, 0);
+fprintf(stderr, "*SNAP BS_save: 0x%x %d %d %d\n", (unsigned int) win, aw, ah, cache_list[idx].map_state);
+ valid = 0;
+ bs_save(idx, bat, &attr, 1, 0, &valid, 0);
+ if (valid) {
+ STORE(idx, win, attr);
+ } else {
+ DELETE(idx);
+ }
}
+ } else {
+fprintf(stderr, "*SCHED LOOKUP FAIL: i=%d 0x%x\n", i, win);
}
}
sched_bs[i] = None;
@@ -8139,12 +8332,21 @@ fprintf(stderr, "Created window never mapped: freeing(%d) 0x%x\n", k, (unsigned
did_sched = 1;
if (now > last_sched_vis + 3.0 && now > last_wireframe + 2.0) {
+ static double last_vis = 0.0;
+ int vis_now[32], top_now[32];
+ static int vis_prev[32];
+ int diff, nv = 32, vis_now_n = 0;
+ Window win;
+
+ did_vis_snap = 1;
for (i=0; i < cache_list_num; i++) {
- Window win = cache_list[i].win;
int ok = 0;
int top_only = 1;
int aw = cache_list[i].width;
int ah = cache_list[i].height;
+ int map_prev = cache_list[i].map_state;
+
+ win = cache_list[i].win;
if (saw_desktop_change) {
top_only = 0;
@@ -8163,6 +8365,10 @@ fprintf(stderr, "Created window never mapped: freeing(%d) 0x%x\n", k, (unsigned
if (cache_list[i].map_state != IsViewable) {
continue;
}
+ if (map_prev != IsViewable) {
+ /* we hope to catch it below in the normal event processing */
+ continue;
+ }
if (aw * ah < 64 * 64) {
continue;
}
@@ -8176,8 +8382,33 @@ fprintf(stderr, "Created window never mapped: freeing(%d) 0x%x\n", k, (unsigned
ok = 1;
}
if (ok) {
- bs_save(i, bat, !top_only, 0, 0);
+ if (vis_now_n < nv) {
+ vis_now[vis_now_n] = i;
+ top_now[vis_now_n++] = top_only;
+ }
+ }
+ }
+ diff = 0;
+ for (k = 0; k < vis_now_n; k++) {
+ if (vis_now[k] != vis_prev[k]) {
+ diff = 1;
+ }
+ }
+ if (diff || now > last_vis + 45.0) {
+ for (k = 0; k < vis_now_n; k++) {
+ i = vis_now[k];
+ win = cache_list[i].win;
+ valid = 0;
+fprintf(stderr, "*VIS BS_save: 0x%x %d %d %d\n", win, cache_list[i].width, cache_list[i].height, cache_list[i].map_state);
+ bs_save(i, bat, &attr, !top_now[k], 0, &valid, 0);
+ if (valid) {
+ STORE(i, win, attr);
+ } else {
+ DELETE(i);
+ }
+ vis_prev[k] = vis_now[k];
}
+ last_vis = dnow();
}
last_sched_vis = dnow();
saw_desktop_change = 0;
@@ -8191,78 +8422,74 @@ fprintf(stderr, "Created window never mapped: freeing(%d) 0x%x\n", k, (unsigned
n = 0;
ttot = 0;
- create_tot = 0;
+
+ ev_store(None, EV_RESET);
+
X_LOCK;
- while (xcheckmaskevent(dpy, all_ev, &Ev[n])) {
- int type = Ev[n].type;
- win = Ev[n].xany.window;
- Ev_done[n] = 0;
- Ev_area[n] = 0;
- Ev_win[n] = win;
- Ev_map[n] = None;
- Ev_unmap[n] = None;
- Ev_order[n] = n;
+ for (k = 1; k <= 3; k++) {
-//fprintf(stderr, "----- %d/%d inputev 0x%x %s\n", n, ttot++, win, Etype(type));
+ nsave = n;
- if (win == rootwin) {
- if (type == CreateNotify) {
- create_tot++;
- n++;
- n_CN++;
- } else if (type == ReparentNotify) {
- n++;
- n_RN++;
- } else if (type == PropertyNotify) {
- set_prop_atom(Ev[n].xproperty.atom);
- n++;
- n_PN++;
- } else {
- /* skip rest */
-#if 0
- Window w = None;
-if (type == DestroyNotify) w = Ev[n].xdestroywindow.window;
-if (type == UnmapNotify) w = Ev[n].xunmap.window;
-if (type == MapNotify) w = Ev[n].xmap.window;
-if (type == Expose) w = Ev[n].xexpose.window;
-if (type == ConfigureNotify) w = Ev[n].xconfigure.window;
-if (type != ConfigureNotify) fprintf(stderr, "root: skip %s for 0x%x\n", Etype(type), (unsigned int) w);
-#endif
+ if (k > 1) fprintf(stderr, "read_events-%d\n", k);
+ read_events(&n);
- }
- } else {
- if (type == ReparentNotify) {
- n++;
- n_RN++;
- } else if (type == DestroyNotify) {
- n++;
- n_DN++;
- } else if (type == ConfigureNotify) {
- n++;
- n_ON++;
- } else if (type == VisibilityNotify) {
- if (Ev[n].xvisibility.state == VisibilityUnobscured) {
- n_VN_u++;
+ nxsel = 0;
+
+ /* handle creates and reparenting: */
+ for (n1 = nsave; n1 < n; n1++) {
+ Window win2;
+ int idx;
+ XEvent ev = Ev[n1];
+ win = Ev_win[n1];
+ if (ev.type == CreateNotify) {
+ win2 = ev.xcreatewindow.window;
+ if (ev_lookup(win2, EV_REPARENT) || ev_lookup(win2, EV_DESTROY)) {
+ if (skipwins_n < skipwins_max) {
+fprintf(stderr, "SKIPWINS: CreateNotify: 0x%x %d\n", win2, n1);
+ skipwins[skipwins_n++] = win2;
+ }
} else {
- n_VN_p++;
+ idx = lookup_win_index(win);
+ if (idx < 0) {
+ idx = lookup_free_index();
+ if (idx < 0) {
+ continue;
+ }
+ CLEAR(idx);
+ }
+fprintf(stderr, "PRELOOP: CreateNotify: 0x%x %d valid_window\n", win2, n1);
+ if (valid_window(win2, &attr, 1)) {
+ STORE(idx, win2, attr);
+ CLEAR(idx);
+ cache_list[idx].selectinput = 1;
+ cache_list[idx].create_cnt = 1;
+fprintf(stderr, "PRELOOP: CreateNotify: 0x%x %d xselectinput\n", win2, n1);
+ xselectinput(win2, win_ev, 1);
+ nxsel++;
+ } else {
+ DELETE(idx);
+ }
+ nxsel++;
+ }
+ } else if (ev.type == ReparentNotify) {
+ if (ev.xreparent.parent != rootwin) {
+ win2 = ev.xreparent.window;
+ if (win2 != rootwin) {
+ idx = lookup_win_index(win2);
+fprintf(stderr, "PRELOOP: RepartNotify: 0x%x %d idx=%d\n", win2, n1, idx);
+ if (idx >= 0) {
+ DELETE(idx);
+ }
+ if (! ev_lookup(win2, EV_CREATE)) {
+ xselectinput(win2, 0, 1);
+ nxsel++;
+ }
+ }
}
- n++;
- n_VN++;
- } else if (type == MapNotify) {
- Ev_map[n] = win;
- n++;
- n_MN++;
- } else if (type == UnmapNotify) {
- Ev_unmap[n] = win;
- n++;
- n_UN++;
- } else {
- /* skip rest */
-fprintf(stderr, "----- skip %s\n", Etype(type));
}
}
- if (n >= EVMAX) {
+ if (nxsel == 0) {
break;
}
}
@@ -8281,7 +8508,8 @@ fprintf(stderr, "----- skip %s\n", Etype(type));
if (n == 0) {
return 0;
}
-fprintf(stderr, "\n"); rfbLog("IN check_ncache() %d events.\n", n);
+fprintf(stderr, "\n"); rfbLog("IN check_ncache() %d events. %.4f\n", n, now - x11vnc_start);
+if (did_vis_snap) fprintf(stderr, "VIS snapshot all %.4f\n", dnowx());
if (try_batch) {
use_batch = 1;
@@ -8310,6 +8538,7 @@ fprintf(stderr, "\n"); rfbLog("IN check_ncache() %d events.\n", n);
for (n2 = 0; n2 < n; n2++) {
if (Ev_unmap[n2] == twin) {
if (skipwins_n < skipwins_max) {
+fprintf(stderr, "SKIPWINS: Ev_unmap/map: 0x%x %d\n", twin, n2);
skipwins[skipwins_n++] = twin;
break;
}
@@ -8435,6 +8664,10 @@ fprintf(stderr, "\n"); rfbLog("IN check_ncache() %d events.\n", n);
missed_bs_restore_rgn = sraRgnCreate();
r0 = sraRgnCreateRect(0, 0, dpy_x, dpy_y);
+for (k = 0; k < skipwins_n; k++) {
+ fprintf(stderr, "skipwins[%d] 0x%x\n", k, skipwins[k]);
+}
+
X_LOCK;
for (i=0; i < n; i++) {
XEvent ev;
@@ -8448,57 +8681,50 @@ fprintf(stderr, "\n"); rfbLog("IN check_ncache() %d events.\n", n);
type = ev.type;
Ev_done[ik] = 1;
+ win2 = win;
+ if (win == rootwin) {
+ if (type == CreateNotify) {
+ win2 = ev.xcreatewindow.window;
+ } else if (type == ReparentNotify) {
+ win2 = ev.xreparent.window;
+ }
+ }
for (ns = 0; ns < skipwins_n; ns++) {
- if (win == skipwins[ns]) {
+ if (win2 == skipwins[ns]) {
skip = 1;
break;
}
}
if (skip) {
-fprintf(stderr, "skip%02d: ** SpecialSkip 0x%x type: %s\n", ik, (unsigned int) win, Etype(type));
+fprintf(stderr, "skip%02d: ** SpecialSkip 0x%x/0x%x type: %s\n", ik, (unsigned int) win, (unsigned int) win2, Etype(type));
continue;
}
if (win == rootwin) {
if (type == CreateNotify) {
int x=0, y=0, w=0, h=0;
- int valid = 0;
+ valid = 0;
win2 = ev.xcreatewindow.window;
idx = lookup_win_index(win2);
if (idx < 0) {
- idx = lookup_free_index();
- if (idx < 0) {
- continue;
- }
- CLEAR(idx);
+ continue;
}
- if (valid_window(win2, &attr, 1)) {
- STORE(idx, win2, attr);
- CLEAR(idx);
- x=attr.x;
- y=attr.y;
- w=attr.width;
- h=attr.height;
- if (create_tot <= 6 && create_cnt++ < 3) {
- if (w*h > 64 * 64) {
- X_UNLOCK;
- su_save(idx, nbatch, 0, 1);
- X_LOCK;
- if (cache_list[idx].valid) {
- if (! desktop_change) {
- SCHED(win2, 1)
- }
- }
- create_cnt++;
- }
- }
- if (cache_list[idx].valid) {
- xselectinput(win2, win_ev, 1);
- cache_list[idx].selectinput = 1;
- cache_list[idx].create_cnt = 1;
+ if (cache_list[idx].valid) {
+ valid = 1;
+ x=cache_list[idx].x;
+ y=cache_list[idx].y;
+ w=cache_list[idx].width;
+ h=cache_list[idx].height;
+ if (w*h > 64 * 64 && ev_lookup(win2, EV_MAP)) {
+ X_UNLOCK;
valid = 1;
- } else {
- DELETE(idx);
+ su_save(idx, nbatch, &attr, 0, &valid, 1);
+ STORE(idx, win2, attr);
+ X_LOCK;
+ if (! desktop_change) {
+ SCHED(win2, 1)
+ }
+ create_cnt++;
}
}
fprintf(stderr, "root%02d: ** CreateNotify 0x%x %3d -- %dx%d+%d+%d valid=%d\n", ik, (unsigned int) win2, idx, w, h, x, y, valid);
@@ -8506,14 +8732,8 @@ fprintf(stderr, "root%02d: ** CreateNotify 0x%x %3d -- %dx%d+%d+%d valid=%d\n
} else if (type == ReparentNotify) {
if (ev.xreparent.parent != rootwin) {
win2 = ev.xreparent.window;
- if (win2 != rootwin) {
- idx = lookup_win_index(win2);
+ idx = lookup_win_index(win2);
fprintf(stderr, "root%02d: ReparentNotifyRM 0x%x %3d\n", ik, (unsigned int) win2, idx);
- if (idx >= 0) {
- DELETE(idx);
- }
- xselectinput(win2, 0, 1);
- }
}
} else {
fprintf(stderr, "root%02d: ** IgnoringRoot 0x%x type: %s\n", ik, (unsigned int) win, Etype(type));
@@ -8542,6 +8762,7 @@ fprintf(stderr, "----%02d: ConfigureNotify 0x%x %3d -- above: 0x%x -> 0x%x %
y_new = ev.xconfigure.y;
w_new = ev.xconfigure.width;
h_new = ev.xconfigure.height;
+
x_old = cache_list[idx].x;
y_old = cache_list[idx].y;
w_old = cache_list[idx].width;
@@ -8557,6 +8778,7 @@ fprintf(stderr, " INVALIDATE su: 0x%x xy: %d/%d %d/%d \n", (unsigned i
cache_list[idx].bs_time = 0.0;
fprintf(stderr, " INVALIDATE bs: 0x%x wh: %d/%d %d/%d \n", (unsigned int) win, w_old, h_old, w_new, h_new);
}
+
stack_change = 0;
if (cache_list[idx].above != ev.xconfigure.above) {
stack_change = 1;
@@ -8581,6 +8803,7 @@ fprintf(stderr, " INVALIDATE bs: 0x%x wh: %d/%d %d/%d \n", (unsigned i
cache_list[idx].y = y_new;
cache_list[idx].width = w_new;
cache_list[idx].height = h_new;
+
cache_list[idx].above = ev.xconfigure.above;
cache_list[idx].time = dnow();
@@ -8598,28 +8821,35 @@ fprintf(stderr, "----%02d: VisibilityNotify 0x%x %3d state: %s U/P %d/%d\n", i
; /* XXXX not working well yet with UnmapNotify ... */
} else if (state == VisibilityUnobscured) {
int i2, ok = 1;
- for (i2=0; i2 < n; i2++) {
- if (Ev_map[i2] == win) {
- ok = 0;
- break;
- }
- }
if (ncache <= 2) {
ok = 0;
+ } else if (ev_lookup(win, EV_MAP)) {
+ ok = 0;
+ } else if (ev_lookup(win, EV_UNMAP)) {
+ ok = 0;
+ } else if (ev_lookup(win, EV_DESTROY)) {
+ ok = 0;
}
if (ok) {
X_UNLOCK;
- bs_restore(idx, nbatch, 0, 1, 0, 1);
+ valid = 0;
+ bs_restore(idx, nbatch, &attr, 0, 1, &valid, 1);
X_LOCK;
- cache_list[idx].time = dnow();
- cache_list[idx].vis_cnt++;
- Ev_map[ik] = win;
- Ev_rects[nrects].x1 = cache_list[idx].x;
- Ev_rects[nrects].y1 = cache_list[idx].y;
- Ev_rects[nrects].x2 = cache_list[idx].width;
- Ev_rects[nrects].y2 = cache_list[idx].height;
- nrects++;
- SCHED(win, 1)
+ if (valid) {
+ STORE(idx, win, attr);
+
+ cache_list[idx].time = dnow();
+ cache_list[idx].vis_cnt++;
+ Ev_map[ik] = win;
+ Ev_rects[nrects].x1 = cache_list[idx].x;
+ Ev_rects[nrects].y1 = cache_list[idx].y;
+ Ev_rects[nrects].x2 = cache_list[idx].width;
+ Ev_rects[nrects].y2 = cache_list[idx].height;
+ nrects++;
+ SCHED(win, 1)
+ } else {
+ DELETE(idx);
+ }
}
}
cache_list[idx].vis_state = state;
@@ -8632,7 +8862,8 @@ fprintf(stderr, "----%02d: MapNotify 0x%x %3d\n", ik, (unsigned int) win
continue;
}
- if (cache_list[idx].map_state == IsUnmapped || desktop_change || macosx_console) {
+// if (cache_list[idx].map_state == IsUnmapped || desktop_change || macosx_console)
+ if (1) {
X_UNLOCK;
if (desktop_change) {
/* XXX Y */
@@ -8655,17 +8886,29 @@ fprintf(stderr, "----%02d: MapNotify 0x%x %3d\n", ik, (unsigned int) win
sraRgnDestroy(r);
}
if (save) {
- su_save(idx, nbatch, 1, 1);
+ valid = 0;
+ su_save(idx, nbatch, &attr, 1, &valid, 1);
+ if (valid) {
+ STORE(idx, win, attr);
+ }
}
} else {
- su_save(idx, nbatch, 0, 1);
+ valid = 0;
+ su_save(idx, nbatch, &attr, 0, &valid, 1);
+ if (valid) {
+ STORE(idx, win, attr);
+ }
}
- if (bs_restore(idx, nbatch, 0, 0, 0, 1)) { /* XXX clip? */
+ valid = 0;
+ if (bs_restore(idx, nbatch, &attr, 0, 0, &valid, 1)) { /* XXX clip? */
;
} else {
idx_add_rgn(missed_bs_restore_rgn, r0, idx);
missed_bs_restore++;
}
+ if (valid) {
+ STORE(idx, win, attr);
+ }
if (macosx_console) {
#ifdef MACOSX
@@ -8690,6 +8933,10 @@ fprintf(stderr, "----%02d: MapNotify 0x%x %3d\n", ik, (unsigned int) win
Ev_rects[nrects].x2 = cache_list[idx].width;
Ev_rects[nrects].y2 = cache_list[idx].height;
nrects++;
+
+ if (! valid) {
+ DELETE(idx);
+ }
}
cache_list[idx].map_state = IsViewable;
@@ -8706,7 +8953,8 @@ fprintf(stderr, "----%02d: UnmapNotify 0x%x %3d\n", ik, (unsigned int) win
}
}
- if (cache_list[idx].map_state == IsViewable || desktop_change || macosx_console) {
+// if (cache_list[idx].map_state == IsViewable || desktop_change || macosx_console)
+ if (1) {
X_UNLOCK;
if (desktop_change) {
int save = 1;
@@ -8728,13 +8976,21 @@ fprintf(stderr, "----%02d: UnmapNotify 0x%x %3d\n", ik, (unsigned int) win
sraRgnDestroy(r);
}
if (save) {
- bs_save(idx, nbatch, 1, 0, 1);
+ valid = 0;
+ bs_save(idx, nbatch, &attr, 1, 0, &valid, 1);
}
} else {
- bs_save(idx, nbatch, 1, 0, 1);
+ valid = 0;
+ bs_save(idx, nbatch, &attr, 1, 0, &valid, 1);
}
- if (su_restore(idx, nbatch, 1, 0, 1)) {
+ valid = 0;
+ if (su_restore(idx, nbatch, &attr, 1, 0, &valid, 1)) {
try_to_fix_su(win, idx, None, nbatch, "unmapped");
+ if (valid) {
+ STORE(idx, win, attr);
+ } else {
+ DELETE(idx);
+ }
} else {
idx_add_rgn(missed_su_restore_rgn, r0, idx);
missed_su_restore++;
@@ -8759,10 +9015,6 @@ fprintf(stderr, "----%02d: UnmapNotify 0x%x %3d\n", ik, (unsigned int) win
if (win2 != rootwin) {
idx = lookup_win_index(win2);
fprintf(stderr, "----%02d: ReparentNotifyRM 0x%x %3d\n", ik, (unsigned int) win2, idx);
- if (idx >= 0) {
- DELETE(idx);
- }
- xselectinput(win2, 0, 1);
}
}
@@ -8799,7 +9051,7 @@ fprintf(stderr, "igno%02d: ** Ignoring 0x%x type: %s\n", ik, (unsigned int)
sraRgnDestroy(missed_su_restore_rgn);
sraRgnDestroy(missed_bs_restore_rgn);
-rfbLog("OUT check_ncache(): %.6f events: %d pixels: %d\n", dnow() - now, n, pixels);
+rfbLog("OUT check_ncache(): %.4f %.6f events: %d pixels: %d\n", dnowx(), dnow() - now, n, pixels);
return pixels;
}
#endif
diff --git a/x11vnc/x11vnc.1 b/x11vnc/x11vnc.1
index a7ca7de..21df2e8 100644
--- a/x11vnc/x11vnc.1
+++ b/x11vnc/x11vnc.1
@@ -2,7 +2,7 @@
.TH X11VNC "1" "January 2007" "x11vnc " "User Commands"
.SH NAME
x11vnc - allow VNC connections to real X11 displays
- version: 0.8.4, lastmod: 2007-01-01
+ version: 0.8.4, lastmod: 2007-01-03
.SH SYNOPSIS
.B x11vnc
[OPTION]...
diff --git a/x11vnc/x11vnc.c b/x11vnc/x11vnc.c
index 6a44907..1ee2f57 100644
--- a/x11vnc/x11vnc.c
+++ b/x11vnc/x11vnc.c
@@ -1,7 +1,7 @@
/*
* x11vnc: a VNC server for X displays.
*
- * Copyright (c) 2002-2006 Karl J. Runge <runge@karlrunge.com>
+ * Copyright (c) 2002-2007 Karl J. Runge <runge@karlrunge.com>
* All rights reserved.
*
* This is free software; you can redistribute it and/or modify
diff --git a/x11vnc/x11vnc_defs.c b/x11vnc/x11vnc_defs.c
index 78ebe42..6600061 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.4 lastmod: 2007-01-01";
+char lastmod[] = "0.8.4 lastmod: 2007-01-03";
/* X display info */
diff --git a/x11vnc/xdamage.c b/x11vnc/xdamage.c
index 27e6613..2343a98 100644
--- a/x11vnc/xdamage.c
+++ b/x11vnc/xdamage.c
@@ -544,6 +544,8 @@ int xdamage_hint_skip(int y) {
static sraRegionPtr scanline = NULL;
sraRegionPtr reg, tmpl;
int ret, i, n, nreg;
+ static int ncache_no_skip = 0;
+ static double last_ncache_no_skip = 0.0;
if (! xdamage_present || ! use_xdamage) {
return 0; /* cannot skip */
@@ -557,9 +559,26 @@ int xdamage_hint_skip(int y) {
scanline = sraRgnCreate();
}
+ nreg = (xdamage_memory * NSCAN) + 1;
+
+ if (ncache > 0) {
+ if (ncache_no_skip == 0) {
+ if (dnow() > last_ncache_no_skip + 4.0) {
+ ncache_no_skip = 1;
+ last_ncache_no_skip = dnow();
+ return 0;
+ }
+ } else {
+ if (++ncache_no_skip >= 2*nreg) {
+ ncache_no_skip = 0;
+ } else {
+ return 0;
+ }
+ }
+ }
+
tmpl = sraRgnCreateRect(0, y, dpy_x, y+1);
- nreg = (xdamage_memory * NSCAN) + 1;
ret = 1;
for (i=0; i<nreg; i++) {
/* go back thru the history starting at most recent */