summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrunge <runge>2008-06-01 03:36:47 +0000
committerrunge <runge>2008-06-01 03:36:47 +0000
commit65b42bb85354cce814316a646a4a5ed6025a18e3 (patch)
tree7cac435d5e12f3e49c1e89d3987510afd66b5169
parent1983292eb0744ef708b0c01877713b59c42a2e13 (diff)
downloadlibtdevnc-65b42bb8.tar.gz
libtdevnc-65b42bb8.zip
x11vnc: support colormaps for depths other than 8. xinerama warppointer only if more than one subscreen.
-rw-r--r--x11vnc/8to24.c282
-rw-r--r--x11vnc/ChangeLog5
-rw-r--r--x11vnc/README3875
-rw-r--r--x11vnc/connections.c54
-rw-r--r--x11vnc/cursor.c4
-rw-r--r--x11vnc/help.c11
-rwxr-xr-xx11vnc/misc/Xdummy3
-rw-r--r--x11vnc/options.c2
-rw-r--r--x11vnc/options.h2
-rw-r--r--x11vnc/scan.c8
-rw-r--r--x11vnc/screen.c158
-rw-r--r--x11vnc/userinput.c34
-rw-r--r--x11vnc/x11vnc.115
-rw-r--r--x11vnc/x11vnc.c11
-rw-r--r--x11vnc/x11vnc_defs.c2
-rw-r--r--x11vnc/xinerama.c14
16 files changed, 2454 insertions, 2026 deletions
diff --git a/x11vnc/8to24.c b/x11vnc/8to24.c
index a524e65..c7bf0d1 100644
--- a/x11vnc/8to24.c
+++ b/x11vnc/8to24.c
@@ -59,10 +59,11 @@ enum mark_8bpp_modes {
MARK_8BPP_TOP
};
+
#define NCOLOR 256
static Colormap root_cmap = 0;
-static unsigned int root_rgb[NCOLOR];
+static unsigned int *root_rgb = NULL;
static void set_root_cmap(void) {
#if NO_X11
@@ -72,11 +73,25 @@ static void set_root_cmap(void) {
static time_t last_set = 0;
time_t now = time(NULL);
XWindowAttributes attr;
- static XColor color[NCOLOR];
+ static XColor *color = NULL;
int redo = 0;
+ int ncolor = 0;
RAWFB_RET_VOID
+ if (depth > 8) {
+ ncolor = 1 << depth;
+ } else {
+ ncolor = NCOLOR;
+ }
+
+ if (!root_rgb) {
+ root_rgb = (unsigned int *) malloc(ncolor * sizeof(unsigned int));
+ }
+ if (!color) {
+ color = (XColor *) malloc(ncolor * sizeof(XColor));
+ }
+
if (now > last_set + 10) {
redo = 1;
}
@@ -87,7 +102,11 @@ static void set_root_cmap(void) {
return;
}
if (attr.colormap) {
- int i, ncells = NCOLOR;
+ int i, ncells = ncolor;
+
+ if (depth < 8) {
+ ncells = CellsOfScreen(ScreenOfDisplay(dpy, scr));
+ }
for (i=0; i < ncells; i++) {
color[i].pixel = i;
color[i].pad = 0;
@@ -236,7 +255,11 @@ static void set_poll_fb(void) {
return; /* this saves a bit of RAM */
}
pfb(4, &poll24_fb, &poll24_fb_w, &poll24_fb_h);
- pfb(1, &poll8_fb, &poll8_fb_w, &poll8_fb_h);
+ if (depth > 8) {
+ pfb(2, &poll8_fb, &poll8_fb_w, &poll8_fb_h); /* 2X for rare 16bpp colormap case */
+ } else {
+ pfb(1, &poll8_fb, &poll8_fb_w, &poll8_fb_h);
+ }
}
int MV_glob = 0;
@@ -428,7 +451,7 @@ if (db24 > 2) fprintf(stderr, " check_for_multivis: %.4f\n", now - last_call);
if (check_depth(win, win, doall)) {
/*
* returns 1 if no need to recurse down e.g. It
- * is 8bpp and we assume all lower one are too.
+ * is 8bpp and we assume all lower ones are too.
*/
continue;
}
@@ -529,7 +552,7 @@ if (0) fprintf(stderr, "MV_count: %d hit: %d %.4f %10.2f\n", MV_count, MV_hit,
mark_8bpp(MARK_8BPP_ALL);
last_poll = now;
- } else if (depth == 8 && multivis_24count) {
+ } else if (depth <= 16 && multivis_24count) {
static double last_check = 0.0;
if (now > last_check + 0.4) {
last_check = now;
@@ -656,8 +679,7 @@ static int check_depth_win(Window win, Window top, XWindowAttributes *attr) {
if (attr->depth > 0) {
if (depth == 24 && attr->depth != 24) {
store_it = 1;
- } else if (depth == 8 && root_cmap && attr->colormap !=
- root_cmap) {
+ } else if (depth <= 16 && root_cmap && attr->colormap != root_cmap) {
store_it = 1;
}
}
@@ -759,6 +781,7 @@ if (db24 > 1) fprintf(stderr, " ------------ 0x%lx i=%d\n", windows_8bp
return 0;
}
+/* polling line XImage */
static XImage *p_xi(XImage *xi, Visual *visual, int win_depth, int *w) {
RAWFB_RET(NULL)
@@ -771,8 +794,12 @@ static XImage *p_xi(XImage *xi, Visual *visual, int win_depth, int *w) {
if (xi) {
XDestroyImage(xi);
}
- if (win_depth == 8) {
- d = (char *) malloc(dpy_x * 1);
+ if (win_depth != 24) {
+ if (win_depth > 8) {
+ d = (char *) malloc(dpy_x * 2);
+ } else {
+ d = (char *) malloc(dpy_x * 1);
+ }
} else {
d = (char *) malloc(dpy_x * 4);
}
@@ -837,14 +864,18 @@ static int poll_line(int x1, int x2, int y1, int n, sraRegionPtr mod) {
last_win = win;
}
- if (attr.depth != 8 && attr.depth != 24) {
+ if (attr.depth > 16 && attr.depth != 24) {
X_UNLOCK;
return 1;
- } else if (attr.depth == 8) {
- xi = xi8 = p_xi(xi8, attr.visual, 8, &xi8_w);
+ } else if (attr.depth <= 16) {
+ xi = xi8 = p_xi(xi8, attr.visual, attr.depth, &xi8_w);
poll_fb = poll8_fb;
- fac = 1;
+ if (attr.depth > 8) {
+ fac = 2;
+ } else {
+ fac = 1;
+ }
n_off = poll8_fb_w * y1 + x1;
} else {
xi = xi24 = p_xi(xi24, attr.visual, 24, &xi24_w);
@@ -1280,7 +1311,7 @@ if (db24 > 1) fprintf(stderr, "subtract: 0x%lx %d -- %d %d %d %d\n", swin, k, s
break;
}
}
- if (! seen && attr.depth == 8) {
+ if (!seen && attr.depth <= 16) {
/* store only new ones: */
cmaps[ncmaps++] = attr.colormap;
}
@@ -1292,10 +1323,11 @@ if (db24 > 1) fprintf(stderr, "subtract: 0x%lx %d -- %d %d %d %d\n", swin, k, s
return mapcount;
}
-static XColor color[CMAPMAX][NCOLOR];
-static unsigned int rgb[CMAPMAX][NCOLOR];
+static XColor *color[CMAPMAX];
+static unsigned int *rgb[CMAPMAX];
static int cmap_failed[CMAPMAX];
-int histo[256];
+static int color_init = 0;
+int histo[65536];
static int get_cmap(int j, Colormap cmap) {
#if NO_X11
@@ -1303,27 +1335,38 @@ static int get_cmap(int j, Colormap cmap) {
if (!j || !cmap) {}
return 0;
#else
- int i, ncells;
+ int i, ncells, ncolor;
XErrorHandler old_handler = NULL;
RAWFB_RET(0)
- if (0) {
+ if (depth > 8) {
+ ncolor = 1 << depth;
+ } else {
+ ncolor = NCOLOR;
+ }
+ if (!color_init) {
+ int cm;
+ for (cm = 0; cm < CMAPMAX; cm++) {
+ color[cm] = (XColor *) malloc(ncolor * sizeof(XColor));
+ rgb[cm] = (unsigned int *) malloc(ncolor * sizeof(unsigned int));
+ }
+ color_init = 1;
+ }
+
+ if (depth <= 16) {
/* not working properly for depth 24... */
X_LOCK;
ncells = CellsOfScreen(ScreenOfDisplay(dpy, scr));
X_UNLOCK;
- } else {
- ncells = NCOLOR;
}
if (db24 > 1) fprintf(stderr, "get_cmap: %d 0x%x\n", j, (unsigned int) cmap);
- /* ncells should "always" be 256. */
- if (ncells > NCOLOR) {
- ncells = NCOLOR;
- } else if (ncells == 8) {
- /* hmmm. see set_colormap() */
- ncells = NCOLOR;
+ if (ncells > ncolor) {
+ ncells = ncolor;
+ } else if (ncells == 8 && depth != 3) {
+ /* XXX. see set_colormap() */
+ ncells = 1 << depth;
}
/* initialize XColor array: */
@@ -1404,7 +1447,7 @@ if (db24 > 1) fprintf(stderr, "ncmaps: %d\n", ncmaps);
}
}
- if (windows_8bpp[n].depth == 8) { /* 24 won't have a cmap */
+ if (windows_8bpp[n].depth != 24) { /* 24 won't have a cmap */
if (failed || cm == -1) {
return;
}
@@ -1448,17 +1491,18 @@ static XImage *cmap_xi(XImage *xi, Window win, int win_depth) {
if (! dpy || ! valid_window(win, &attr, 1)) {
return (XImage *) NULL;
}
- if (attr.depth != win_depth) {
- return (XImage *) NULL;
- } else if (win_depth == 8) {
- d = (char *) malloc(dpy_x * dpy_y * 1);
- } else if (win_depth == 24) {
+ if (win_depth == 24) {
d = (char *) malloc(dpy_x * dpy_y * 4);
+ } else if (win_depth <= 16) {
+ if (win_depth > 8) {
+ d = (char *) malloc(dpy_x * dpy_y * 2);
+ } else {
+ d = (char *) malloc(dpy_x * dpy_y * 1);
+ }
} else {
return (XImage *) NULL;
}
- return XCreateImage(dpy, attr.visual, win_depth, ZPixmap, 0, d, dpy_x,
- dpy_y, 8, 0);
+ return XCreateImage(dpy, attr.visual, win_depth, ZPixmap, 0, d, dpy_x, dpy_y, 8, 0);
#endif /* NO_X11 */
}
@@ -1472,6 +1516,7 @@ static void transform_rect(sraRect rect, Window win, int win_depth, int cm) {
char *src, *dst, *poll;
unsigned int *ui;
+ unsigned short *us;
unsigned char *uc;
int ps, pixelsize = bpp/8;
int poll_Bpl;
@@ -1495,7 +1540,7 @@ if (db24 > 1) fprintf(stderr, "transform %4d %4d %4d %4d cm: %d\n", rect.x1, rec
h = rect.y2 - rect.y1;
w = rect.x2 - rect.x1;
- if (depth == 8) {
+ if (depth != 24) {
/* need to fetch depth 24 data. */
do_getimage = 1;
}
@@ -1524,21 +1569,32 @@ if (db24 > 1) fprintf(stderr, "transform %4d %4d %4d %4d cm: %d\n", rect.x1, rec
X_LOCK;
#define GETSUBIMAGE
#ifdef GETSUBIMAGE
- if (win_depth == 8) {
- if (xi_8 == NULL || xi_8->width != dpy_x ||
- xi_8->height != dpy_y) {
- xi_8 = cmap_xi(xi_8, win, 8);
- }
- xi = xi_8;
- } else if (win_depth == 24) {
+ if (win_depth == 24) {
if (xi_24 == NULL || xi_24->width != dpy_x ||
xi_24->height != dpy_y) {
xi_24 = cmap_xi(xi_24, win, 24);
}
xi = xi_24;
+ } else if (win_depth <= 16) {
+ if (xi_8 == NULL || xi_8->width != dpy_x ||
+ xi_8->height != dpy_y) {
+ if (win_depth > 8) {
+ /* XXX */
+ xi_8 = cmap_xi(xi_8, win, 16);
+ } else {
+ xi_8 = cmap_xi(xi_8, win, 8);
+ }
+ }
+ xi = xi_8;
}
#endif
+ if (xi == NULL) {
+ rfbLog("transform_rect: xi is NULL\n");
+ X_UNLOCK;
+ clean_up_exit(1);
+ }
+
old_handler = XSetErrorHandler(trap_xerror);
trapped_xerror = 0;
@@ -1578,7 +1634,7 @@ if (db24 > 1) fprintf(stderr, "xi: 0x%p %d %d %d %d -- %d %d\n", (void *)xi, xo
}
trapped_xerror = 0;
- if (xi->depth != 8 && xi->depth != 24) {
+ if (xi->depth > 16 && xi->depth != 24) {
#ifndef GETSUBIMAGE
X_LOCK;
XDestroyImage(xi);
@@ -1590,64 +1646,76 @@ if (db24) fprintf(stderr, "xi: wrong depth: %d\n", xi->depth);
set_poll_fb();
- if (xi->depth == 8) {
- int ps1, ps2, fac;
-
- if (depth == 8) {
- ps1 = 1;
- ps2 = 4;
+ if (xi->depth == 24) {
+ /* line by line ... */
+ int ps1 = 4, fac;
+ if (depth <= 8) {
fac = 4;
+ } else if (depth <= 16) {
+ fac = 2;
} else {
- ps1 = 1;
- ps2 = pixelsize;
- fac = 1;
+ fac = 1; /* will not happen 24 on 24 */
}
src = xi->data;
dst = cmap8to24_fb + fac * n_off;
- poll = poll8_fb + poll8_fb_w * rect.y1 + rect.x1;
- poll_Bpl = poll8_fb_w * 1;
+ poll = poll24_fb + (poll24_fb_w * rect.y1 + rect.x1) * 4;
+ poll_Bpl = poll24_fb_w * 4;
- /* line by line ... */
for (line = 0; line < h; line++) {
- /* pixel by pixel... */
- for (j = 0; j < w; j++) {
-
- uc = (unsigned char *) (src + ps1 * j);
- ui = (unsigned int *) (dst + ps2 * j);
-
- idx = (int) (*uc);
-
- *ui = rgb[cm][idx];
+ memcpy(dst, src, w * ps1);
+ memcpy(poll, src, w * ps1);
- *(poll + ps1 * j) = *uc;
- }
src += xi->bytes_per_line;
dst += main_bytes_per_line * fac;
poll += poll_Bpl;
}
- } else if (xi->depth == 24) {
- /* line by line ... */
- int ps1 = 4, fac;
- if (depth == 8) {
+ } else if (xi->depth <= 16) {
+ int ps1, ps2, fac;
+
+ if (depth <= 8) {
+ ps1 = 1;
+ ps2 = 4;
+ fac = 4;
+ } else if (depth <= 16) {
+ ps1 = 2;
+ ps2 = 4;
fac = 4;
} else {
- fac = 1; /* will not happen */
+ /* should be 24 case */
+ ps1 = 1;
+ ps2 = pixelsize;
+ fac = 1;
}
src = xi->data;
- dst = cmap8to24_fb + fac * n_off;
+ dst = cmap8to24_fb + (fac/ps1) * n_off;
- poll = poll24_fb + (poll24_fb_w * rect.y1 + rect.x1)*4;
- poll_Bpl = poll24_fb_w * 4;
+ poll = poll8_fb + poll8_fb_w * rect.y1 * ps1 + rect.x1 * ps1;
+ poll_Bpl = poll8_fb_w * ps1;
+ /* line by line ... */
for (line = 0; line < h; line++) {
- memcpy(dst, src, w * ps1);
- memcpy(poll, src, w * ps1);
+ /* pixel by pixel... */
+ for (j = 0; j < w; j++) {
+ if (ps1 == 2) {
+ unsigned short *ptmp;
+ us = (unsigned short *) (src + ps1 * j);
+ idx = (int) (*us);
+ ptmp = (unsigned short *) (poll + ps1 * j);
+ *ptmp = *us;
+ } else {
+ uc = (unsigned char *) (src + ps1 * j);
+ idx = (int) (*uc);
+ *(poll + ps1 * j) = *uc;
+ }
+ ui = (unsigned int *) (dst + ps2 * j);
+ *ui = rgb[cm][idx];
+ }
src += xi->bytes_per_line;
- dst += main_bytes_per_line * fac;
+ dst += main_bytes_per_line * (fac/ps1);
poll += poll_Bpl;
}
}
@@ -1661,11 +1729,12 @@ if (db24) fprintf(stderr, "xi: wrong depth: %d\n", xi->depth);
} else if (! do_getimage) {
int fac;
- if (depth == 8) {
+ if (depth <= 16) {
/* cooked up depth 24 TrueColor */
/* but currently disabled (high bits no useful?) */
ps = 4;
fac = 4;
+ /* XXX not correct for depth > 8, but do we ever come here in that case? */
src = cmap8to24_fb + 4 * n_off;
} else {
ps = pixelsize;
@@ -1697,6 +1766,7 @@ if (db24) fprintf(stderr, "xi: wrong depth: %d\n", xi->depth);
void bpp8to24(int x1, int y1, int x2, int y2) {
char *src, *dst;
unsigned char *uc;
+ unsigned short *us;
unsigned int *ui;
int idx, pixelsize = bpp/8;
int line, k, i, j, h, w;
@@ -1741,18 +1811,34 @@ if (db24 > 1) fprintf(stderr, "bpp8to24 %d %d %d %d %.4f\n", x1, y1, x2, y2, dno
h = y2 - y1;
w = x2 - x1;
- if (depth == 8) {
+ if (depth == 24) {
+ /* pixelsize = 4 */
+ n_off = main_bytes_per_line * y1 + pixelsize * x1;
+
+ src = main_fb + n_off;
+ dst = cmap8to24_fb + n_off;
+
+ /* otherwise, the pixel data as is */
+ for (line = 0; line < h; line++) {
+ memcpy(dst, src, w * pixelsize);
+ src += main_bytes_per_line;
+ dst += main_bytes_per_line;
+ }
+ } else if (depth <= 16) {
/* need to cook up to depth 24 TrueColor */
- /* pixelsize = 1 */
+ int ps1 = 1, ps2 = 4;
+ if (depth > 8) {
+ ps1 = 2;
+ }
+ /* pixelsize = 1, 2 */
n_off = main_bytes_per_line * y1 + pixelsize * x1;
src = main_fb + n_off;
- dst = cmap8to24_fb + 4 * n_off;
+ dst = cmap8to24_fb + (4/ps1) * n_off;
set_root_cmap();
if (root_cmap) {
- int ps1 = 1, ps2 = 4;
#if 0
unsigned int hi;
#endif
@@ -1761,12 +1847,15 @@ if (db24 > 1) fprintf(stderr, "bpp8to24 %d %d %d %d %.4f\n", x1, y1, x2, y2, dno
for (line = 0; line < h; line++) {
/* pixel by pixel... */
for (j = 0; j < w; j++) {
-
- uc = (unsigned char *) (src + ps1 * j);
+ if (ps1 == 2) {
+ us = (unsigned short *) (src + ps1 * j);
+ idx = (int) (*us);
+ } else {
+ uc = (unsigned char *) (src + ps1 * j);
+ idx = (int) (*uc);
+ }
ui = (unsigned int *) (dst + ps2 * j);
- idx = (int) (*uc);
-
if (0 && line % 100 == 0 && j % 32 == 0) fprintf(stderr, "%d %d %u x1=%d y1=%d\n", line, j, root_rgb[idx], x1, y1);
#if 0
if (do_hibits) {
@@ -1779,23 +1868,10 @@ if (0 && line % 100 == 0 && j % 32 == 0) fprintf(stderr, "%d %d %u x1=%d y1=%d\
if (db24 > 2) histo[idx]++;
}
src += main_bytes_per_line;
- dst += main_bytes_per_line * 4;
+ dst += main_bytes_per_line * (4/ps1);
}
}
- } else if (depth == 24) {
- /* pixelsize = 4 */
- n_off = main_bytes_per_line * y1 + pixelsize * x1;
-
- src = main_fb + n_off;
- dst = cmap8to24_fb + n_off;
-
- /* otherwise, the pixel data as is */
- for (line = 0; line < h; line++) {
- memcpy(dst, src, w * pixelsize);
- src += main_bytes_per_line;
- dst += main_bytes_per_line;
- }
}
if (last_map_count > MAX_8BPP_WINDOWS/4) {
@@ -1871,7 +1947,7 @@ if (db24 > 1) fprintf(stderr, "bpp8to24 w=%d h=%d m=%p c=%p r=%p ncmaps=%d\n", w
* now go back and transform and 8bpp regions to TrueColor in
* cmap8to24_fb.
*/
- if (last_map_count && (ncmaps || depth == 8)) {
+ if (last_map_count && (ncmaps || depth <= 16)) {
int i, j;
int win[MAX_8BPP_WINDOWS];
int did[MAX_8BPP_WINDOWS];
diff --git a/x11vnc/ChangeLog b/x11vnc/ChangeLog
index 11ff1b3..9fd7f7d 100644
--- a/x11vnc/ChangeLog
+++ b/x11vnc/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-31 Karl Runge <runge@karlrunge.com>
+ * x11vnc: Improvements to nonstandard indexed color support, e.g.
+ depths 1, 4, 12, etc. instead of only 8. Only enable xinerama
+ xwarppointer if there is more than 1 subscreen.
+
2008-05-07 Karl Runge <runge@karlrunge.com>
* x11vnc: add UltraVNC repeater proxy support. fix to setp gui
mode. -threads is now strongly discouraged. Read PORT= in url.
diff --git a/x11vnc/README b/x11vnc/README
index 54929f8..c85b10d 100644
--- a/x11vnc/README
+++ b/x11vnc/README
@@ -1,5 +1,5 @@
-x11vnc README file Date: Sat May 10 12:54:59 EDT 2008
+x11vnc README file Date: Sat May 31 21:39:32 EDT 2008
The following information is taken from these URLs:
@@ -25,12 +25,13 @@ x11vnc: a VNC server for real X displays
mouse) with any VNC viewer. In this way it plays the role for Unix/X11
that WinVNC plays for Windows.
- It has built-in [7]SSL encryption and authentication, UNIX [8]account
- and password support, server-side [9]scaling, [10]single port HTTPS
- and VNC, [11]mDNS service advertising, and TightVNC and UltraVNC
- [12]file-transfer. It has also been extended to work with non-X
- devices: [13]webcams and TV tuner capture devices, [14]embedded Linux
- systems such as Qtopia Core, and natively on [15]Mac OS X Aqua/Quartz.
+ It has built-in [7]SSL encryption and RSA authentication, UNIX
+ [8]account and password support, server-side [9]scaling, [10]single
+ port HTTPS and VNC, [11]mDNS service advertising, and TightVNC and
+ UltraVNC [12]file-transfer. It has also been extended to work with
+ non-X devices: [13]webcams and TV tuner capture devices, [14]embedded
+ Linux systems such as Qtopia Core, and natively on [15]Mac OS X
+ Aqua/Quartz.
It also provides an encrypted [16]Terminal Services mode ([17]-create,
[18]-svc, or [19]-xdmsvc options) based on Unix usernames and Unix
@@ -48,15 +49,17 @@ x11vnc: a VNC server for real X displays
This page including the [21]FAQ contains much information [22][*];
solutions to many problems; and interesting applications, but
nevertheless please feel free to [23]contact me if you have problems
- or questions. Please do check the FAQ; I realize this page is massive,
- but you can often use your browser's find-in-page action to find the
- discussion of your problem or question.
-
- Please help [24]beta test the new performance speedup feature using
- [25]viewer-side pixel caching "ncache". Let me know how it goes;
+ or questions (and if I save you time by giving you some of my time,
+ please consider a [24]paypal donation). Please check the [25]FAQ
+ first; I realize this page is massive, but you can often use your
+ browser's find-in-page action using a keyword to find the answer to
+ your problem or question.
+
+ Please help [26]beta test the new performance speedup feature using
+ [27]viewer-side pixel caching "ncache". Let me know how it goes;
thanks.
- SSVNC: An x11vnc side-project provides an [26]Enhanced TightVNC
+ SSVNC: An x11vnc side-project provides an [28]Enhanced TightVNC
Viewer package (SSVNC) for Unix, Windows, and Mac OS X with automatic
SSL and/or SSH tunnelling support, SSL Certificate creation, saved
connection profiles, and built-in Proxy support. And for the Unix
@@ -71,6 +74,19 @@ x11vnc: a VNC server for real X displays
_________________________________________________________________
+ Announcements:
+
+ Important: If you created any permanent SSL certificates (e.g. via
+ "[29]x11vnc -ssl SAVE ...") on a Debian system from Sept. 2006 through
+ May 2008, then those keys are likely extremely weak and can be easily
+ cracked. The certificate files should be deleted and recreated on a
+ non-Debian system or an updated one. See
+ [30]http://www.debian.org/security/2008/dsa-1571 for details. The same
+ applies to SSH keys (not used by x11vnc directly, but many people use
+ [31]SSH tunnels for VNC access.)
+
+ _________________________________________________________________
+
Background:
VNC (Virtual Network Computing) is a very useful network graphics
@@ -80,10 +96,10 @@ x11vnc: a VNC server for real X displays
framebuffer (RFB) protocol.
Some VNC links:
- * [27]http://www.realvnc.com
- * [28]http://www.tightvnc.com
- * [29]http://www.ultravnc.com/
- * [30]http://www.redstonesoftware.com/
+ * [32]http://www.realvnc.com
+ * [33]http://www.tightvnc.com
+ * [34]http://www.ultravnc.com/
+ * [35]http://www.redstonesoftware.com/
For Unix, the traditional VNC implementation includes a "virtual" X11
server Xvnc (usually launched via the vncserver command) that is not
@@ -94,7 +110,7 @@ x11vnc: a VNC server for real X displays
The VNC protocol is in most cases better suited for remote connections
with low bandwidth and high latency than is the X11 protocol because
- it involves far fewer "roundtrips" (an exception is the [31]cached
+ it involves far fewer "roundtrips" (an exception is the [36]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.
@@ -122,11 +138,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 ([32]see below) and have it available to run
+ Step 0. Download x11vnc ([37]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
- [33]TightVNC Viewers (see [34]also here.)
+ [38]TightVNC Viewers (see [39]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
@@ -145,11 +161,11 @@ x11vnc: a VNC server for real X displays
X 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 [35]-auth option) to
+ the XAUTHORITY environment variable (or use the [40]-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
- [36]below.
+ [41]below.
If you suspect an X11 permissions problem do this simple test: while
sitting at the physical X display open a terminal window
@@ -157,9 +173,9 @@ 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 [37]below.
+ remote shell. Then fix this with the tips [42]below.
- Note as of Feb/2007 you can also try the [38]-find option instead of
+ Note as of Feb/2007 you can also try the [43]-find option instead of
"-display ..." and see if that finds your display and Xauthority. (End
of Common Gotcha)
@@ -180,8 +196,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 [39]this FAQ. For Solaris, vncviewer
- is available in the [40]Companion CD package SFWvnc).
+ viewer for your platform or see [44]this FAQ. For Solaris, vncviewer
+ is available in the [45]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:
@@ -191,36 +207,36 @@ 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 [41]-forever option to have
+ shutdown automatically (or you can use the [46]-forever option to have
it wait for additional viewer connections).
- Common Gotcha: Nowadays there will likely be a host-level [42]firewall
+ Common Gotcha: Nowadays there will likely be a host-level [47]firewall
on the x11vnc side that is blocking remote access to the VNC port
(e.g. 5900). You will either have to open up that port (or a range of
- ports) in your firewall administration tool, or try the [43]SSH
+ ports) in your firewall administration tool, or try the [48]SSH
tunnelling method below (even still the firewall must allow in the SSH
port, 22).
Shortcut: Of course if you left x11vnc running on far-away.east:0 in a
- terminal window with the [44]-forever option or as a [45]service,
+ terminal window with the [49]-forever option or as a [50]service,
you'd only have to do Step 3 as you moved around. Be sure to use a VNC
- [46]Password or [47]other measures if you do that.
+ [51]Password or [52]other measures if you do that.
Super Shortcut: Here is a potentially very easy way to get all of it
working.
* Have x11vnc (0.9.3 or later) available to run on the remote host
(i.e. in $PATH).
- * Download and unpack a [48]SSVNC bundle (1.0.19 or later, e.g.
- [49]ssvnc_no_windows-1.0.19.tar.gz) on the Viewer-side machine.
+ * Download and unpack a [53]SSVNC bundle (1.0.19 or later, e.g.
+ [54]ssvnc_no_windows-1.0.19.tar.gz) on the Viewer-side machine.
* Start the SSVNC Terminal Services mode GUI: ./ssvnc/bin/tsvnc
* Enter your remote username@hostname (e.g. fred@far-away.east) in
the "VNC Terminal Server" entry.
* Click "Connect".
That will do an SSH to username@hostname and start up x11vnc and then
- connect a VNC Viewer through the SSH [50]encrypted tunnel.
+ connect a VNC Viewer through the SSH [55]encrypted tunnel.
There are a number of things assumed here, first that you are able to
SSH into the remote host; i.e. that you have a Unix account there and
@@ -229,7 +245,7 @@ x11vnc: a VNC server for real X displays
plink binary is included in the SSVNC bundle). Finally, it is assumed
that you are already logged into an X session on the remote machine,
e.g. your workstation (otherwise, a virtual X server, e.g. Xvfb, will
- be [51]started for you).
+ be [56]started for you).
In some cases the remote SSH server will not run commands with the
same $PATH that you normally have in your shell there. In this case
@@ -251,7 +267,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 "[52]-connect
+ start their VNC viewers. For this usage mode the "[57]-connect
host1,host2" option may be of use to automatically connect to the
vncviewers in "-listen" mode on the list of hosts.
_________________________________________________________________
@@ -287,7 +303,7 @@ 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 [53]VNC password is also strongly recommended.
+ machine). Use of a [58]VNC password is also strongly recommended.
Note also the -t we used above (force allocate pseudoterminal), it
actually seems to improve interactive typing response via VNC!
@@ -303,16 +319,16 @@ x11vnc: a VNC server for real X displays
Some VNC viewers will do the ssh tunnelling for you automatically, the
TightVNC Unix 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 [54]inetd(8)). See the 3rd
- script example [55]below for more info.
+ far-away.east or having it started by [59]inetd(8)). See the 3rd
+ script example [60]below for more info.
- SSVNC: You may also want to look at the [56]Enhanced TightVNC Viewer
+ SSVNC: You may also want to look at the [61]Enhanced TightVNC Viewer
(ssvnc) bundles because they contain scripts and GUIs to automatically
set up SSH tunnels (e.g. the GUI, "ssvnc", does it automatically and
so does this command: "ssvnc_cmd -ssh user@far-away.east:0") and can
even start up x11vnc as well.
- The [57]Terminal Services mode of SSVNC is perhaps the easiest way to
+ The [62]Terminal Services mode of SSVNC is perhaps the easiest way to
use x11vnc. You just need to have x11vnc available in $PATH on the
remote side (and can SSH to the host), and then on the viewer-side you
type something like:
@@ -336,13 +352,13 @@ x11vnc: a VNC server for real X displays
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 "[58]-connect gateway:59xx" option may
+ it isn't already running). (The "[63]-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 [59]Chaining SSH's.
+ encrypted (including inside the firewall) see [64]Chaining SSH's.
These gateway access modes also can be done automatically for you via
- the "Proxy/Gateway" setting in [60]SSVNC (including the Chaining SSH's
+ the "Proxy/Gateway" setting in [65]SSVNC (including the Chaining SSH's
case, "Double Proxy").
Firewalls/Routers:
@@ -358,7 +374,7 @@ x11vnc: a VNC server for real X displays
One thing that can be done is to redirect a port on the
Firewall/Router to, say, the SSH port (22) on an inside machine (how
to do this depends on your particular Firewall/Router, often the
- router config URL is http://192.168.100.1 See [61]www.portforward.com
+ router config URL is http://192.168.100.1 See [66]www.portforward.com
for more info). This way you reach these computers from anywhere on
the Internet and use x11vnc to view X sessions running on them.
@@ -376,7 +392,7 @@ nc -localhost -display :0'
Where far-away.east means the hostname (or IP) that the
Router/Firewall is using (for home setups this is usually the IP
- gotten from your ISP via DHCP, the site [62]http://www.whatismyip.com/
+ gotten from your ISP via DHCP, the site [67]http://www.whatismyip.com/
is a convenient way to determine what it is).
It is a good idea to add some obscurity to accessing your system via
@@ -387,7 +403,7 @@ nc -localhost -display :0'
Port 22 -> 192.168.1.3, Port 22 (SSH)
Again, this SSH gateway access can be done automatically for you via
- the "Proxy/Gateway" setting in [63]SSVNC. And under the "Remote SSH
+ the "Proxy/Gateway" setting in [68]SSVNC. And under the "Remote SSH
Command" setting you can enter the x11vnc -localhost -display :0.
Host-Level-Firewalls: even with the hardware Firewall/Router problem
@@ -404,7 +420,7 @@ nc -localhost -display :0'
Port 5901 -> 192.168.1.4, Port 5900 (VNC)
(where 192.168.1.3 is "jills-pc" and 192.168.1.4 is "freds-pc".) This
- could be used for normal, unencrypted connections and also for [64]SSL
+ could be used for normal, unencrypted connections and also for [69]SSL
encrypted ones.
The the VNC displays to enter in the VNC viewer would be, say,
@@ -418,7 +434,7 @@ nc -localhost -display :0'
vncviewer 24.56.78.93:0
The IP address would need to be communicated to the person running the
- VNC Viewer. The site [65]http://www.whatismyip.com/ can help here.
+ VNC Viewer. The site [70]http://www.whatismyip.com/ can help here.
_________________________________________________________________
@@ -427,7 +443,7 @@ nc -localhost -display :0'
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 [66]-bg (forks into background after connection to the
+ x11vnc option [71]-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. Feel free to try the ssh -C to enable its compression
and see if that speeds things up noticeably.
@@ -460,7 +476,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 [67]-connect option:
+ using the [72]-connect option:
#!/bin/sh
# usage: x11vnc_ssh <host>:<xdisplay>
# e.g.: x11vnc_ssh snoopy.peanuts.com:0
@@ -503,7 +519,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 [68]inetd(8)), you can simply
+ connections (or have it started out of [73]inetd(8)), you can simply
use the TightVNC "vncviewer -via gateway host:port" in its default
mode to provide secure ssh tunnelling.
_________________________________________________________________
@@ -511,38 +527,38 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
VNC password file: Also note in the #1. example script that the
- [69]option "-rfbauth .vnc/passwd" provides additional protection by
+ [74]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 [70]-storepasswd
+ vncpasswd or storepasswd programs, or the x11vnc [75]-storepasswd
option can be used to create the password file. x11vnc also has the
- slightly less secure [71]-passwdfile and "-passwd XXXXX" [72]options
+ slightly less secure [76]-passwdfile and "-passwd XXXXX" [77]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 [73]-usepw if you want to be forced
+ automatically or force you to (use [78]-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, [74]-ssl mode, a VPN,
- etc. (use the [75]Enhanced TightVNC Viewer (SSVNC) GUI if you want to
+ x11vnc: it is up to you to use ssh, stunnel, [79]-ssl mode, a VPN,
+ etc. (use the [80]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 [76]options and building x11vnc with
- [77]tcp_wrappers support to limit host access.
+ the -allow and -localhost [81]options and building x11vnc with
+ [82]tcp_wrappers support to limit host access.
_________________________________________________________________
Tunnelling x11vnc via SSL:
One can also encrypt the VNC traffic using an SSL tunnel such as
- [78]stunnel (also [79]stunnel.mirt.net) or using the built-in
- (Mar/2006) [80]-ssl openssl mode. A SSL-enabled Java applet VNC Viewer
+ [83]stunnel (also [84]stunnel.mirt.net) or using the built-in
+ (Mar/2006) [85]-ssl openssl mode. A SSL-enabled Java applet VNC Viewer
is also provided in the x11vnc package (and https can be used to
download it).
Although not as ubiquitous as ssh, SSL tunnelling still provides a
- useful alternative. See [81]this FAQ on -ssl and -stunnel modes for
+ useful alternative. See [86]this FAQ on -ssl and -stunnel modes for
details and examples.
- The [82]Enhanced TightVNC Viewer (SSVNC) bundles contain some
+ The [87]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 many other
enhancements too.
@@ -550,29 +566,29 @@ vncviewer -via $host localhost:0 # must be TightVNC vncviewer.
Downloading x11vnc:
- x11vnc is a contributed program to the [83]LibVNCServer project at
+ x11vnc is a contributed program to the [88]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 Oct 2007, the [84]x11vnc-0.9.3.tar.gz source package is
- released (recommended download). The [85]x11vnc 0.9.3 release notes.
+ link. As of Oct 2007, the [89]x11vnc-0.9.3.tar.gz source package is
+ released (recommended download). The [90]x11vnc 0.9.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 [86]x11vnc-0.9.4.tar.gz tarball to build the most up to
+ bleeding edge [91]x11vnc-0.9.4.tar.gz tarball to build the most up to
date one.
- Precompiled Binaries/Packages: See the [87]FAQ below for information
+ Precompiled Binaries/Packages: See the [92]FAQ below for information
about where you might obtain a precompiled x11vnc binary from 3rd
parties and some ones I create.
VNC Viewers: To obtain VNC viewers for the viewing side (Windows, Mac
OS, or Unix) try these links:
- * [88]http://www.tightvnc.com/download.html
- * [89]http://www.realvnc.com/download-free.html
- * [90]http://sourceforge.net/projects/cotvnc/
- * [91]http://www.ultravnc.com/
- * [92]Our Enhanced TightVNC Viewer (SSVNC)
+ * [93]http://www.tightvnc.com/download.html
+ * [94]http://www.realvnc.com/download-free.html
+ * [95]http://sourceforge.net/projects/cotvnc/
+ * [96]http://www.ultravnc.com/
+ * [97]Our Enhanced TightVNC Viewer (SSVNC)
[ssvnc.gif]
@@ -585,8 +601,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:
- * [93]rx11vnc wrapper script
- * [94]rx11vnc.pl wrapper script to tunnel traffic thru ssh
+ * [98]rx11vnc wrapper script
+ * [99]rx11vnc.pl wrapper script to tunnel traffic thru ssh
_________________________________________________________________
@@ -617,8 +633,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 [95]http://www.sunfreeware.com/. Some Solaris pre-built x11vnc
- binaries are [96]here.
+ are at [100]http://www.sunfreeware.com/. Some Solaris pre-built x11vnc
+ binaries are [101]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
@@ -638,12 +654,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 [97]build scripts below
+ libvncserver's choice of AM_CFLAGS. See the [102]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 [98]Misc. Build problems here.
+ You can find information on [103]Misc. Build problems here.
_________________________________________________________________
@@ -681,9 +697,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
- [99]ftp://ftp.uu.net/graphics/jpeg/ and zlib at
- [100]http://www.gzip.org/zlib/. See also
- [101]http://www.sunfreeware.com/ for Solaris binary packages of these
+ [104]ftp://ftp.uu.net/graphics/jpeg/ and zlib at
+ [105]http://www.gzip.org/zlib/. See also
+ [106]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.
@@ -754,7 +770,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 [102]this workaround FAQ.
+ OS's, see [107]this workaround FAQ.
Building on FreeBSD, OpenBSD, ...: The jpeg libraries seem to be in
@@ -790,7 +806,7 @@ make
up by the configure and make.
- Building on Mac OS X: There is now [103]native Mac OS X support for
+ Building on Mac OS X: There is now [108]native Mac OS X support for
x11vnc by using the raw framebuffer feature. This mode does not use or
need X11 at all. To build you may need to disable X11:
./configure --without-x ...
@@ -804,7 +820,7 @@ make
OpenSSL: Starting with version 0.8.3 x11vnc can now be built with
- [104]SSL support. For this to be enabled the libssl.so library needs
+ [109]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.
@@ -822,61 +838,61 @@ make
Spring 2008.
The version 0.9.4 beta tarball is kept here:
- [105]x11vnc-0.9.4.tar.gz
+ [110]x11vnc-0.9.4.tar.gz
There are also some Linux, Solaris, Mac OS X, and other OS test
- binaries [106]here. Please kick the tires and report bugs, performance
- regressions, undesired behavior, etc. to [107]me.
+ binaries [111]here. Please kick the tires and report bugs, performance
+ regressions, undesired behavior, etc. to [112]me.
- To aid testing of the [108]built-in SSL support for x11vnc, a number
+ To aid testing of the [113]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 [109]wrapper scripts and a GUI that start [110]STUNNEL). It should
+ by [114]wrapper scripts and a GUI that start [115]STUNNEL). It should
be pretty convenient for automatic SSL and SSH connections. It is
- described in detail at and can be downloaded from the [111]Enhanced
+ described in detail at and can be downloaded from the [116]Enhanced
TightVNC Viewer (SSVNC) page.
Here are some features that will appear in the 0.9.4 release:
- * Improvements to the [112]-find and [113]-create X session finding
+ * Improvements to the [117]-find and [118]-create X session finding
or creating modes: new desktop types and service redirection
options. Personal cupsd daemon and SSH port redirection helper for
- use with [114]SSVNC's Terminal Services feature.
- * Reverse VNC connections via [115]-connect work in the [116]-find,
- [117]-create and related [118]-display WAIT:... modes.
+ use with [119]SSVNC's Terminal Services feature.
+ * Reverse VNC connections via [120]-connect work in the [121]-find,
+ [122]-create and related [123]-display WAIT:... modes.
* Reverse VNC connections (either normal or SSL) can use a Web Proxy
or a SOCKS proxy, or a SSH connection, or even a CGI URL to make
- the outgoing connection. See: [119]-proxy. Forward connections can
- also use: [120]-ssh.
- * Reverse VNC connections via the [121]UltraVNC repeater proxy
+ the outgoing connection. See: [124]-proxy. Forward connections can
+ also use: [125]-ssh.
+ * Reverse VNC connections via the [126]UltraVNC repeater proxy
(either normal or SSL) are supported. Use either the
- "[122]-connect repeater=ID:NNNN+host:port" or "[123]-connect
- repeater://host:port+ID:NNNN" notation. The [124]SSVNC VNC viewer
+ "[127]-connect repeater=ID:NNNN+host:port" or "[128]-connect
+ repeater://host:port+ID:NNNN" notation. The [129]SSVNC VNC viewer
also supports the UltraVNC repeater.
* Support for the ZYWRLE encoding, this is the RealVNC ZRLE encoding
extended to do motion video and photo regions more efficiently by
way of a Wavelet based transformation.
- * The [125]-finddpy and [126]-listdpy utilities help to debug and
- configure the [127]-find, [128]-create, and [129]-display WAIT:...
+ * The [130]-finddpy and [131]-listdpy utilities help to debug and
+ configure the [132]-find, [133]-create, and [134]-display WAIT:...
modes.
* Some automatic detection of screen resizes are handled even if the
- [130]-xrandr option is not supplied.
- * The [131]-autoport options gives more control over the VNC port
+ [135]-xrandr option is not supplied.
+ * The [136]-autoport options gives more control over the VNC port
x11vnc chooses.
- * The [132]-ping secs can be used to help keep idle connections
+ * The [137]-ping secs can be used to help keep idle connections
alive.
* Pasting of the selection/clipboard into remote applications (e.g.
Java) has been improved.
* Fixed a bug if a client disconnects during the 'speed-estimation'
phase.
* To unset Caps_Lock, Num_Lock and raise all keys in the X server
- use [133]-clear_all.
+ use [138]-clear_all.
* Usage with dvorak keyboards has been improved. See also:
- [134]-xkb.
+ [139]-xkb.
Here are some features that appeared in the 0.9.3 release:
- * [135]Viewer-side pixmap caching. A large area of pixels (at least
+ * [140]Viewer-side pixmap caching. A large area of pixels (at least
2-3 times as big as the framebuffer itself; the bigger the
better... default is 10X) is placed below the framebuffer to act
as a buffer/cache area for pixel data. The VNC CopyRect encoding
@@ -884,7 +900,7 @@ make
Until we start modifying viewers you will be able to see the cache
area if you scroll down (this makes it easier to debug!). For
testing the default is "-ncache 10". The unix Enhanced TightVNC
- Viewer [136]ssvnc has a nice [137]-ycrop option to help hide the
+ Viewer [141]ssvnc has a nice [142]-ycrop option to help hide the
pixel cache area from view.
@@ -897,14 +913,14 @@ make
* If UltraVNC file transfer or chat is detected, then VNC clients
are "pinged" more often to prevent these side channels from
becoming serviced too infrequently.
- * In [138]-unixpw mode in the username and password dialog no text
+ * In [143]-unixpw mode in the username and password dialog no text
will be echoed if the first character sent is "Escape". This
enables a convenience feature in SSVNC to send the username and
password automatically.
Here are some features that appeared in the 0.9.1 release:
- * The [139]UltraVNC Java viewer has been enhanced to support SSL (as
+ * The [144]UltraVNC Java viewer has been enhanced to support SSL (as
the TightVNC viewer had been previously). The UltraVNC Java
supports ultravnc filetransfer, and so can be used as a VNC viewer
on Unix that supports ultravnc filetransfer. It is in the
@@ -915,12 +931,12 @@ make
Some other bugs in the UltraVNC Java viewer were fixed and a few
improvements to the UI made.
* A new Unix username login mode for VNC Viewers authenticated via a
- Client SSL Certificate: "[140]-users sslpeer=". The emailAddress
+ Client SSL Certificate: "[145]-users sslpeer=". The emailAddress
subject field is inspected for username@hostname and then acts as
though "-users +username" has been supplied. This way the Unix
username is identified by (i.e. simply extracted from) the Client
- SSL Certificate. This could be useful with [141]-find,
- [142]-create and [143]-svc modes if you are also have set up and
+ SSL Certificate. This could be useful with [146]-find,
+ [147]-create and [148]-svc modes if you are also have set up and
use VNC Client SSL Certificate authentication.
* For external display finding/creating programs (e.g. WAIT:cmd=...)
if the VNC Viewer is authenticated via a Client SSL Certificate,
@@ -929,40 +945,40 @@ make
Here are some features that appeared in the 0.9 release:
- * [144]VNC Service advertising via mDNS / ZeroConf / BonJour with
- the [145]Avahi client library. Enable via "[146]-avahi".
+ * [149]VNC Service advertising via mDNS / ZeroConf / BonJour with
+ the [150]Avahi client library. Enable via "[151]-avahi".
* Implementations of UltraVNC's TextChat, SingleWindow, and
- ServerInput extensions (requires ultravnc viewer or [147]ssvnc
+ ServerInput extensions (requires ultravnc viewer or [152]ssvnc
Unix viewer). They toggle the selection of a single window
- ([148]-id), and disable (friendly) user input and viewing (monitor
+ ([153]-id), and disable (friendly) user input and viewing (monitor
blank) at the VNC server.
- * Short aliases "[149]-find", "[150]-create", "[151]-svc", and
- "[152]-xdmsvc" for commonly used FINDCREATEDISPLAY usage modes.
+ * Short aliases "[154]-find", "[155]-create", "[156]-svc", and
+ "[157]-xdmsvc" for commonly used FINDCREATEDISPLAY usage modes.
* Reverse VNC connections (viewer listening) now work in SSL
- ([153]-ssl) mode.
+ ([158]-ssl) mode.
* New options to control the Monitor power state and keyboard/mouse
- grabbing: [154]-forcedpms, [155]-clientdpms, [156]-noserverdpms,
- and [157]-grabalways.
+ grabbing: [159]-forcedpms, [160]-clientdpms, [161]-noserverdpms,
+ and [162]-grabalways.
* A simple way to emulate inetd(8) to some degree via the
- "[158]-loopbg" option.
- * Monitor the accuracy of XDAMAGE and apply "[159]-noxdamage" if it
- is not working well. OpenGL applications like like [160]beryl and
+ "[163]-loopbg" option.
+ * Monitor the accuracy of XDAMAGE and apply "[164]-noxdamage" if it
+ is not working well. OpenGL applications like like [165]beryl and
MythTv have been shown to make XDAMAGE not work properly.
* For Java SSL connections involving a router/firewall port
- redirection, an option [161]-httpsredir to spare the user from
+ redirection, an option [166]-httpsredir to spare the user from
needing to include &PORT=NNN in the browser URL.
Here are some features that appeared in the 0.8.4 release:
- * Native [162]Mac OS X Aqua/Quartz support. (i.e. OSXvnc
+ * Native [167]Mac OS X Aqua/Quartz support. (i.e. OSXvnc
alternative; some activities are faster)
- * A [163]new login mode: "-display WAIT:cmd=FINDCREATEDISPLAY
+ * A [168]new login mode: "-display WAIT:cmd=FINDCREATEDISPLAY
-unixpw ..." that will Create a new X session (either virtual or
real and with or without a display manager, e.g. kdm) for the user
if it cannot find the user's X session display via the FINDDISPLAY
- method. See the [164]-svc and the [165]-xdmsvc aliases.
- * x11vnc can act as a VNC [166]reflector/repeater using the
- "[167]-reflect host:N" option. Instead of polling an X display,
+ method. See the [169]-svc and the [170]-xdmsvc aliases.
+ * x11vnc can act as a VNC [171]reflector/repeater using the
+ "[172]-reflect host:N" option. Instead of polling an X display,
the remote VNC Server host:N is connected to and re-exported via
VNC. This is intended for use in broadcasting a display to many
(e.g. > 16; classroom or large demo) VNC viewers where bandwidth
@@ -970,16 +986,16 @@ make
number of repeaters.
* Wireframe copyrect detection for local user activity (e.g. someone
sitting at the physical display moving windows) Use
- [168]-nowireframelocal to disable.
- * The "[169]-N" option couples the VNC Display number to the X
+ [173]-nowireframelocal to disable.
+ * The "[174]-N" option couples the VNC Display number to the X
Display number. E.g. if your X DISPLAY is :2 then the VNC display
will be :2 (i.e. using port 5902). If that port is taken x11vnc
will exit.
- * Option [170]-nodpms to avoid problems with programs like KDE's
+ * Option [175]-nodpms to avoid problems with programs like KDE's
kdesktop_lock that keep restarting the screen saver every few
seconds.
* To automatically fix the common mouse motion problem on XINERAMA
- (multi-headed) displays, the [171]-xwarppointer option is enabled
+ (multi-headed) displays, the [176]-xwarppointer option is enabled
by default when XINERAMA is active.
If you have a Mac please try out the native Mac OS X support, build
@@ -989,62 +1005,62 @@ make
Here are some features that appeared in the 0.8.3 release:
- * The [172]-ssl option provides SSL encryption and authentication
- natively via the [173]www.openssl.org library. One can use from a
+ * The [177]-ssl option provides SSL encryption and authentication
+ natively via the [178]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 [174]-stunnel option starts up a SSL tunnel
+ * Similar to -ssl, the [179]-stunnel option starts up a SSL tunnel
server stunnel (that must be installed separately on the system:
- [175]www.stunnel.org [176]stunnel.mirt.net ) to allow only
+ [180]www.stunnel.org [181]stunnel.mirt.net ) to allow only
encrypted SSL connections from the network.
- * The [177]-sslverify option allows for authenticating VNC clients
+ * The [182]-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
- [178]-sslGenCert, [179]-sslGenCA, and [180]related options.
+ [183]-sslGenCert, [184]-sslGenCA, and [185]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 [181]-https port option). A wrapper shell script
- [182]ss_vncviewer is also provided that sets up a stunnel
- client-side tunnel on Unix systems. See [183]Enhanced TightVNC
+ separate [186]-https port option). A wrapper shell script
+ [187]ss_vncviewer is also provided that sets up a stunnel
+ client-side tunnel on Unix systems. See [188]Enhanced TightVNC
Viewer (SSVNC) for other SSL/SSH viewer possibilities.
- * The [184]-unixpw option supports Unix username and password
- authentication (a simpler variant is the [185]-unixpw_nis option
+ * The [189]-unixpw option supports Unix username and password
+ authentication (a simpler variant is the [190]-unixpw_nis option
that works in environments where the encrypted passwords are
- readable, e.g. NIS). The [186]-ssl or [187]-localhost +
- [188]-stunnel options are enforced in this mode to prevent
+ readable, e.g. NIS). The [191]-ssl or [192]-localhost +
+ [193]-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 [189]-unixpw with "[190]-display WAIT:cmd=FINDDISPLAY" or
+ * Coupling [194]-unixpw with "[195]-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 [191]automatically. See the [192]-svc and the
- [193]-xdmsvc aliases.
- * Hooks are provided in the [194]-unixpw_cmd and "[195]-passwdfile
+ connected to [196]automatically. See the [197]-svc and the
+ [198]-xdmsvc aliases.
+ * Hooks are provided in the [199]-unixpw_cmd and "[200]-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 [196]-rawfb only operation (e.g.
+ "./configure --without-x" for [201]-rawfb only operation (e.g.
embedded linux console devices).
- * The [197]-rotate option enables you to rotate or reflect the
+ * The [202]-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 "[198]-ultrafilexfer" alias is provided and improved UltraVNC
+ * The "[203]-ultrafilexfer" alias is provided and improved UltraVNC
filetransfer rates have been achieved.
- * Under the "[199]-connect_or_exit host" option x11vnc will exit
+ * Under the "[204]-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 "[200]-rawfb rand" and "-rawfb none" options are useful for
+ * The "[205]-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 "[201]-verbose"
+ * Reduced spewing of information at startup, use "[206]-verbose"
(also "-v") to turn it back on for debugging or if you are going
to send me a problem report.
- Here are some [202]Previous Release Notes
+ Here are some [207]Previous Release Notes
_________________________________________________________________
Some Notes:
@@ -1071,13 +1087,13 @@ 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 [203]-solid [color] option that
+ Update: As of Feb/2005 x11vnc has the [208]-solid [color] option that
works on recent GNOME, KDE, and CDE and also on classic X (background
image is on the root window). Update: As of Oct/2007 x11vnc has the
- [204]-ncache option that does a reasonable job caching the background
+ [209]-ncache option that does a reasonable job caching the background
(and other) pixmap data on the viewer side.
- I also find the [205]TightVNC encoding gives the best response for my
+ I also find the [210]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.
@@ -1089,17 +1105,17 @@ make
is X11's default listening port). Had port 5900 been taken by some
other application, x11vnc would have next tried 5901. That would mean
the viewer command above should be changed to vncviewer
- far-away.east:1. You can force the port with the "[206]-rfbport NNNN"
+ far-away.east:1. You can force the port with the "[211]-rfbport NNNN"
option where NNNN is the desired port number. If that port is already
- taken, x11vnc will exit immediately. The "[207]-N" option will try to
+ taken, x11vnc will exit immediately. The "[212]-N" option will try to
match the VNC display number to the X display. (also see the "SunRay
Gotcha" note below)
Options: x11vnc has (far too) many features that may be activated
- via its [208]command line options. Useful options are, e.g., -scale to
+ via its [213]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
- [209]-storepasswd option can be used to create the password file).
+ [214]-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
@@ -1127,7 +1143,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 [210]even more
+ window manager decorations. There will be an [215]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
@@ -1137,8 +1153,8 @@ make
Sun Ray Notes:
- You can run x11vnc on your (connected or disconnected) [211]SunRay
- session. Here are some [212]notes on SunRay usage with x11vnc.
+ You can run x11vnc on your (connected or disconnected) [216]SunRay
+ session. Here are some [217]notes on SunRay usage with x11vnc.
_________________________________________________________________
@@ -1150,7 +1166,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
- [213]-scrollcopyrect and [214]-wireframe speedups using the
+ [218]-scrollcopyrect and [219]-wireframe speedups using the
CopyRect VNC encoding and other things, but they only speed up
some activities, not all.
* A rate limiting factor for x11vnc performance is that graphics
@@ -1199,18 +1215,18 @@ make
but we mention it because it may be of use for special purpose
applications. You may need to use the "-cc 4" option to force Xvfb
to use a TrueColor visual instead of DirectColor. See also the
- description of the [215]-create option that does all of this
+ description of the [220]-create option that does all of this
automatically for you.
Also, a faster and more accurate way is to use the "dummy"
XFree86/Xorg device driver (or our Xdummy wrapper script). See
- [216]this FAQ for details.
+ [221]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" [217]options, however, for a partial hack
+ X" and "-cursor some" [222]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 [218]-overlay option is also supplied. A similar thing is done
+ the [223]-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
@@ -1218,18 +1234,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, see [219]the FAQ on this below.)
+ redirectors do exist, e.g. esd, see [224]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 [220]-scrollcopyrect option
+ * The scroll detection algorithm for the [225]-scrollcopyrect option
can give choppy or bunched up transient output and occasionally
painting errors.
* Using -threads can expose some bugs/crashes in libvncserver.
- Please feel free to [221]contact me if you have any questions,
+ Please feel free to [226]contact me if you have any questions,
problems, or comments about x11vnc, etc.
- Also, some people ask if they can make a donation, see [222]this link
+ Also, some people ask if they can make a donation, see [227]this link
for that.
_________________________________________________________________
@@ -1238,379 +1254,379 @@ make
[Building and Starting]
- [223]Q-1: I can't get x11vnc to start up. It says "XOpenDisplay failed
+ [228]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?
- [224]Q-2: I can't get x11vnc and/or libvncserver to compile.
+ [229]Q-2: I can't get x11vnc and/or libvncserver to compile.
- [225]Q-3: I just built x11vnc successfully, but when I use it my
+ [230]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).
- [226]Q-4: Help, I need to run x11vnc on Solaris 2.5.1 (or other old
+ [231]Q-4: Help, I need to run x11vnc on Solaris 2.5.1 (or other old
Unix/Linux) and it doesn't compile!
- [227]Q-5: Where can I get a precompiled x11vnc binary for my Operating
+ [232]Q-5: Where can I get a precompiled x11vnc binary for my Operating
System?
- [228]Q-6: Where can I get a VNC Viewer binary (or source code) for the
+ [233]Q-6: Where can I get a VNC Viewer binary (or source code) for the
Operating System I will be viewing from?
- [229]Q-7: How can I see all of x11vnc's command line options and
+ [234]Q-7: How can I see all of x11vnc's command line options and
documentation on how to use them?
- [230]Q-8: I don't like typing arcane command line options every time I
+ [235]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?
- [231]Q-9: How can I get the GUI to run in the System Tray, or at least
+ [236]Q-9: How can I get the GUI to run in the System Tray, or at least
be a smaller, simpler icon?
- [232]Q-10: How can I get x11vnc to listen on a different port besides
+ [237]Q-10: How can I get x11vnc to listen on a different port besides
the default VNC port (5900)?
- [233]Q-11: My Firewall/Router doesn't allow VNC Viewers to connect to
+ [238]Q-11: My Firewall/Router doesn't allow VNC Viewers to connect to
x11vnc.
- [234]Q-12: Is it possible for a VNC Viewer and a VNC Server to connect
+ [239]Q-12: Is it possible for a VNC Viewer and a VNC Server to connect
to each other even though both are behind Firewalls that block all
incoming connections?
- [235]Q-13: Can I make x11vnc more quiet and also go into the
+ [240]Q-13: Can I make x11vnc more quiet and also go into the
background after starting up?
- [236]Q-14: Sometimes when a VNC viewer dies abruptly, x11vnc also dies
+ [241]Q-14: 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.
- [237]Q-15: The Windows TightVNC 1.3.9 Viewer cannot connect to x11vnc.
+ [242]Q-15: The Windows TightVNC 1.3.9 Viewer cannot connect to x11vnc.
- [238]Q-16: KDE's krdc VNC viewer cannot connect to x11vnc.
+ [243]Q-16: KDE's krdc VNC viewer cannot connect to x11vnc.
- [239]Q-17: Are there any build-time customizations possible, e.g.
+ [244]Q-17: Are there any build-time customizations possible, e.g.
change defaults, create a smaller binary, etc?
[Win2VNC Related]
- [240]Q-18: I have two separate machine displays in front of me, one
+ [245]Q-18: 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?
- [241]Q-19: I am running Win2VNC on my Windows machine and "x11vnc
+ [246]Q-19: 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
- [242]Q-20: Can I run "x11vnc -nofb" on a Mac OS X machine to redirect
+ [247]Q-20: 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]
- [243]Q-21: The X display I run x11vnc on is only 8 bits per pixel
+ [248]Q-21: 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.
- [244]Q-22: Color problems: Why are the colors for some windows
+ [249]Q-22: 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.
- [245]Q-23: I am on a high color system (depth >= 24) but I seem to
+ [250]Q-23: I am on a high color system (depth >= 24) but I seem to
have colormap problems. They either flash or everything is very dark.
- [246]Q-24: How do I figure out the window id to supply to the -id
+ [251]Q-24: How do I figure out the window id to supply to the -id
windowid option?
- [247]Q-25: Why don't menus or other transient windows come up when I
+ [252]Q-25: Why don't menus or other transient windows come up when I
am using the -id windowid option to view a single application window?
- [248]Q-26: My X display is depth 24 at 24bpp (instead of the normal
+ [253]Q-26: 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]
- [249]Q-27: Can I use x11vnc to view and interact with an Xterminal
+ [254]Q-27: 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?
- [250]Q-28: How do I get my X permissions (MIT-MAGIC-COOKIE file)
+ [255]Q-28: How do I get my X permissions (MIT-MAGIC-COOKIE file)
correct for a Unix/Linux machine acting as an Xterminal?
[Sun Rays]
- [251]Q-29: I'm having trouble using x11vnc with my Sun Ray session.
+ [256]Q-29: I'm having trouble using x11vnc with my Sun Ray session.
[Remote Control]
- [252]Q-30: How do I stop x11vnc once it is running in the background?
+ [257]Q-30: How do I stop x11vnc once it is running in the background?
- [253]Q-31: Can I change settings in x11vnc without having to restart
+ [258]Q-31: Can I change settings in x11vnc without having to restart
it? Can I remote control it?
[Security and Permissions]
- [254]Q-32: How do I create a VNC password for use with x11vnc?
+ [259]Q-32: How do I create a VNC password for use with x11vnc?
- [255]Q-33: Can I make it so -storepasswd doesn't show my password on
+ [260]Q-33: Can I make it so -storepasswd doesn't show my password on
the screen?
- [256]Q-34: Can I have two passwords for VNC viewers, one for full
+ [261]Q-34: Can I have two passwords for VNC viewers, one for full
access and the other for view-only access to the display?
- [257]Q-35: Can I have as many full-access and view-only passwords as I
+ [262]Q-35: Can I have as many full-access and view-only passwords as I
like?
- [258]Q-36: Does x11vnc support Unix usernames and passwords? Can I
+ [263]Q-36: Does x11vnc support Unix usernames and passwords? Can I
further limit the set of Unix usernames who can connect to the VNC
desktop?
- [259]Q-37: Can I supply an external program to provide my own custom
+ [264]Q-37: 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)?
- [260]Q-38: Why does x11vnc exit as soon as the VNC viewer disconnects?
+ [265]Q-38: 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?
- [261]Q-39: Can I limit which machines incoming VNC clients can connect
+ [266]Q-39: Can I limit which machines incoming VNC clients can connect
from?
- [262]Q-40: How do I build x11vnc/libvncserver with libwrap
+ [267]Q-40: How do I build x11vnc/libvncserver with libwrap
(tcp_wrappers) support?
- [263]Q-41: Can I have x11vnc only listen on one network interface
+ [268]Q-41: 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?
- [264]Q-42: Now that -localhost implies listening only on the loopback
+ [269]Q-42: 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?
- [265]Q-43: Can I fine tune what types of user input are allowed? E.g.
+ [270]Q-43: 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?
- [266]Q-44: Can I prompt the user at the local X display whether the
+ [271]Q-44: 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?
- [267]Q-45: I start x11vnc as root because it is launched via inetd(8)
+ [272]Q-45: 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?
- [268]Q-46: I use a screen-lock when I leave my workstation (e.g.
+ [273]Q-46: 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?
- [269]Q-47: Can I have x11vnc automatically lock the screen when I
+ [274]Q-47: Can I have x11vnc automatically lock the screen when I
disconnect the VNC viewer?
[Encrypted Connections]
- [270]Q-48: How can I tunnel my connection to x11vnc via an encrypted
+ [275]Q-48: How can I tunnel my connection to x11vnc via an encrypted
SSH channel between two Unix machines?
- [271]Q-49: How can I tunnel my connection to x11vnc via an encrypted
+ [276]Q-49: How can I tunnel my connection to x11vnc via an encrypted
SSH channel from Windows using an SSH client like Putty?
- [272]Q-50: How can I tunnel my connection to x11vnc via an encrypted
+ [277]Q-50: How can I tunnel my connection to x11vnc via an encrypted
SSL channel using an external tool like stunnel?
- [273]Q-51: Does x11vnc have built-in SSL tunneling?
+ [278]Q-51: Does x11vnc have built-in SSL tunneling?
- [274]Q-52: How do I use VNC Viewers with built-in SSL tunneling?
+ [279]Q-52: How do I use VNC Viewers with built-in SSL tunneling?
- [275]Q-53: How do I use the Java applet VNC Viewer with built-in SSL
+ [280]Q-53: How do I use the Java applet VNC Viewer with built-in SSL
tunneling when going through a Web Proxy?
- [276]Q-54: Can Apache web server act as a gateway for users to connect
+ [281]Q-54: 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?
- [277]Q-55: Can I create and use my own SSL Certificate Authority (CA)
+ [282]Q-55: Can I create and use my own SSL Certificate Authority (CA)
with x11vnc?
[Display Managers and Services]
- [278]Q-56: How can I run x11vnc as a "service" that is always
+ [283]Q-56: How can I run x11vnc as a "service" that is always
available?
- [279]Q-57: How can I use x11vnc to connect to an X login screen like
+ [284]Q-57: 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).
- [280]Q-58: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
+ [285]Q-58: Can I run x11vnc out of inetd(8)? How about xinetd(8)?
- [281]Q-59: Can I have x11vnc advertise its VNC service and port via
+ [286]Q-59: Can I have x11vnc advertise its VNC service and port via
mDNS / Zeroconf (e.g. Avahi) so VNC viewers on the local network can
detect it automatically?
- [282]Q-60: Can I have x11vnc allow a user to log in with her UNIX
+ [287]Q-60: Can I have x11vnc allow a user to log in with her UNIX
username and password and then have it find her X session display on
that machine and then connect to it? How about starting an X session
if one cannot be found?
- [283]Q-61: Can I have x11vnc restart itself after it terminates?
+ [288]Q-61: Can I have x11vnc restart itself after it terminates?
- [284]Q-62: How do I make x11vnc work with the Java VNC viewer applet
+ [289]Q-62: How do I make x11vnc work with the Java VNC viewer applet
in a web browser?
- [285]Q-63: Are reverse connections (i.e. the VNC server connecting to
+ [290]Q-63: Are reverse connections (i.e. the VNC server connecting to
the VNC viewer) using "vncviewer -listen" and vncconnect(1) supported?
- [286]Q-64: Can reverse connections be made to go through a Web or
+ [291]Q-64: Can reverse connections be made to go through a Web or
SOCKS proxy or SSH?
- [287]Q-65: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a
+ [292]Q-65: Can I use x11vnc as a replacement for Xvnc? (i.e. not for a
real display, but for a virtual one I keep around).
- [288]Q-66: How can I use x11vnc on "headless" machines? Why might I
+ [293]Q-66: How can I use x11vnc on "headless" machines? Why might I
want to?
[Resource Usage and Performance]
- [289]Q-67: I have lots of memory, but why does x11vnc fail with
+ [294]Q-67: 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)?
- [290]Q-68: How can I make x11vnc use less system resources?
+ [295]Q-68: How can I make x11vnc use less system resources?
- [291]Q-69: How can I make x11vnc use MORE system resources?
+ [296]Q-69: How can I make x11vnc use MORE system resources?
- [292]Q-70: I use x11vnc over a slow link with high latency (e.g.
+ [297]Q-70: I use x11vnc over a slow link with high latency (e.g.
dialup modem or broadband), is there anything I can do to speed things
up?
- [293]Q-71: Does x11vnc support the X DAMAGE Xserver extension to find
+ [298]Q-71: Does x11vnc support the X DAMAGE Xserver extension to find
modified regions of the screen quickly and efficiently?
- [294]Q-72: My OpenGL application shows no screen updates unless I
+ [299]Q-72: My OpenGL application shows no screen updates unless I
supply the -noxdamage option to x11vnc.
- [295]Q-73: When I drag windows around with the mouse or scroll up and
+ [300]Q-73: 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?
- [296]Q-74: Why not do something like wireframe animations to avoid the
+ [301]Q-74: Why not do something like wireframe animations to avoid the
windows "lurching" when being moved or resized?
- [297]Q-75: Can x11vnc try to apply heuristics to detect when a window
+ [302]Q-75: Can x11vnc try to apply heuristics to detect when a window
is scrolling its contents and use the CopyRect encoding for a speedup?
- [298]Q-76: Can x11vnc do client-side caching of pixel data? I.e. so
+ [303]Q-76: 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]
- [299]Q-77: Why isn't the mouse cursor shape (the little icon shape
+ [304]Q-77: Why isn't the mouse cursor shape (the little icon shape
where the mouse pointer is) correct as I move from window to window?
- [300]Q-78: When using XFIXES cursorshape mode, some of the cursors
+ [305]Q-78: 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?
- [301]Q-79: In XFIXES mode, are there any hacks to handle cursor
+ [306]Q-79: In XFIXES mode, are there any hacks to handle cursor
transparency ("alpha channel") exactly?
[Mouse Pointer]
- [302]Q-80: Why does the mouse arrow just stay in one corner in my
+ [307]Q-80: Why does the mouse arrow just stay in one corner in my
vncviewer, whereas my cursor (that does move) is just a dot?
- [303]Q-81: Can I take advantage of the TightVNC extension to the VNC
+ [308]Q-81: 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)?
- [304]Q-82: Is it possible to swap the mouse buttons (e.g. left-handed
+ [309]Q-82: 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]
- [305]Q-83: How can I get my AltGr and Shift modifiers to work between
+ [310]Q-83: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages?
- [306]Q-84: When I try to type a "<" (i.e. less than) instead I get ">"
+ [311]Q-84: When I try to type a "<" (i.e. less than) instead I get ">"
(i.e. greater than)! Strangely, typing ">" works OK!!
- [307]Q-85: When I try to type a "<" (i.e. less than) instead I get
+ [312]Q-85: When I try to type a "<" (i.e. less than) instead I get
"<," (i.e. an extra comma).
- [308]Q-86: I'm using an "international" keyboard (e.g. German "de", or
+ [313]Q-86: 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?
- [309]Q-87: When typing I sometimes get double, triple, or more of my
+ [314]Q-87: 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?
- [310]Q-88: The x11vnc -norepeat mode is in effect, but I still get
+ [315]Q-88: The x11vnc -norepeat mode is in effect, but I still get
repeated keystrokes!!
- [311]Q-89: After using x11vnc for a while, I find that I cannot type
+ [316]Q-89: After using x11vnc for a while, I find that I cannot type
some (or any) characters or my mouse clicks and drags no longer have
any affect. What happened?
- [312]Q-90: The machine where I run x11vnc has an AltGr key, but the
+ [317]Q-90: 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?
- [313]Q-91: I have a Sun machine I run x11vnc on. Its Sun keyboard has
+ [318]Q-91: 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)
- [314]Q-92: Running x11vnc on HP-UX I cannot type "#" I just get a "3"
+ [319]Q-92: Running x11vnc on HP-UX I cannot type "#" I just get a "3"
instead.
- [315]Q-93: Can I map a keystroke to a mouse button click on the remote
+ [320]Q-93: Can I map a keystroke to a mouse button click on the remote
machine?
- [316]Q-94: How can I get Caps_Lock to work between my VNC viewer and
+ [321]Q-94: How can I get Caps_Lock to work between my VNC viewer and
x11vnc?
[Screen Related Issues and Features]
- [317]Q-95: The remote display is larger (in number of pixels) than the
+ [322]Q-95: 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?
- [318]Q-96: Does x11vnc support server-side framebuffer scaling? (E.g.
+ [323]Q-96: Does x11vnc support server-side framebuffer scaling? (E.g.
to make the desktop smaller).
- [319]Q-97: Does x11vnc work with Xinerama? (i.e. multiple monitors
+ [324]Q-97: Does x11vnc work with Xinerama? (i.e. multiple monitors
joined together to form one big, single screen).
- [320]Q-98: Can I use x11vnc on a multi-headed display that is not
+ [325]Q-98: Can I use x11vnc on a multi-headed display that is not
Xinerama (i.e. separate screens :0.0, :0.1, ... for each monitor)?
- [321]Q-99: Can x11vnc show only a portion of the display? (E.g. for a
+ [326]Q-99: Can x11vnc show only a portion of the display? (E.g. for a
special purpose application).
- [322]Q-100: Does x11vnc support the XRANDR (X Resize, Rotate and
+ [327]Q-100: Does x11vnc support the XRANDR (X Resize, Rotate and
Reflection) extension? Whenever I rotate or resize the screen x11vnc
just seems to crash.
- [323]Q-101: Independent of any XRANDR, can I have x11vnc rotate and/or
+ [328]Q-101: 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).
- [324]Q-102: Why is the view in my VNC viewer completely black? Or why
+ [329]Q-102: Why is the view in my VNC viewer completely black? Or why
is everything flashing around randomly?
- [325]Q-103: I use Linux Virtual Consoles (VC's) to implement 'Fast
+ [330]Q-103: 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
@@ -1618,80 +1634,80 @@ make
otherwise all messed up unless the X session x11vnc is attached to is
in the active VC?
- [326]Q-104: I am using x11vnc where my local machine has "popup/hidden
+ [331]Q-104: 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 each other.
What can I do?
- [327]Q-105: Help! x11vnc and my KDE screensaver keep switching each
+ [332]Q-105: Help! x11vnc and my KDE screensaver keep switching each
other on and off every few seconds.
- [328]Q-106: I am running the beryl 3D window manager (or MythTv,
+ [333]Q-106: I am running the beryl 3D window manager (or MythTv,
Google Earth, or some other OpenGL app) and I do not get screen
updates in x11vnc.
- [329]Q-107: Can I use x11vnc to view my VMWare session remotely?
+ [334]Q-107: Can I use x11vnc to view my VMWare session remotely?
[Exporting non-X11 devices via VNC]
- [330]Q-108: Can non-X devices (e.g. a raw framebuffer) be viewed (and
+ [335]Q-108: Can non-X devices (e.g. a raw framebuffer) be viewed (and
even controlled) via VNC with x11vnc?
- [331]Q-109: Can I export via VNC a Webcam or TV tuner framebuffer
+ [336]Q-109: Can I export via VNC a Webcam or TV tuner framebuffer
using x11vnc?
- [332]Q-110: Can I connect via VNC to a Qt-embedded/Qtopia application
+ [337]Q-110: 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)?
- [333]Q-111: Now that non-X11 devices can be exported via VNC using
+ [338]Q-111: 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?
- [334]Q-112: Does x11vnc support Mac OS X Aqua/Quartz displays natively
+ [339]Q-112: Does x11vnc support Mac OS X Aqua/Quartz displays natively
(i.e. no X11 involved)?
- [335]Q-113: Can x11vnc be used as a VNC reflector/repeater to improve
+ [340]Q-113: Can x11vnc be used as a VNC reflector/repeater to improve
performance for the case of a large number of simultaneous VNC viewers
(e.g. classroom broadcasting or a large demo)?
- [336]Q-114: Can x11vnc be used during a Linux, Solaris, etc. system
+ [341]Q-114: Can x11vnc be used during a Linux, Solaris, etc. system
Installation so the Installation can be done remotely?
[Misc: Clipboard, File Transfer/Sharing, Printing, Sound, Beeps,
Thanks, etc.]
- [337]Q-115: Does the Clipboard/Selection get transferred between the
+ [342]Q-115: Does the Clipboard/Selection get transferred between the
vncviewer and the X display?
- [338]Q-116: Can I use x11vnc to record a Shock Wave Flash (or other
+ [343]Q-116: 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?
- [339]Q-117: Can I transfer files back and forth with x11vnc?
+ [344]Q-117: Can I transfer files back and forth with x11vnc?
- [340]Q-118: Which UltraVNC extensions are supported?
+ [345]Q-118: Which UltraVNC extensions are supported?
- [341]Q-119: Can x11vnc emulate UltraVNC's Single Click helpdesk mode
+ [346]Q-119: Can x11vnc emulate UltraVNC's Single Click helpdesk mode
for Unix? I.e. something very simple for a naive user to initiate a
reverse vnc connection from their Unix desktop to a helpdesk
operator's VNC Viewer.
- [342]Q-120: Can I (temporarily) mount my local (viewer-side)
+ [347]Q-120: Can I (temporarily) mount my local (viewer-side)
Windows/Samba File share on the machine where x11vnc is running?
- [343]Q-121: Can I redirect CUPS print jobs from the remote desktop
+ [348]Q-121: Can I redirect CUPS print jobs from the remote desktop
where x11vnc is running to a printer on my local (viewer-side)
machine?
- [344]Q-122: How can I hear the sound (audio) from the remote
+ [349]Q-122: How can I hear the sound (audio) from the remote
applications on the desktop I am viewing via x11vnc?
- [345]Q-123: Why don't I hear the "Beeps" in my X session (e.g. when
+ [350]Q-123: Why don't I hear the "Beeps" in my X session (e.g. when
typing tput bel in an xterm)?
- [346]Q-124: Does x11vnc work with IPv6?
+ [351]Q-124: Does x11vnc work with IPv6?
- [347]Q-125: Thanks for your program and for your help! Can I make a
+ [352]Q-125: Thanks for your program and for your help! Can I make a
donation?
_________________________________________________________________
@@ -1704,7 +1720,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 [348]-display
+ on). Set your DISPLAY environment variable (or use the [353]-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).
@@ -1721,9 +1737,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 [349]this Howto for much info on X11 permissions. For example, you
+ or [354]this Howto for much info on X11 permissions. For example, you
may need to set your XAUTHORITY environment variable (or use the
- [350]-auth option) to point to the correct MIT-MAGIC-COOKIE file (e.g.
+ [355]-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
@@ -1745,10 +1761,10 @@ 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 [351]this faq for other display manager
+ read the gdm cookie file, see [356]this faq for other display manager
cookie file names).
- Note as of Feb/2007 you can also try the [352]-find option instead of
+ Note as of Feb/2007 you can also try the [357]-find option instead of
"-display ..." and see if that finds your display and Xauthority.
Less safe, but to avoid figuring out where the correct XAUTHORITY file
@@ -1757,7 +1773,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 soon be of use
- (please read the documentation on the [353]-users option).
+ (please read the documentation on the [358]-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
@@ -1776,7 +1792,7 @@ make
properly).
Firewalls: Speaking of permissions, it should go without saying that
- the host-level [354]firewall will need to be configured to allow
+ the host-level [359]firewall will need to be configured to allow
connections in on a port. E.g. 5900 (default VNC port) or 22 (default
SSH port for tunnelling VNC). Most systems these days have firewalls
turned on by default, so you will actively have to do something to
@@ -1854,7 +1870,7 @@ libssl.so libcrypto.so libcrypt.so
the above list may be out of date. So only use the above lists as
hints for the package names that are needed.
- Have a look at [355]Misc. Build Problems for additional fixes.
+ Have a look at [360]Misc. Build Problems for additional fixes.
Note: there is growing trend in Linux and other distros to slice up
core X11 software into more and smaller packages. So be prepared for
@@ -1872,7 +1888,7 @@ libssl.so libcrypto.so libcrypt.so
ii libssl0.9.8 0.9.8a-7ubuntu SSL shared libraries
(in fact it should have installed both by default if it knew what it
- was doing). See [356]here too.
+ was doing). See [361]here too.
Q-3: I just built x11vnc successfully, but when I use it my keystrokes
@@ -1946,7 +1962,7 @@ h
earlier and perhaps non-Solaris):
First use the environment settings (CPPFLAGS, LDFLAGS, etc.) in the
- above [357]Solaris build script to run the configure command. That
+ above [362]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
@@ -1972,7 +1988,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
- [358]SunOS 4.x
+ [363]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
@@ -1982,33 +1998,33 @@ typedef unsigned int in_addr_t;
Q-5: Where can I get a precompiled x11vnc binary for my Operating
System?
- Hopefully the [359]build steps above and [360]FAQ provide enough info
+ Hopefully the [364]build steps above and [365]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:
- Slackware: (.tgz) [361]http://www.linuxpackages.net/
-
- Redhat/Fedora: (.rpm) [362]http://dag.wieers.com/packages/x11vnc/
- [363]http://dries.ulyssis.org/rpm/packages/x11vnc SuSE: (.rpm)
- [364]http://linux01.gwdg.de/~pbleser/ Gentoo: (info)
- [365]http://gentoo-wiki.com/ and [366]http://gentoo-portage.com/
- FreeBSD: (.tbz) [367]http://www.freebsd.org/
- [368]http://www.freshports.org/net/x11vnc NetBSD: (src)
- [369]http://pkgsrc.se/x11/x11vnc Arch Linux: (.tgz)
- [370]http://www.archlinux.org/ Nokia 770 (.deb)
- [371]http://mike.saunby.googlepages.com/x11vncfornokia7702 Sharp
- Zaurus [372]http://www.focv.com/ Debian: (.deb)
- [373]http://packages.debian.org/x11vnc (N.B: often unmaintained; might
+ Slackware: (.tgz) [366]http://www.linuxpackages.net/
+
+ Redhat/Fedora: (.rpm) [367]http://dag.wieers.com/packages/x11vnc/
+ [368]http://dries.ulyssis.org/rpm/packages/x11vnc SuSE: (.rpm)
+ [369]http://linux01.gwdg.de/~pbleser/ Gentoo: (info)
+ [370]http://gentoo-wiki.com/ and [371]http://gentoo-portage.com/
+ FreeBSD: (.tbz) [372]http://www.freebsd.org/
+ [373]http://www.freshports.org/net/x11vnc NetBSD: (src)
+ [374]http://pkgsrc.se/x11/x11vnc Arch Linux: (.tgz)
+ [375]http://www.archlinux.org/ Nokia 770 (.deb)
+ [376]http://mike.saunby.googlepages.com/x11vncfornokia7702 Sharp
+ Zaurus [377]http://www.focv.com/ Debian: (.deb)
+ [378]http://packages.debian.org/x11vnc (N.B: often unmaintained; might
be better to compile from source) Solaris: (pkg)
- [374]http://www.sunfreeware.com/ (N.B: very old; better to compile
- from source) OpenBSD: (.tgz) [375]http://www.openbsd.org/ (N.B: very
+ [379]http://www.sunfreeware.com/ (N.B: very old; better to compile
+ from source) OpenBSD: (.tgz) [380]http://www.openbsd.org/ (N.B: very
old and unmaintained; better to compile from source)
If the above binaries don't work and building x11vnc on your OS fails
- (and all else fails!) you can try one of [376]My Collection of x11vnc
+ (and all else fails!) you can try one of [381]My Collection of x11vnc
Binaries for various OS's and x11vnc releases.
As a general note, the x11vnc program is simple enough you don't
@@ -2026,7 +2042,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 [377]-httpdir option. E.g.:
+ tarball and point x11vnc to it via the [382]-httpdir option. E.g.:
x11vnc -httpdir /path/to/x11vnc-0.8.3/classes/ssl ...
@@ -2035,11 +2051,11 @@ typedef unsigned int in_addr_t;
To obtain VNC viewers for the viewing side (Windows, Mac OS, or Unix)
try here:
- * [378]http://www.tightvnc.com/download.html
- * [379]http://www.realvnc.com/download-free.html
- * [380]http://sourceforge.net/projects/cotvnc/
- * [381]http://www.ultravnc.com/
- * [382]Our Enhanced TightVNC Viewer (SSVNC)
+ * [383]http://www.tightvnc.com/download.html
+ * [384]http://www.realvnc.com/download-free.html
+ * [385]http://sourceforge.net/projects/cotvnc/
+ * [386]http://www.ultravnc.com/
+ * [387]Our Enhanced TightVNC Viewer (SSVNC)
[ssvnc.gif]
@@ -2049,7 +2065,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
- [383]here as well. Yes, x11vnc does have a lot of options, doesn't
+ [388]here as well. Yes, x11vnc does have a lot of options, doesn't
it...
@@ -2081,10 +2097,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 [384]-gui option for more info. Examples: "x11vnc
+ for testing. See the [389]-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 "[385]-gui tray" system tray mode.
+ also a "[390]-gui tray" system tray mode.
[tkx11vnc.gif]
@@ -2121,18 +2137,18 @@ display :0
PORT=59xx line to see which port it found, then subtract 5900 from it
for the VNC display number to enter into the VNC Viewer(s).
- The "[386]-N" option will try to match the VNC display number to the X
+ The "[391]-N" option will try to match the VNC display number to the X
display (e.g. X11 DISPLAY of :5 (port 6005) will have VNC display :5
(port 5905)).
- Also see the "[387]-autoport n" option to indicated at which value the
+ Also see the "[392]-autoport n" option to indicated at which value the
auto probing should start at.
Q-11: My Firewall/Router doesn't allow VNC Viewers to connect to
x11vnc.
- See the [388]Firewalls/Routers discussion.
+ See the [393]Firewalls/Routers discussion.
Q-12: Is it possible for a VNC Viewer and a VNC Server to connect to
@@ -2146,7 +2162,7 @@ display :0
In the following discussion, we will suppose port 5950 is being used
on the relay machine as the VNC port for the rendezvous.
- A way to rendezvous is to have the VNC Server start a [389]reverse
+ A way to rendezvous is to have the VNC Server start a [394]reverse
connection to the relay machine:
x11vnc -connect third-machine.net:5950 ...
@@ -2165,11 +2181,11 @@ display :0
the owner to allow you to install this software (and he would likely
need to open his server's firewall to allow the port through).
- It is recommended that [390]SSL is used for encryption (e.g.
- "[391]-ssl SAVE") when going over the internet.
+ It is recommended that [395]SSL is used for encryption (e.g.
+ "[396]-ssl SAVE") when going over the internet.
We have a prototype for performing a rendezvous via a Web Server
- acting as the relay machine. Download the [392]vncxfer CGI script and
+ acting as the relay machine. Download the [397]vncxfer CGI script and
see the instructions at the top.
Once that CGI script is set up on the website, both users go to, say,
@@ -2199,7 +2215,7 @@ display :0
port requirement (e.g. use HTTP/CGI itself for the transfer... it is
difficult to emulate a full-duplex TCP connection with them.)
- See also the [393]Firewalls/Routers discussion and [394]Reverse
+ See also the [398]Firewalls/Routers discussion and [399]Reverse
Connection Proxy discussion.
@@ -2227,7 +2243,7 @@ display :0
vncviewer -encodings "copyrect tight zrle hextile" localhost:0
(we assume the old-style -encodings option needs to be used. See
- [395]here for details.).
+ [400]here for details.).
If the SSH machine has been configured (see sshd_config(5)) with the
option GatewayPorts=yes, then the tunnel set up by the VNC Server will
@@ -2237,16 +2253,16 @@ display :0
only runs:
vncviewer third-machine.net:33
- In this case we recommend [396]SSL be used for encryption.
+ In this case we recommend [401]SSL be used for encryption.
The creation of both tunnels can be automated. As of Oct/2007 the
- [397]-ssh x11vnc option is available and so only this command needs to
+ [402]-ssh x11vnc option is available and so only this command needs to
be run on the VNC Server side:
x11vnc -ssh user@third-machine.net:33 ...
(the SSH passphrase may need to be supplied).
- To automate on the VNC Viewer side, the user can use the [398]Enhanced
+ To automate on the VNC Viewer side, the user can use the [403]Enhanced
TightVNC Viewer (SSVNC) by:
* Clicking on 'Use SSH'
* Entering user@third-machine.net:33 into 'VNC Host:Display' entry
@@ -2263,11 +2279,11 @@ display :0
Q-13: Can I make x11vnc more quiet and also go into the background
after starting up?
- Use the [399]-q and [400]-bg options, respectively. (also: -quiet is
+ Use the [404]-q and [405]-bg options, respectively. (also: -quiet is
an alias for -q)
Note that under -bg the stderr messages will be lost unless you use
- the "[401]-o logfile" option.
+ the "[406]-o logfile" option.
Q-14: Sometimes when a VNC viewer dies abruptly, x11vnc also dies with
@@ -2293,8 +2309,8 @@ display :0
Q-16: KDE's krdc VNC viewer cannot connect to x11vnc.
- This has been fixed in x11vnc version 0.8.4. More info [402]here,
- [403]here, and [404]here.
+ This has been fixed in x11vnc version 0.8.4. More info [407]here,
+ [408]here, and [409]here.
Q-17: Are there any build-time customizations possible, e.g. change
@@ -2302,7 +2318,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 [405]build notes for general background).
+ (see the [410]build notes for general background).
/*
* Mar/2006
* Build-time customization via CPPFLAGS.
@@ -2373,21 +2389,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 "[406]-nofb" option
+ Yes, for best response start up x11vnc with the "[411]-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 [407]x2vnc, however you would
+ This will also work X11 to X11 using [412]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:
- * [408]Original Win2VNC
- * [409]Enhanced Win2VNC and [410]sourceforge link
- * [411]x2vnc
- * [412]x2x also [413]here
- * [414]zvnc (MorphOS)
+ * [413]Original Win2VNC
+ * [414]Enhanced Win2VNC and [415]sourceforge link
+ * [416]x2vnc
+ * [417]x2x also [418]here
+ * [419]zvnc (MorphOS)
All of them will work with x11vnc (except x2x where it is not needed).
@@ -2407,7 +2423,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 [415]-visual option to allow you to force the framebuffer
+ has the [420]-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:
@@ -2421,7 +2437,7 @@ display :0
and keyboard input to it from Windows and X11 machines via Win2VNC and
x2vnc, respectively?
- Yes, as of Nov/2006 [416]you can. There may be a trick or two you'll
+ Yes, as of Nov/2006 [421]you can. There may be a trick or two you'll
need to do to get the Clipboard exchange between the machines to work.
@@ -2432,7 +2448,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 [417]-flashcmap option to have x11vnc watch for changes in the
+ Use the [422]-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
@@ -2441,13 +2457,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 [418]-8to24 (Jan/2006) can often remove the need
+ Also note the option [423]-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 (SCO unixware) the [419]-notruecolor option has
+ In some rare cases (SCO unixware) the [424]-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.
@@ -2458,13 +2474,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 [420]previous question regarding 8 bpp
+ You may want to review the [425]previous question regarding 8 bpp
PseudoColor.
- On some hardware (Sun/SPARC and SGI), the [421]-overlay option
+ On some hardware (Sun/SPARC and SGI), the [426]-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
- [422]-8to24 option may help (also discussed below).
+ [427]-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
@@ -2500,7 +2516,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 [423]-overlay x11vnc option (Aug/2004) to have x11vnc use the
+ use the [428]-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
@@ -2525,7 +2541,7 @@ TrueColor defdepth 24
Xsun, e.g. in your /etc/dt/config/Xservers file).
- The -8to24 mode: The [424]-8to24 x11vnc option (Jan/2006) is a kludge
+ The -8to24 mode: The [429]-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
@@ -2539,11 +2555,11 @@ TrueColor defdepth 24
32bpp view is exported via VNC.
Even on pure 8bpp displays it can be used as an alternative to
- [425]-flashcmap to avoid color flashing completely.
+ [430]-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: [426]-fixscreen V=3.0 to
+ row, or by using something like: [431]-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.
@@ -2556,23 +2572,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 [427]-8to24 help description for information on
+ speedup. See the [432]-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 [428]-id option to
+ possible workaround in this case is to use the [433]-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 [429]-8to24 method
+ for x11vnc to be able to do so in real time. The [434]-8to24 method
does this approximately and is somewhat usable. Fortunately the
- [430]-overlay option works for Solaris machines with overlay visuals
+ [435]-overlay option works for Solaris machines with overlay visuals
where most of this problem occurs.
@@ -2608,9 +2624,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 [431]color problems.
+ debugging x11vnc [436]color problems.
- Also, as of Dec/2004 you can use "[432]-id pick" to have x11vnc run
+ Also, as of Dec/2004 you can use "[437]-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.
@@ -2628,7 +2644,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 [433]-sid windowid option ("shifted" windowid).
+ polling, try the [438]-sid windowid option ("shifted" windowid).
Q-26: My X display is depth 24 at 24bpp (instead of the normal depth
@@ -2664,7 +2680,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 [434]-24to32 option to have
+ Update: as of Apr/2006 you can use the [439]-24to32 option to have
x11vnc dynamically transform the 24bpp pixel data to 32bpp. This extra
transformation could slow things down further however.
@@ -2674,7 +2690,7 @@ TrueColor defdepth 24
couldn't find suitable pixmap format" so evidently you cannot use
24bpp for the vncviewers to work on that X display.
- Note, however, that the Unix viewer in the [435]Enhanced TightVNC
+ Note, however, that the Unix viewer in the [440]Enhanced TightVNC
Viewer (SSVNC) project can handle 24bpp X displays. It does this by
requesting a 16bpp pixel format (or 8bpp if the -bgr233 option has
been supplied) from the VNC server, and translates that to 24bpp
@@ -2689,15 +2705,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 [436]-display option to point the display to that of
+ machine. Use the [441]-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 [437]-noshm option (this enables the polling
+ and finally supply the [442]-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 [438]-flipbyteorder if the
+ on the polling rate. You may also need [443]-flipbyteorder if the
colors get messed up due to endian byte order differences.
Q-28: How do I get my X permissions (MIT-MAGIC-COOKIE file) correct
@@ -2721,7 +2737,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
- [439]-auth option to point to the correct file). Other options include
+ [444]-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 -
@@ -2733,7 +2749,7 @@ TrueColor defdepth 24
details.
If the display name in the cookie file needs to be changed between the
- two hosts, see [440]this note on the "xauth add ..." command.
+ two hosts, see [445]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
@@ -2747,7 +2763,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 [441]poll
+ Not recommended, but as a last resort, you could have x11vnc [446]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...)
@@ -2776,34 +2792,34 @@ TrueColor defdepth 24
Q-29: I'm having trouble using x11vnc with my Sun Ray session.
- The [442]Sun Ray technology is a bit like "VNC done in hardware" (the
+ The [447]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 [443]this discussion of Sun Ray issues for
+ "Soft Ray". Please see [448]this discussion of Sun Ray issues for
solutions to problems.
- Also see the [444]Sun Ray Remote Control Toolkit that uses x11vnc.
+ Also see the [449]Sun Ray Remote Control Toolkit that uses x11vnc.
[Remote Control]
Q-30: 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
- number of parameters on the fly: see the [445]-remote and [446]-query
+ number of parameters on the fly: see the [450]-remote and [451]-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 [447]-forever option has not been supplied, x11vnc will
+ If the [452]-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 [448]-bg option
+ If you have not put x11vnc in the background via the [453]-bg option
or shell & operator, then simply press Ctrl-C in the shell where
x11vnc is running to stop it.
@@ -2813,16 +2829,16 @@ 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 [449]-clear_mods
- option and [450]-clear_keys option can be used to release pressed keys
- at startup and exit. The option [451]-clear_all will also try to unset
+ by tapping Ctrl, Shift, and Alt. Alternatively, the [454]-clear_mods
+ option and [455]-clear_keys option can be used to release pressed keys
+ at startup and exit. The option [456]-clear_all will also try to unset
Caps_Lock, Num_Lock, etc.
Q-31: Can I change settings in x11vnc without having to restart it?
Can I remote control it?
- Look at the [452]-remote (an alias is -R) and [453]-query (an alias is
+ Look at the [457]-remote (an alias is -R) and [458]-query (an alias is
-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
@@ -2833,8 +2849,8 @@ TrueColor defdepth 24
property) is used as the communication channel, so the X permissions
and DISPLAY must be set up correctly for communication to be possible.
- There is also a simple Tcl/Tk [454]gui based on this remote control
- mechanism. See the [455]-gui option for more info. You will need to
+ There is also a simple Tcl/Tk [459]gui based on this remote control
+ mechanism. See the [460]-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 small icon
window: "-gui icon". Use "-gui tray=setpass" for a naive user "Share
@@ -2850,12 +2866,12 @@ TrueColor defdepth 24
vncpasswd(1) program from those packages.
As of Jun/2004 x11vnc supports the -storepasswd "pass" "file"
- [456]option, which is the same functionality of storepasswd. Be sure
+ [461]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: "[457]-rfbauth
+ You then use the password via the x11vnc option: "[462]-rfbauth
$HOME/myvncpasswd"
As of Jan/2006 if you do not supply any arguments:
@@ -2867,11 +2883,11 @@ TrueColor defdepth 24
~/.mypass", the password you are prompted for will be stored in that
file.
- x11vnc also has the [458]-passwdfile and -passwd/-viewpasswd plain
+ x11vnc also has the [463]-passwdfile and -passwd/-viewpasswd plain
text (i.e. not obscured like the -rfbauth VNC passwords) password
options.
- You can use the [459]-usepw option to automatically use any password
+ You can use the [464]-usepw option to automatically use any password
file you have in ~/.vnc/passwd or ~/.vnc/passwdfile (the latter is
used with the -passwdfile option).
@@ -2903,14 +2919,14 @@ TrueColor defdepth 24
Q-34: 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 [460]-viewpasswd option to supply the
- view-only password. Note the full-access password option [461]-passwd
+ Yes, as of May/2004 there is the [465]-viewpasswd option to supply the
+ view-only password. Note the full-access password option [466]-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
- [462]-passwdfile option to specify a file containing plain text
+ [467]-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
@@ -2918,7 +2934,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 [463]-rfbauth
+ View-only passwords currently do not work for the [468]-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
@@ -2931,7 +2947,7 @@ TrueColor defdepth 24
Q-35: Can I have as many full-access and view-only passwords as I
like?
- Yes, as of Jan/2006 in the libvncserver CVS the [464]-passwdfile
+ Yes, as of Jan/2006 in the libvncserver CVS the [469]-passwdfile
option has been extended to handle as many passwords as you like. You
put the view-only passwords after a line __BEGIN_VIEWONLY__.
@@ -2941,7 +2957,7 @@ TrueColor defdepth 24
Q-36: 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 [465]-unixpw option that does
+ Update: as of Feb/2006 x11vnc has the [470]-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
@@ -2951,7 +2967,7 @@ TrueColor defdepth 24
A list of allowed Unix usernames may also be supplied along with
per-user settings.
- There is also the [466]-unixpw_nis option for non-shadow-password
+ There is also the [471]-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
@@ -2960,11 +2976,11 @@ TrueColor defdepth 24
shadow(5).
Two settings are enforced in the -unixpw and -unixpw_nis modes to
- provide extra security: the 1) [467]-localhost and 2) [468]-stunnel or
- [469]-ssl options. Without these one might send the Unix username and
+ provide extra security: the 1) [472]-localhost and 2) [473]-stunnel or
+ [474]-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 [470]-ssl (the constraint is automatically relaxed if
+ stunnel or [475]-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).
@@ -2983,13 +2999,13 @@ TrueColor defdepth 24
approximate at best.
One approximate method involves starting x11vnc with the
- [471]-localhost option. This basically requires the viewer user to log
+ [476]-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 [472]elsewhere on this page. [473]stunnel does this as well.
+ mentioned [477]elsewhere on this page. [478]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
@@ -3000,7 +3016,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 [474]-accept option that runs a program to examine the connection
+ the [479]-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
@@ -3036,7 +3052,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 [475]-accept where an external program may be run to decide if a
+ the [480]-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,
@@ -3044,26 +3060,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:
- * [476]-unixpw_cmd command
- * [477]-passwdfile cmd:command
- * [478]-passwdfile custom:command
+ * [481]-unixpw_cmd command
+ * [482]-passwdfile cmd:command
+ * [483]-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 [479]-unixpw_cmd the normal [480]-unixpw Login: and Password:
+ For [484]-unixpw_cmd the normal [485]-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 "[481]-passwdfile cmd:command" the command is run and it returns a
- password list (like a password file, see the [482]-passwdfile
+ For "[486]-passwdfile cmd:command" the command is run and it returns a
+ password list (like a password file, see the [487]-passwdfile
read:filename mode). Perhaps a dynamic, one-time password is retrieved
from a server this way.
- For "[483]-passwdfile custom:command" one gets complete control over
+ For "[488]-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
@@ -3077,7 +3093,7 @@ exit 1 # reject it
accepted, otherwise it is rejected.
In all cases the "RFB_*" environment variables are set as under
- [484]-accept. These variables can provide useful information for the
+ [489]-accept. These variables can provide useful information for the
externally supplied program to use.
@@ -3087,15 +3103,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 [485]-forever option (aka -many) to have
+ periods of time. Use the [490]-forever option (aka -many) to have
x11vnc wait for more connections after the first client disconnects.
- Use the [486]-shared option to have x11vnc allow multiple clients to
+ Use the [491]-shared option to have x11vnc allow multiple clients to
connect simultaneously.
- Recommended additional safety measures include using ssh ([487]see
- above), stunnel, [488]-ssl, or a VPN to authenticate and encrypt the
+ Recommended additional safety measures include using ssh ([492]see
+ above), stunnel, [493]-ssl, or a VPN to authenticate and encrypt the
viewer connections or to at least use the -rfbauth passwd-file
- [489]option to use VNC password protection (or [490]-passwdfile) It is
+ [494]option to use VNC password protection (or [495]-passwdfile) It is
up to YOU to apply these security measures, they will not be done for
you automatically.
@@ -3103,7 +3119,7 @@ exit 1 # reject it
Q-39: Can I limit which machines incoming VNC clients can connect
from?
- Yes, look at the [491]-allow and [492]-localhost options to limit
+ Yes, look at the [496]-allow and [497]-localhost options to limit
connections by hostname or IP address. E.g.
x11vnc -allow 192.168.0.1,192.168.0.2
@@ -3115,7 +3131,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
- [493](tcp_wrappers) and then use /etc/hosts.allow See hosts_access(5)
+ [498](tcp_wrappers) and then use /etc/hosts.allow See hosts_access(5)
for complete details.
@@ -3135,7 +3151,7 @@ exit 1 # reject it
is "vnc", e.g.:
vnc: 192.168.100.3 .example.com
- Note that if you run x11vnc out of [494]inetd you do not need to build
+ Note that if you run x11vnc out of [499]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.
@@ -3144,15 +3160,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 "[495]-listen ipaddr" option that enables
+ As of Mar/2005 there is the "[500]-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
- "[496]-allow host1,..." option to allow only specific hosts in.
+ "[501]-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 [497]-localhost now implies "-listen localhost" since that
+ The option [502]-localhost now implies "-listen localhost" since that
is what most people expect it to do.
@@ -3160,7 +3176,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 "[498]-allow localhost". Unlike [499]-localhost
+ To do this specify "[503]-allow localhost". Unlike [504]-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
@@ -3171,7 +3187,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 [500]-input option allows you to do this. "K",
+ As of Feb/2005, the [505]-input option allows you to do this. "K",
"M", "B", "C", and "F" stand for Keystroke, Mouse-motion,
Button-clicks, Clipboard, and File-Transfer, respectively. The
setting: "-input M" makes attached viewers only able to move the
@@ -3187,7 +3203,7 @@ exit 1 # reject it
some clients view-only? How about running an arbitrary program to make
the decisions?
- Yes, look at the "[501]-accept command" option, it allows you to
+ Yes, look at the "[506]-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 (success) the client is accepted, otherwise
@@ -3208,7 +3224,7 @@ exit 1 # reject it
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 [502]-viewonly option has been supplied, the "View" action will
+ the [507]-viewonly option has been supplied, the "View" action will
not be present: the whole display is view only in that case.
The popup window times out after 120 seconds, to change this behavior
@@ -3223,7 +3239,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 [503]ftp://ftp.x.org/
+ is available at [508]ftp://ftp.x.org/
(End of Built-in Popup Window:)
To include view-only decisions for the external commands, prefix the
@@ -3263,7 +3279,7 @@ elif [ $rc = 4 ]; then
fi
exit 1
- Stefan Radman has written a nice dtksh script [504]dtVncPopup for use
+ Stefan Radman has written a nice dtksh script [509]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.
@@ -3272,13 +3288,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 "[505]-gone
+ To run a command when a client disconnects, use the "[510]-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 "[506]-afteraccept command" option will run the
+ As of Jan/2006 the "[511]-afteraccept command" option will run the
command only after the VNC client has been accepted and authenticated.
Like -gone the return code is not interpreted. RFB_MODE will be
"afteraccept").
@@ -3288,7 +3304,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 [507]-users option that allows things
+ As of Feb/2005 x11vnc has the [512]-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.
@@ -3313,7 +3329,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 [508]blockdpy.c The idea behind it is simple (but
+ source for it is [513]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
@@ -3329,8 +3345,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 [509]-accept option and told
- to exit via the [510]-gone option (the vnc client user should
+ The blockdpy utility is launched by the [514]-accept option and told
+ to exit via the [515]-gone option (the vnc client user should
obviously re-lock the screen before disconnecting!). Instructions can
be found in the source code for the utility at the above link. Roughly
it is something like this:
@@ -3339,17 +3355,17 @@ exit 1
but please read the top of the file.
Update: As of Feb/2007 there is some builtin support for this:
- [511]-forcedpms and [512]-clientdpms however, they are probably less
+ [516]-forcedpms and [517]-clientdpms however, they are probably less
robust than the above blockdpy.c scheme, since if the person floods
the physical machine with mouse or pointer input he can usually see
flashes of the screen before the monitor is powered off again. See
- also the [513]-grabkbd, [514]-grabptr, and [515]-grabalways options.
+ also the [518]-grabkbd, [519]-grabptr, and [520]-grabalways options.
Q-47: Can I have x11vnc automatically lock the screen when I
disconnect the VNC viewer?
- Yes, a user mentions he uses the [516]-gone option under CDE to run a
+ Yes, a user mentions he uses the [521]-gone option under CDE to run a
screen lock program:
x11vnc -display :0 -forever -gone 'dtaction LockDisplay'
@@ -3359,7 +3375,7 @@ exit 1
x11vnc -display :0 -forever -gone 'xlock &'
x11vnc -display :0 -forever -gone 'xlock -mode blank &'
- Here is a scheme using the [517]-afteraccept option (in version 0.8)
+ Here is a scheme using the [522]-afteraccept option (in version 0.8)
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
@@ -3400,21 +3416,21 @@ exec @ARGV;
Q-48: 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 [518]how to tunnel VNC via
+ See the description earlier on this page on [523]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 [519]Enhanced TightVNC Viewer (SSVNC) page where much of
+ See also the [524]Enhanced TightVNC Viewer (SSVNC) page where much of
this is now automated.
Q-49: How can I tunnel my connection to x11vnc via an encrypted SSH
channel from Windows using an SSH client like Putty?
- [520]Above we described how to tunnel VNC via SSH from Unix to Unix,
+ [525]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
@@ -3435,11 +3451,11 @@ exec @ARGV;
:0 (plus other cmdline options) in the 'Remote command' Putty setting
under 'Connections/SSH'.
- See also the [521]Enhanced TightVNC Viewer (SSVNC) page where much of
+ See also the [526]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 [522]-localhost
- and [523]-rfbauth/[524]-passwdfile options.
+ For extra protection feel free to run x11vnc with the [527]-localhost
+ and [528]-rfbauth/[529]-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
@@ -3447,11 +3463,11 @@ exec @ARGV;
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 [525]Chaining SSH's.
+ automated by [530]Chaining SSH's.
- As discussed [526]above another option is to first start the VNC
+ As discussed [531]above another option is to first start the VNC
viewer in "listen" mode, and then launch x11vnc with the
- "[527]-connect localhost" option to establish the reverse connection.
+ "[532]-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).
@@ -3461,7 +3477,7 @@ exec @ARGV;
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 [528]stunnel (also [529]stunnel.mirt.net)
+ IPSEC. SSL tunnels such as [533]stunnel (also [534]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
@@ -3469,12 +3485,12 @@ exec @ARGV;
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 [530]-ssl,
- [531]-stunnel, and [532]-sslverify to provide integrated SSL schemes.
- They are discussed [533]in the Next FAQ (you may want to skip to it
+ Update: As of Feb/2006 x11vnc has the options [535]-ssl,
+ [536]-stunnel, and [537]-sslverify to provide integrated SSL schemes.
+ They are discussed [538]in the Next FAQ (you may want to skip to it
now).
- Here are some basic examples using [534]stunnel but the general idea
+ Here are some basic examples using [539]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
@@ -3498,7 +3514,7 @@ exec @ARGV;
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 [535]signed by
+ stunnel is built. One can also create certificates [540]signed by
Certificate Authorities or self-signed if desired using the x11vnc
utilities described there.
@@ -3512,21 +3528,21 @@ exec @ARGV;
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 [536]ss_vncviewer script can automate this
- easily, and so can the [537]Enhanced TightVNC Viewer (SSVNC) package.
+ That's it. Note that the [541]ss_vncviewer script can automate this
+ easily, and so can the [542]Enhanced TightVNC Viewer (SSVNC) package.
Be sure to use a VNC password because unlike ssh by default the
encrypted SSL channel provides no authentication (only privacy). With
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 [538]the key management section for details.
+ and also [543]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 [539]article The article also
+ found at the stunnel site and in this [544]article The article also
shows the detailed steps to set up all the authentication
- certificates. (for both server and clients, see also the [540]x11vnc
+ certificates. (for both server and clients, see also the [545]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
@@ -3547,7 +3563,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 [541]-inetd mode:
+ start up x11vnc in [546]-inetd mode:
stunnel -p /path/to/stunnel.pem -P none -d 5900 -l ./x11vnc_sh
Where the script x11vnc_sh starts up x11vnc:
@@ -3585,28 +3601,28 @@ connect = 5900
Regarding VNC viewers that "natively" do SSL unfortunately there do
not seem to be many. UltraVNC has an encryption plugin, but we have
- not tried it (it does not seem to be SSL, however the [542]SingleClick
- UltraVNC Java Viewer is SSL and is compatible with x11vnc's [543]-ssl
+ not tried it (it does not seem to be SSL, however the [547]SingleClick
+ UltraVNC Java Viewer is SSL and is compatible with x11vnc's [548]-ssl
option and stunnel.) Commercial versions of VNC seem to have some SSL
built in, but we haven't tried those either and 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 [544]SSL-enabled
- Java applet that can be served up via the [545]-httpdir or [546]-http
- options when [547]-ssl is enabled. It will also be served via HTTPS
+ Note: as of Mar/2006 libvncserver/x11vnc provides a [549]SSL-enabled
+ Java applet that can be served up via the [550]-httpdir or [551]-http
+ options when [552]-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 [548]-https option.
+ the [553]-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 [549]-stunnel or [550]-ssl option on the server side it works well
- and is convenient. Here is a simple script [551]ss_vncviewer that
+ the [554]-stunnel or [555]-ssl option on the server side it works well
+ and is convenient. Here is a simple script [556]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 [552]Enhanced TightVNC Viewer
+ Update Jul/2006: we now provide an [557]Enhanced TightVNC Viewer
(SSVNC) package that starts up STUNNEL automatically along with some
other features. All binaries (stunnel, vncviewer, and some utilities)
are provided in the package. It works on Unix, Mac OS X, and Windows.
@@ -3614,7 +3630,7 @@ connect = 5900
Q-51: Does x11vnc have built-in SSL tunneling?
- You can read about non-built-in methods [553]in the Previous FAQ for
+ You can read about non-built-in methods [558]in the Previous FAQ for
background.
SSL tunnels provide an encrypted channel without the need for Unix
@@ -3626,14 +3642,14 @@ connect = 5900
Built-in SSL x11vnc options:
- As of Feb/2006 the x11vnc [554]-ssl and [555]-stunnel options automate
- the SSL tunnel creation on the x11vnc server side. An [556]SSL-enabled
+ As of Feb/2006 the x11vnc [559]-ssl and [560]-stunnel options automate
+ the SSL tunnel creation on the x11vnc server side. An [561]SSL-enabled
Java Viewer applet is also provided that can be served via HTTP or
HTTPS to automate SSL on the client side.
- The [557]-ssl mode uses the [558]www.openssl.org library if available
- at build time. The [559]-stunnel mode requires the
- [560]www.stunnel.org command stunnel(8) to be installed on the system.
+ The [562]-ssl mode uses the [563]www.openssl.org library if available
+ at build time. The [564]-stunnel mode requires the
+ [565]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) program (in fact in for options
@@ -3676,7 +3692,7 @@ connect = 5900
SSL VNC Viewers:. Viewer-side will need to use SSL as well. See the
- [561]next FAQ and [562]here for SSL enabled VNC Viewers to connect to
+ [566]next FAQ and [567]here for SSL enabled VNC Viewers to connect to
the above x11vnc via SSL.
@@ -3692,12 +3708,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 [563]x11vnc Key Management for some utilities
+ See the discussion on [568]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 [564]ss_vncviewer provides an example on unix
+ The wrapper script [569]ss_vncviewer provides an example on unix
(-verify option).
Here are some notes on the simpler default (non-CA) operation. To have
@@ -3713,7 +3729,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
- [565]here), then Man-In-The-Middle-Attacks are prevented. Otherwise,
+ [570]here), then Man-In-The-Middle-Attacks are prevented. Otherwise,
the SSL encryption only provides protection against passive network
traffic "sniffing" (i.e. you are not protected agains M-I-T-M
attacks). Nowadays, most people seem mostly concerned mainly about
@@ -3748,8 +3764,8 @@ connect = 5900
There aren't any native VNC Viewers that do SSL (ask your VNC viewer
developer to add the feature). So a tunnel must be setup that you
point the VNC Viewer to. This is often STUNNEL. You can do this
- [566]manually, or use the [567]ss_vncviewer script on Unix, or the
- [568]Enhanced TightVNC Viewer (SSVNC) package on Unix, Windows, or
+ [571]manually, or use the [572]ss_vncviewer script on Unix, or the
+ [573]Enhanced TightVNC Viewer (SSVNC) package on Unix, Windows, or
MacOSX. See the next section for Java Web browser SSL VNC Viewers (you
only need a Java-enabled Web browser for it to work).
@@ -3761,13 +3777,13 @@ connect = 5900
The SSL enabled Java VNC Viewer (VncViewer.jar) in the x11vnc package
supports only SSL based connections by default. As mentioned above the
- [569]-httpdir can be used to specify the path to .../classes/ssl. A
+ [574]-httpdir can be used to specify the path to .../classes/ssl. A
typical location might be /usr/local/share/x11vnc/classes/ssl. Or
- [570]-http can be used to try to have it find the directory
+ [575]-http can be used to try to have it find the directory
automatically.
- Also note that the [571]SingleClick UltraVNC Java Viewer is compatible
- with x11vnc's [572]-ssl SSL mode. (We tested it this way: "java -cp
+ Also note that the [576]SingleClick UltraVNC Java Viewer is compatible
+ with x11vnc's [577]-ssl SSL mode. (We tested it this way: "java -cp
./VncViewer.jar VncViewer HOST far-away.east PORT 5900 USESSL 1
TRUSTALL 1")
@@ -3800,7 +3816,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 for you and you still want to serve the Java applet via
- https, use the [573]-https option to get an additional port dedicated
+ https, use the [578]-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:
@@ -3813,7 +3829,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
- [574]proxy scheme to enter a firewall or otherwise have rules applied
+ [579]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".)
@@ -3903,12 +3919,12 @@ connect = 5900
Then, if you plan to use them, enable "fancy stuff" like "-svc" or
"-unixpw", etc, etc. Be sure to add a password either "-rfbauth" or
"-unixpw" or both. If you need to have the web browser use a corporate
- [575]Web Proxy (i.e. it cannot connect directly) work on that last.
- Ditto for the [576]Apache portal.
+ [580]Web Proxy (i.e. it cannot connect directly) work on that last.
+ Ditto for the [581]Apache portal.
Router/Firewall port redirs: If you are doing port redirection at
- your [577]router to an internal machine running x11vnc AND the
+ your [582]router to an internal machine running x11vnc AND the
internet facing port is different from the internal machine's VNC
port, you will need to apply the PORT applet parameter to indicate to
the applet the Internet facing port number (otherwise by default the
@@ -3918,7 +3934,7 @@ connect = 5900
So in this example the user configures his router to redirect
connections to port 443 on his Internet side to, say, port 5900 on the
- internal machine running x11vnc. See also the [578]-httpsredir option
+ internal machine running x11vnc. See also the [583]-httpsredir option
that will try to automate this for you.
To configure your router to do port redirection, see its instructions.
@@ -3954,11 +3970,11 @@ connect = 5900
NOT linger at. If you see in the x11vnc output a request for
VncViewer.class instead of VncViewer.jar it is too late... you may
need to restart the Web browser to get it to try for the jar again.
- You can use the [579]-https option if you want a dedicated port for
+ You can use the [584]-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 [580]This Page.
+ connection with the Java Applet see [585]This Page.
Notes on the VNC Viewer ss_vncviewer wrapper script:
@@ -3966,10 +3982,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 our x11vnc and
- [581]SSVNC packages. The basic ideas of doing this were discussed
- [582]for external tunnel utilities here.
+ [586]SSVNC packages. The basic ideas of doing this were discussed
+ [587]for external tunnel utilities here.
- The [583]ss_vncviewer script provided with x11vnc and SSVNC can set up
+ The [588]ss_vncviewer script provided with x11vnc and SSVNC 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 a Debian based system you will
@@ -4001,14 +4017,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 [584]this page for more information on
+ separate the two by commas. See [589]this page for more information on
how Web proxies come into play.
- If one uses a Certificate Authority (CA) scheme described [585]here,
+ If one uses a Certificate Authority (CA) scheme described [590]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 [586]Enhanced TightVNC Viewer
+ Update Jul/2006: we now provide an [591]Enhanced TightVNC Viewer
(SSVNC) package that starts up STUNNEL automatically along with some
other features. All binaries (stunnel, vncviewer, and some utilities)
are provided in the package. It works on Unix, Mac OS X, and Windows.
@@ -4071,14 +4087,14 @@ 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. See also the [587]-httpsredir option that will
- try to automate this for you. To use the GET [588]trick discussed
+ parameters in the URL. See also the [592]-httpsredir option that will
+ try to automate this for you. To use the GET [593]trick discussed
above, do:
https://yourmachine.com/proxy.vnc?GET=1&PORT=443
- Note that both the [589]ss_vncviewer stunnel Unix wrapper script and
- [590]Enhanced TightVNC Viewer (SSVNC) can use Web proxies as well even
+ Note that both the [594]ss_vncviewer stunnel Unix wrapper script and
+ [595]Enhanced TightVNC Viewer (SSVNC) can use Web proxies as well even
though they do not involve a Web browser.
@@ -4086,7 +4102,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 [591]here. This provides a clean alternative to the
+ It is discussed [596]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.
@@ -4094,7 +4110,7 @@ connect = 5900
Q-55: Can I create and use my own SSL Certificate Authority (CA) with
x11vnc?
- Yes, see [592]this page for how to do this and the utility commands
+ Yes, see [597]this page for how to do this and the utility commands
x11vnc provides to create and manage many types of certificates and
private keys.
@@ -4113,14 +4129,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 [593]FAQ on x11vnc
+ * Use the description under "Continuously" in the [598]FAQ on x11vnc
and Display Managers
- * Use the description in the [594]FAQ on x11vnc and inetd(8)
- * Use the description in the [595]FAQ on Unix user logins and
+ * Use the description in the [599]FAQ on x11vnc and inetd(8)
+ * Use the description in the [600]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 [596]x11vnc_loop rc.local hack
+ * Although less reliable, see the [601]x11vnc_loop rc.local hack
below.
The display manager scheme will not be specific to which user has the
@@ -4142,9 +4158,9 @@ 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
- [597]this link.
+ [602]this link.
- Firewalls: note all methods will require the host-level [598]firewall
+ Firewalls: note all methods will require the host-level [603]firewall
to be configured to allow connections in on a port. E.g. 5900 (default
VNC port) or 22 (default SSH port for tunnelling VNC). Most systems
these days have firewalls turned on by default, so you will actively
@@ -4165,7 +4181,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 [599]-auth option sets the XAUTHORITY variable for you).
+ (the [604]-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
@@ -4192,7 +4208,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
(BTW, the 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
- [600]the example at the end of this FAQ). Then restart dtlogin, e.g.:
+ [605]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
@@ -4239,7 +4255,7 @@ x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg
and XAUTHORITY environment variables for the Xsetup script!!!
You may also want to force the VNC port with something like "-rfbport
- 5900" (or [601]-N) to avoid autoselecting one if 5900 is already
+ 5900" (or [606]-N) to avoid autoselecting one if 5900 is already
taken.
_________________________________________________________________
@@ -4255,7 +4271,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 [602]full details
+ killed immediately after the user logs in. Here are [607]full details
on how to configure gdm
_________________________________________________________________
@@ -4297,16 +4313,16 @@ 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: [603]x11vnc_loop It will need some local
+ file like rc.local: [608]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 [604]-loop
+ described above is greatly preferred. There is also the [609]-loop
option that does something similar.
If the machine is a traditional Xterminal you may want to read
- [605]this FAQ.
+ [610]this FAQ.
- Firewalls: note all methods will require the host-level [606]firewall
+ Firewalls: note all methods will require the host-level [611]firewall
to be configured to allow connections in on a port. E.g. 5900 (default
VNC port) or 22 (default SSH port for tunnelling VNC). Most systems
these days have firewalls turned on by default, so you will actively
@@ -4322,7 +4338,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 [607]-inetd
+ where the shell script /usr/local/bin/x11vnc_sh uses the [612]-inetd
option and looks something like (you'll need to customize to your
settings).
#!/bin/sh
@@ -4335,7 +4351,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 [608]-quiet) option: "/usr/local/bin/x11vnc -q
+ specify the -q (aka [613]-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
@@ -4343,12 +4359,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 [609]-auth to point to the
+ Note also the need to set XAUTHORITY via [614]-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
- [610]FAQ on Unix user logins and inetd(8) works around the XAUTHORITY
+ [615]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
@@ -4433,9 +4449,9 @@ exec /usr/local/bin/x11vnc -inetd -o /var/log/x11vnc.log -find -env FD_XDM=1
it automatically?
Yes, as of Feb/2007 x11vnc supports mDNS / Zeroconf advertising of its
- service via the Avahi client library. Use the option [611]-avahi (same
- as [612]-mdns) to enable it. Depending on your setup you may need to
- install [613]Avahi (including the development packages), enable the
+ service via the Avahi client library. Use the option [616]-avahi (same
+ as [617]-mdns) to enable it. Depending on your setup you may need to
+ install [618]Avahi (including the development packages), enable the
server: avahi-daemon and avahi-dnsconfd, and possibly open up UDP port
5353 on your firewall.
@@ -4460,32 +4476,32 @@ exec /usr/local/bin/x11vnc -inetd -o /var/log/x11vnc.log -find -env FD_XDM=1
machine and then connect to it? How about starting an X session if one
cannot be found?
- The easiest way to do this is via [614]inetd(8) using the [615]-unixpw
- and [616]-display WAIT options. The reason inetd(8) makes this easier
+ The easiest way to do this is via [619]inetd(8) using the [620]-unixpw
+ and [621]-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 [617]this example and also the [618]-loopbg option).
+ x11vnc's (see [622]this example and also the [623]-loopbg option).
Also with inetd(8) users always connect to a fixed VNC display, say
hostname:0, and do not need to memorize a special VNC display number
just for their personal use, etc.
- Update: Use the [619]-find, [620]-create, [621]-svc, and [622]-xdmsvc
+ Update: Use the [624]-find, [625]-create, [626]-svc, and [627]-xdmsvc
options that are shorthand for common FINDCREATEDISPLAY usage modes
(e.g. terminal services) described below. (i.e. just use "-svc"
instead of "-display WAIT:cmd=FINDCREATEDISPLAY-Xvfb -unixpw -users
unixpw= -ssl SAVE")
- The [623]-display WAIT option makes x11vnc wait until a VNC viewer is
+ The [628]-display WAIT option makes x11vnc wait until a VNC viewer is
connected before attaching to the X display. Additionally it can be
used to run an external command that returns the DISPLAY and
XAUTHORITY data. We provide some useful builtin ones (FINDDISPLAY and
FINDCREATEDISPLAY below), but in principle one could supply "-display
WAIT:cmd=/path/to/find_display" where the script find_display might
- look something like [624]this.
+ look something like [629]this.
A default script somewhat like the above is used under "-display
- WAIT:cmd=FINDDISPLAY" (same as [625]-find) (use
+ WAIT:cmd=FINDDISPLAY" (same as [630]-find) (use
"WAIT:cmd=FINDDISPLAY-print" to print out the gnarly script). The
format for any such command is that it returns DISPLAY=:disp as the
first line and any remaining lines are either XAUTHORITY=file or raw
@@ -4497,10 +4513,10 @@ exec /usr/local/bin/x11vnc -inetd -o /var/log/x11vnc.log -find -env FD_XDM=1
Or if you only know the X server process ID and suspect a chvt will be
needed append ",XPID=n".
- Tip: Note that the [626]-find option is an alias for "-display
+ Tip: Note that the [631]-find option is an alias for "-display
WAIT:cmd=FINDDISPLAY". Use it!
- The [627]-unixpw option allows [628]UNIX password logins. It
+ The [632]-unixpw option allows [633]UNIX password logins. It
conveniently knows the Unix username whose X display should be found.
Here are a couple /etc/inetd.conf examples for this:
5900 stream tcp nowait nobody /usr/sbin/tcpd /usr/local/bin/x11vnc -inetd
@@ -4514,16 +4530,16 @@ xpw=
Note the very long lines have been split. An alternative is to use a
wrapper script, e.g. /usr/local/bin/x11vnc.sh that has all of the
- options. (see also the [629]-svc alias).
+ options. (see also the [634]-svc alias).
In the first one x11vnc is run as user "nobody" and stays user nobody
during the whole session. The permissions of the log files and certs
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 "[630]-users unixpw=" option.
+ logs in due to the "[635]-users unixpw=" option.
- Note that [631]SSL is required for this mode because otherwise the
+ Note that [636]SSL is required for this mode because otherwise the
Unix password would be passed in clear text over the network. In
general -unixpw is not required for this sort of scheme, but it is
convenient because it determines exactly who the Unix user is whose
@@ -4531,17 +4547,17 @@ xpw=
to use some method to work out DISPLAY, XAUTHORITY, etc (perhaps you
use multiple inetd ports and hardwire usernames for different ports).
- If you really want to disable the SSL or SSH [632]-localhost
+ If you really want to disable the SSL or SSH [637]-localhost
constraints (this is not recommended unless you really know what you
are doing: Unix passwords sent in clear text is a very bad idea...)
- read the [633]-unixpw documentation.
+ read the [638]-unixpw documentation.
A inetd(8) scheme for a fixed user that doesn't use SSL or unix
passwds could be:
/usr/local/bin/x11vnc -inetd -users =fred -find -rfbauth /home/fred/.vnc/passwd
-o /var/log/x11vnc.log
- The "[634]-users =fred" option will cause x11vnc to switch to user
+ The "[639]-users =fred" option will cause x11vnc to switch to user
fred and then find his X display.
@@ -4550,7 +4566,7 @@ xpw=
FINDDISPLAY method it will create an X server session for the user
(i.e. desktop/terminal server). This is the only time x11vnc actually
tries to start up an X server. By default it will only try to start up
- virtual (non-hardware) X servers: first [635]Xdummy and if that is not
+ virtual (non-hardware) X servers: first [640]Xdummy and if that is not
available then Xvfb. Note that Xdummy requires root permission and
only works on Linux whereas Xvfb works just about everywhere.
@@ -4560,19 +4576,19 @@ xpw=
-display WAIT:cmd=FINDCREATEDISPLAY -prog /usr/local/bin/x11vnc
Where the very long lines have been split. This will allow direct SSL
- (e.g. [636]ss_vncviewer) access and also Java Web browers access via:
+ (e.g. [641]ss_vncviewer) access and also Java Web browers access via:
https://hostname:5900/.
- Tip: Note that the [637]-create option is an alias for "-display
+ Tip: Note that the [642]-create option is an alias for "-display
WAIT:cmd=FINDCREATEDISPLAY-Xvfb".
- Tip: Note that [638]-svc is a short hand for the long "-ssl SAVE
+ Tip: Note that [643]-svc is a short hand for the long "-ssl SAVE
-unixpw -users unixpw= -display WAIT:cmd=FINDCREATEDISPLAY" part.
Unlike -create, this alias also sets up SSL encryption and Unix
password login.
Tip: In addition to the usual unixpw parameters, the user can specify
- after his username (following a ":" see [639]-display WAIT for
+ after his username (following a ":" see [644]-display WAIT for
details) for FINDCREATEDISPLAY they can add "geom=WxH" or "geom=WxHxD"
to specify the width, height, and optionally the color depth. E.g.
"fred:geom=800x600" at the login: prompt. Also if the env. var
@@ -4609,7 +4625,7 @@ service x11vnc
WAIT:cmd=FINDCREATEDISPLAY-X,Xvfb,Xdummy". The "X" one means to try to
start up a real, hardware X server, e.g. startx(1) (if there is
already a real X server running this may only work on Linux and the
- chvt program may [640]need to be run to switch to the correct Linux
+ chvt program may [645]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.
@@ -4636,7 +4652,7 @@ service x11vnc
will also typically block UDP (port 177 for XDMCP) by default
effectively limiting the UDP connections to localhost.
- Tip: Note that [641]-xdmsvc is a short hand for the long "-ssl SAVE
+ Tip: Note that [646]-xdmsvc is a short hand for the long "-ssl SAVE
-unixpw -users unixpw= -display WAIT:cmd=FINDCREATEDISPLAY-Xvfb.xdmcp"
part. E.g.:
service x11vnc
@@ -4703,15 +4719,15 @@ t:5
Q-61: Can I have x11vnc restart itself after it terminates?
One could do this in a shell script, but now there is an option
- [642]-loop that makes it easier. Of course when x11vnc restarts it
+ [647]-loop that makes it easier. Of course when x11vnc restarts it
needs to have permissions to connect to the (potentially new) X
display. This mode could be useful if the X server restarts often. Use
e.g. "-loop5000" to sleep 5000 ms between restarts. Also "-loop2000,5"
to sleep 2000 ms and only restart 5 times.
- One can also use the [643]-loopbg to emulate inetd(8) to some degree,
+ One can also use the [648]-loopbg to emulate inetd(8) to some degree,
where each connected process runs in the background. It could be
- combined, say, with the [644]-svc option to provide simple terminal
+ combined, say, with the [649]-svc option to provide simple terminal
services without using inetd(8).
@@ -4719,7 +4735,7 @@ t:5
web browser?
To have x11vnc serve up a Java VNC viewer applet to any web browsers
- that connect to it, run x11vnc with this [645]option:
+ that connect to it, run x11vnc with this [650]option:
-httpdir /path/to/the/java/classes/dir
(this directory will contain the files index.vnc and, for example,
@@ -4738,7 +4754,7 @@ t:5
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 [646]-http option will try to guess where the Java
+ As of May/2005 the [651]-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.
@@ -4747,7 +4763,7 @@ t:5
either the java or appletviewer commands to run the program.
java -cp ./VncViewer.jar VncViewer HOST far-away.east PORT 5900
- Proxies: See the [647]discussion here if the web browser must use a
+ Proxies: See the [652]discussion here if the web browser must use a
web proxy to connect to the internet. It is tricky to get Java applets
to work in this case: a signed applet must be used so it can connect
to the proxy and ask for the redirection to the VNC server. One way to
@@ -4763,7 +4779,7 @@ t:5
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
- [648]-connect option. To connect immediately at x11vnc startup time
+ [653]-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 VNC listening port is
5500).
@@ -4772,11 +4788,11 @@ t:5
file is checked periodically (about once a second) for new hosts to
connect to.
- The [649]-remote control option (aka -R) can also be used to do this
+ The [654]-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
- Use the "[650]-connect_or_exit" option to have x11vnc exit if the
+ Use the "[655]-connect_or_exit" option to have x11vnc exit if the
reverse connection fails. Also, note the "-rfbport 0" option disables
TCP listening for connections (potentially useful for reverse
connection mode, assuming you do not want any "forward" connections).
@@ -4789,7 +4805,7 @@ x11vnc -display :0 -R connect:hostname.domain
X11VNC_REVERSE_CONNECTION_NO_AUTH=1" to x11vnc.
Vncconnect command: To use the vncconnect(1) program (from the core
- VNC package at www.realvnc.com) specify the [651]-vncconnect option to
+ VNC package at www.realvnc.com) specify the [656]-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
@@ -4808,7 +4824,7 @@ xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
proxy or SSH?
Yes, as of Oct/2007 x11vnc supports reverse connections through
- proxies: use the "[652]-proxy host:port" option. The default is to
+ proxies: use the "[657]-proxy host:port" option. The default is to
assume the proxy is a Web proxy. Note that most Web proxies only allow
proxy destination connections to ports 443 (HTTPS) and 563 (SNEWS) and
so this might not be too useful unless the proxy has been modified
@@ -4828,11 +4844,11 @@ xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
connections.
An experimental mode is "-proxy http://host:port/..." where the URL
- (e.g. a CGI script) is retrieved via the GET method. See [653]-proxy
+ (e.g. a CGI script) is retrieved via the GET method. See [658]-proxy
for more info.
Another experimental mode is "-proxy ssh://user@host" in which case a
- SSH tunnel is used for the proxying. See [654]-proxy for more info.
+ SSH tunnel is used for the proxying. See [659]-proxy for more info.
Up to 3 proxies may be chained together by listing them by commas
e.g.: "-proxy http://host1:port1,socks5://host2:port2" in case one
@@ -4855,10 +4871,10 @@ xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
Driver in XFree86/Xorg (see below).
In either case, one can view this desktop both remotely and also
- [655]locally using vncviewer. Make sure vncviewer's "-encodings raw"
+ [660]locally using vncviewer. Make sure vncviewer's "-encodings raw"
is in effect for local viewing (compression seems to slow things down
locally). For local viewing you set up a "bare" window manager that
- just starts up vncviewer and nothing else ([656]See how below).
+ just starts up vncviewer and nothing else ([661]See how below).
Here is one way to start up Xvfb:
xinit -- /usr/X11R6/bin/Xvfb :1 -cc 4 -screen 0 1024x768x16
@@ -4878,19 +4894,19 @@ xprop -root -f VNC_CONNECT 8s -set VNC_CONNECT "$1"
"screen scrape" it very efficiently (more than, say, 100X faster than
normal video hardware).
- Update Nov/2006: See the [657]FINDCREATEDISPLAY discussion of the
- "[658]-display WAIT:cmd=FINDDISPLAY" option where virtual (Xvfb or
+ Update Nov/2006: See the [662]FINDCREATEDISPLAY discussion of the
+ "[663]-display WAIT:cmd=FINDDISPLAY" option where virtual (Xvfb or
Xdummy, or even real ones by changing an option) X servers are started
automatically for new users connecting. This provides a "desktop
service" for the machine. You either get your real X session or your
virtual (Xvfb/Xdummy) one whenever you connect to the machine
- (inetd(8) is a nice way to provide this service). The [659]-find,
- [660]-create, [661]-svc, and [662]-xdmsvc aliases can also come in
+ (inetd(8) is a nice way to provide this service). The [664]-find,
+ [665]-create, [666]-svc, and [667]-xdmsvc aliases can also come in
handy here.
There are some annoyances WRT Xvfb however. The default keyboard
mapping seems to be very poor. One should run x11vnc with
- [663]-add_keysyms option to have keysyms added automatically. Also, to
+ [668]-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"
@@ -4902,7 +4918,7 @@ xmodmap -e "keycode any = Alt_R"
xmodmap -e "keycode any = Meta_L"
xmodmap -e "add Mod1 = Alt_L Alt_R Meta_L"
- (note: these are applied automatically in the [664]FINDCREATEDISPLAY
+ (note: these are applied automatically in the [669]FINDCREATEDISPLAY
mode of x11vnc). Perhaps the Xvfb options -xkbdb or -xkbmap could be
used to get a better default keyboard mapping...
@@ -4917,11 +4933,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) [665]switching even though it
+ Linux Virtual Console/Terminal (VC/VT) [670]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 [666]Xdummy that allows you to
+ Jul/2005 we have an LD_PRELOAD script [671]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
@@ -4949,7 +4965,7 @@ x11vnc -display :5 -rfbport 5905 -bg
vncviewer -geometry +0+0 -encodings raw -passwd $HOME/.vnc/passwd localhost:5
The display numbers (VNC and X) will likely be different (you could
- also try [667]-find), and you may not need the -passwd. Recent RealVNC
+ also try [672]-find), and you may not need the -passwd. Recent RealVNC
viewers might be this:
#!/bin/sh
x11vnc -display :5 -rfbport 5905 -bg
@@ -4976,7 +4992,7 @@ t:5
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 [668]this FAQ) and access it from
+ display via x11vnc (e.g. see [673]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
@@ -4999,10 +5015,10 @@ t:5
cards as it can hold to provide multiple simultaneous access or
testing on different kinds of video hardware.
- See also the [669]FINDCREATEDISPLAY discussion of the "[670]-display
+ See also the [674]FINDCREATEDISPLAY discussion of the "[675]-display
WAIT:cmd=FINDDISPLAY" option where virtual Xvfb or Xdummy, or real X
servers are started automatically for new users connecting. The
- [671]-find, [672]-create, [673]-svc, and [674]-xdmsvc aliases can also
+ [676]-find, [677]-create, [678]-svc, and [679]-xdmsvc aliases can also
come in handy here.
[Resource Usage and Performance]
@@ -5025,7 +5041,7 @@ t:5
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 [675]shm_clear to list and prompt for removal
+ Here is a shell script [680]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,
@@ -5059,40 +5075,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
- [676]-onetile option (corresponds to only 3 shm segments used, and
+ [681]-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
- [677]-noshm option. Performance will be somewhat degraded but when
+ [682]-noshm option. Performance will be somewhat degraded but when
done over local machine sockets it should be acceptable (see an
- [678]earlier question discussing -noshm).
+ [683]earlier question discussing -noshm).
Q-68: How can I make x11vnc use less system resources?
- The [679]-nap (now on by default) and "[680]-wait n" (where n is the
+ The [684]-nap (now on by default) and "[685]-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 "[681]-sb 15" will cause
+ are good places to start. Something like "[686]-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 X
server setting will make x11vnc's screen polling less severe. Using
- the [682]-onetile option will use less memory and use fewer shared
- memory slots (add [683]-fs 1.0 for one less slot).
+ the [687]-onetile option will use less memory and use fewer shared
+ memory slots (add [688]-fs 1.0 for one less slot).
Q-69: How can I make x11vnc use MORE system resources?
- You can try [684]-threads (note this mode can be unstable and/or
+ You can try [689]-threads (note this mode can be unstable and/or
crash) or dial down the wait time (e.g. -wait 1) and possibly dial
- down [685]-defer as well. Note that if you try to increase the "frame
+ down [690]-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 [686]-id option) can be streamed over a LAN or wireless at
+ the x11vnc [691]-id option) can be streamed over a LAN or wireless at
a reasonable frame rate.
@@ -5108,7 +5124,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
- [687]-solid [color] option to try to do this automatically.
+ [692]-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
@@ -5117,9 +5133,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 [688]-scrollcopyrect is active and
+ problem in x11vnc 0.7.2 if [693]-scrollcopyrect is active and
detecting scrolls for the application).
- * If the [689]-wireframe option is not available (earlier than
+ * If the [694]-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)
@@ -5142,7 +5158,7 @@ ied)
noticed.
VNC viewer parameters:
- * Use a [690]TightVNC enabled viewer! (Actually, RealVNC 4.x viewer
+ * Use a [695]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
@@ -5150,7 +5166,7 @@ ied)
* Request 8 bits per pixel using -bgr233 (up to 4X speedup over
depth 24 TrueColor (32bpp), but colors will be off)
* RealVNC 4.x viewer has some extremely low color modes (only 64 and
- even 8 colors). [691]SSVNC does too. The colors are poor, but it
+ even 8 colors). [696]SSVNC does too. The colors are poor, but it
is usually noticeably faster than bgr233 (256 colors).
* Try increasing the TightVNC -compresslevel (compresses more on
server side before sending, but uses more CPU)
@@ -5164,37 +5180,37 @@ ied)
file.
x11vnc parameters:
- * Make sure the [692]-wireframe option is active (it should be on by
+ * Make sure the [697]-wireframe option is active (it should be on by
default) and you have Opaque Moves/Resizes Enabled in the window
manager.
- * Make sure the [693]-scrollcopyrect option is active (it should be
+ * Make sure the [698]-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
- [694]-solid
- * Specify [695]-speeds modem to force the wireframe and
+ [699]-solid
+ * Specify [700]-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 [696]-nodragging (no screen updates when dragging mouse,
+ drastic [701]-nodragging (no screen updates when dragging mouse,
but sometimes you miss visual feedback)
- * Set [697]-fs 1.0 (disables fullscreen updates)
- * Try increasing [698]-wait or [699]-defer (reduces the maximum
+ * Set [702]-fs 1.0 (disables fullscreen updates)
+ * Try increasing [703]-wait or [704]-defer (reduces the maximum
"frame rate", but won't help much for large screen changes)
- * Try the [700]-progressive pixelheight mode with the block
+ * Try the [705]-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 [701]-id (cuts
+ * If you just want to watch one (simple) window use [706]-id (cuts
down extraneous polling and updates, but can be buggy or
insufficient)
- * Set [702]-nosel (disables all clipboard selection exchange)
- * Use [703]-nocursor and [704]-nocursorpos (repainting the remote
+ * Set [707]-nosel (disables all clipboard selection exchange)
+ * Use [708]-nocursor and [709]-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
- [705]-readtimeout n setting if it sometimes takes more than 20sec
+ [710]-readtimeout n setting if it sometimes takes more than 20sec
to paint the full screen, etc.
- * Do not use [706]-fixscreen to automatically refresh the whole
+ * Do not use [711]-fixscreen to automatically refresh the whole
screen, tap three Alt_L's then the screen has painting errors
(rare problem).
@@ -5263,7 +5279,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 [707]slow (e.g.
+ in main memory. So reading the fb is still painfully [712]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
@@ -5281,45 +5297,45 @@ 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 "[708]-xd_area A" option to adjust the size
+ skipped). You can use the "[713]-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 "[709]-xd_mem f" may also be of use in tuning the
- algorithm. To disable using DAMAGE entirely use "[710]-noxdamage".
+ The option "[714]-xd_mem f" may also be of use in tuning the
+ algorithm. To disable using DAMAGE entirely use "[715]-noxdamage".
Q-72: 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 "[711]-noxdamage" option.
+ he uses the "[716]-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
be tried, probably the best it will do is automatically stop using X
DAMAGE.
- A developer for [712]MiniMyth reports that the 'alphapulse' tag of the
+ A developer for [717]MiniMyth reports that the 'alphapulse' tag of the
theme G.A.N.T. can also cause problems, and should be avoided when
using VNC.
- Update: see [713]this FAQ too.
+ Update: see [718]this FAQ too.
Q-73: When I drag windows around with the mouse or scroll up and down
things really bog down (unless I do the drag in a single, quick
motion). Is there anything to do to improve things?
- This problem is primarily due to [714]slow hardware read rates from
+ This problem is primarily due to [719]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
- [715]-pointer_mode option for more info. The next bottleneck is
+ [720]-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
@@ -5329,27 +5345,27 @@ 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 "[716]-pointer_mode 1" option.
+ the "[721]-pointer_mode 1" option.
- Also added was the [717]-nodragging option that disables all screen
+ Also added was the [722]-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 [718]-pointer_mode n option was introduced. n=1 is
+ As of Dec/2004 the [723]-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 [719]-threads option can improve
+ Also, in some circumstances the [724]-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). This option can be unstable and so as of Feb/2008 it is
disabled by default. Set env. X11VNC_THREADED=1 to re-enable.
- As of Apr/2005 two new options (see the [720]wireframe FAQ and
- [721]scrollcopyrect FAQ below) provide schemes to sweep this problem
+ As of Apr/2005 two new options (see the [725]wireframe FAQ and
+ [726]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
@@ -5373,8 +5389,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 [722]slow video card
- read rates (see [723]here too). A displacement, even a small one, of a
+ intermediate steps. BTW the lurching is due to [727]slow video card
+ read rates (see [728]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.
@@ -5382,7 +5398,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 [724]-nowireframe option
+ with the problem. It can be disabled with the [729]-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
@@ -5428,13 +5444,13 @@ EndSection
* Maximum time to show a wireframe animation.
* Minimum time between sending wireframe outlines.
- See the [725]"-wireframe tweaks" option for more details. On a slow
+ See the [730]"-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
- [726]"-wirecopyrect mode" option. It is also on by default. This
+ [731]"-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
@@ -5482,7 +5498,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 [727]slow).
+ the hardware framebuffer is [732]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.
@@ -5509,10 +5525,10 @@ EndSection
the X server display: if one falls too far behind it could become a
mess...
- The initial implementation of [728]-scrollcopyrect option is useful in
+ The initial implementation of [733]-scrollcopyrect option is useful in
that it detects many scrolls and thus gives a much nicer working
- environment (especially when combined with the [729]-wireframe
- [730]-wirecopyrect [731]options, which are also on by default; and if
+ environment (especially when combined with the [734]-wireframe
+ [735]-wirecopyrect [736]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.
@@ -5545,10 +5561,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: [732]-fixscreen
+ also: [737]-fixscreen
* Some applications, notably OpenOffice, do XCopyArea scrolls in
weird ways that assume ancestor window clipping is taking place.
- See the [733]-scr_skip option for ways to tweak this on a
+ See the [738]-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
@@ -5565,7 +5581,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 [734]-scale option there will be a quick CopyRect
+ * When using the [739]-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
@@ -5578,7 +5594,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 [735]-noscrollcopyrect (or -noscr for short). If you find
+ with the [740]-noscrollcopyrect (or -noscr for short). If you find
some extremely bad and repeatable behavior for -scrollcopyrect please
report a bug.
@@ -5603,9 +5619,9 @@ EndSection
that pixel data is needed again it does not have to be retransmitted
over the network.
- As of Dec/2006 in the [736]0.9 development tarball there is an
+ As of Dec/2006 in the [741]0.9 development tarball there is an
experimental client-side caching implementation enabled by the
- "[737]-ncache n" option. In fact, during the test period it was on by
+ "[742]-ncache n" option. In fact, during the test period it was on by
default with n set to 10. To disable it use "-noncache".
It is a simple scheme where a (very large) lower portion of the
@@ -5639,7 +5655,7 @@ EndSection
rendering...).
The Enhanced TightVNC Viewer (SSVNC) Unix viewer has a nice
- [738]-ycrop option to help hide the pixel cache area from view. It
+ [743]-ycrop option to help hide the pixel cache area from view. It
will turn on automatically if the framebuffer appears to be very tall
(height more than twice the width), or you can supply the actual value
for the height. If the screen resized by scaling, etc, the ycrop value
@@ -5668,7 +5684,7 @@ EndSection
an additional factor of 2 in memory use.
However, even in the smallest usage mode with n equal 2 and
- [739]-ncache_no_rootpixmap set (this requires only 2X additional
+ [744]-ncache_no_rootpixmap set (this requires only 2X additional
framebuffer memory) there is still a noticable improvement for many
activities, although it is not as dramatic as with, say n equal 12 and
rootpixmap (desktop background) caching enabled.
@@ -5679,7 +5695,7 @@ EndSection
be tuned to use less, or the VNC community will extend the protocol to
allow caching and replaying of compressed blobs of data.
- Another option to experiment with is "[740]-ncache_cr". By specifying
+ Another option to experiment with is "[745]-ncache_cr". By specifying
it, x11vnc will try to do smooth opaque window moves instead of its
wireframe. This can give a very nice effect (note: on Unix the realvnc
viewer seems to be smoother than the tightvnc viewer), but can lead to
@@ -5749,23 +5765,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 "[741]-cursor X" option that
+ A simple kludge is provided by the "[746]-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 "[742]-cursor some" option for
+ work for those cases. Also see the "[747]-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
- [743]-overlay option is supplied. See [744]this FAQ for more info.
+ [748]-overlay option is supplied. See [749]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
- [745]Solaris 10.
+ [750]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
@@ -5773,7 +5789,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. [746]Details can be found here.
+ hidden alpha channel data under 32bpp. [751]Details can be found here.
Q-78: When using XFIXES cursorshape mode, some of the cursors look
@@ -5806,17 +5822,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 "[747]-alphacut n" option lets
+ course!) some tunable parameters. The "[752]-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 "[748]-alphafrac f" option tries to correct individual
+ 240. The "[753]-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 [749]-alpharemove that is useful for
+ Finally, there is an option [754]-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
@@ -5842,10 +5858,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 [750]-nocursorshape x11vnc option. In this case the cursor is
+ with the [755]-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 [751]-noalphablend option to disable this
+ the x11vnc side. Use the [756]-noalphablend option to disable this
behavior (always approximate transparent cursors with opaque RGB
values).
@@ -5869,7 +5885,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 [752]Enhanced TightVNC Viewer (SSVNC)
+ This patch is applied to the [757]Enhanced TightVNC Viewer (SSVNC)
package we provide.
[Mouse Pointer]
@@ -5877,9 +5893,9 @@ EndSection
Q-80: 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 [753]tightvnc extension
+ This default takes advantage of a [758]tightvnc extension
(CursorShapeUpdates) that allows specifying a cursor image shape for
- the local VNC viewer. You may disable it with the [754]-nocursor
+ the local VNC viewer. You may disable it with the [759]-nocursor
option to x11vnc if your viewer does not have this extension.
Note: as of Aug/2004 this should be fixed: the default for
@@ -5893,17 +5909,17 @@ EndSection
clients (i.e. passive viewers can see the mouse cursor being moved
around by another viewer)?
- Use the [755]-cursorpos option when starting x11vnc. A VNC viewer must
+ Use the [760]-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 [756]-nocursorpos and [757]-nocursorshape.
+ is the default. See also [761]-nocursorpos and [762]-nocursorshape.
Q-82: 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: [758]-buttonmap
+ You can remap the mouse buttons via something like: [763]-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.
@@ -5911,7 +5927,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 [759]-debug_pointer option prints out much info for
+ Note that the [764]-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
@@ -5933,7 +5949,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 [760]-buttonmap but rather configuring the X server
+ consider not using [765]-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"').
@@ -5963,7 +5979,7 @@ EndSection
Q-83: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages?
- The option [761]-modtweak should help here. It is a mode that monitors
+ The option [766]-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.
@@ -5972,16 +5988,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 [762]this FAQ for more info). Without
+ not exist on the keyboard (see [767]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 [763]FAQ about the -xkb option for a more powerful method
+ Also see the [768]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
- [764]-debug_keyboard option prints out much info for every keystroke
+ [769]-debug_keyboard option prints out much info for every keystroke
and so can be useful debugging things.
@@ -5993,9 +6009,9 @@ EndSection
(e.g. pc105 in the XF86Config file when it should be something else,
say pc104).
- Short Cut: Try the [765]-xkb or [766]-sloppy_keys options and see if
+ Short Cut: Try the [770]-xkb or [771]-sloppy_keys options and see if
that helps the situation. The discussion below is a bit outdated (e.g.
- [767]-modtweak is now the default) but it is useful reference for
+ [772]-modtweak is now the default) but it is useful reference for
various tricks and so is kept.
@@ -6038,17 +6054,17 @@ EndSection
-remap less-comma
These are convenient in that they do not modify the actual X server
- settings. The former ([768]-modtweak) is a mode that monitors the
+ settings. The former ([773]-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 ([769]-remap less-comma) is an immediate remapping of the
+ The latter ([774]-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 [770]FAQ about the -xkb option as a possible workaround
+ See also the [775]FAQ about the -xkb option as a possible workaround
using the XKEYBOARD extension.
- Note that the [771]-debug_keyboard option prints out much info for
+ Note that the [776]-debug_keyboard option prints out much info for
every keystroke to aid debugging keyboard problems.
@@ -6056,13 +6072,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 [772]keymapping
+ the Shift key before releasing the "<". Because of a [777]keymapping
ambiguity the last event "< up" is interpreted as "," because that key
unshifted is the comma.
- This should not happen in [773]-xkb mode, because it works hard to
+ This should not happen in [778]-xkb mode, because it works hard to
resolve the ambiguities. If you do not want to use -xkb, try the
- option [774]-sloppy_keys to attempt a similar type of algorithm.
+ option [779]-sloppy_keys to attempt a similar type of algorithm.
Q-86: I'm using an "international" keyboard (e.g. German "de", or
@@ -6086,7 +6102,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 [775]-modtweak
+ This all worked fine with x11vnc running with the [780]-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
@@ -6103,7 +6119,7 @@ EndSection
* there is a new option -xkb to use the XKEYBOARD extension API to
do the Modifier key tweaking.
- The [776]-xkb option seems to fix all of the missing keys: "@", "<",
+ The [781]-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
@@ -6111,7 +6127,7 @@ EndSection
debugging output (send it along with any problems you report).
Update: as of Jun/2005 x11vnc will try to automatically enable
- [777]-xkb if it appears that would be beneficial (e.g. if it sees any
+ [782]-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.
@@ -6126,7 +6142,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:
- [778]-skip_keycodes 93
+ [783]-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
@@ -6144,16 +6160,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 [779]-remap x11vnc option:
+ created using the [784]-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
- [780]-add_keysyms option in the next paragraph.
- Update: for convenience "[781]-remap DEAD" does many of these
+ [785]-add_keysyms option in the next paragraph.
+ Update: for convenience "[786]-remap DEAD" does many of these
mappings at once.
- * To complement the above workaround using the [782]-remap, an
- option [783]-add_keysyms was added. This option instructs x11vnc
+ * To complement the above workaround using the [787]-remap, an
+ option [788]-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
@@ -6172,7 +6188,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) [784]-norepeat x11vnc option. You will still
+ use the new (Jul/2004) [789]-norepeat x11vnc option. You will still
have autorepeating because that is taken care of on your VNC viewer
side.
@@ -6196,7 +6212,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 [785]-norepeat (which has since Dec/2004 been
+ needed, or to use the [790]-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
@@ -6207,7 +6223,7 @@ EndSection
keystrokes!!
Are you using x11vnc to log in to an X session via display manager?
- (as described in [786]this FAQ) If so, x11vnc is starting before your
+ (as described in [791]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
@@ -6255,11 +6271,11 @@ EndSection
pressed one. You need to do this for both the left and right Shift,
Alt, Control, etc. keys to be sure.
- You can also use the [787]-clear_mods option to try to clear all of
+ You can also use the [792]-clear_mods option to try to clear all of
the modifier keys at x11vnc startup. You will still have to be careful
that you do not leave the modifier key pressed down during your
session. It is difficult to prevent this problem from occurring (short
- of using [788]-remap to prevent sending all of the problem modifier
+ of using [793]-remap to prevent sending all of the problem modifier
keys, which would make the destkop pretty unusable).
During a session these x11vnc remote control commands can also help:
@@ -6272,16 +6288,16 @@ EndSection
Num_Lock down. When these are locked on the remote side it can
sometimes lead to strange desktop behavior (e.g. cannot drag or click
on windows). As above you may not notice this because the lock isn't
- down on the local (Viewer) side. See [789]this FAQ on lock keys
- problem. These options may help avoid the problem: [790]-skip_lockkeys
- and [791]-capslock. See also [792]-clear_all.
+ down on the local (Viewer) side. See [794]this FAQ on lock keys
+ problem. These options may help avoid the problem: [795]-skip_lockkeys
+ and [796]-capslock. See also [797]-clear_all.
Q-90: The machine where I run x11vnc has an AltGr key, but the local
machine where I run the VNC viewer does not. Is there a way I can map
a local unused key to send an AltGr? How about a Compose key as well?
- Something like "[793]-remap Super_R-Mode_switch" x11vnc option may
+ Something like "[798]-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)).
@@ -6304,7 +6320,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 [794]-remap Alt_L-Meta_L to x11vnc may be sufficient for ones
+ the [799]-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.
@@ -6324,7 +6340,7 @@ EndSection
and similar triple mappings (with two in the AltGr/Mode_switch group)
of a keysum to a single keycode.
- Use the [795]-nomodtweak option as a workaround. You can also use
+ Use the [800]-nomodtweak option as a workaround. You can also use
xmodmap to correct these mappings in the server, e.g.:
xmodmap -e "keycode 47 = 3 numbersign"
@@ -6338,7 +6354,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 [796]-remap
+ have x11vnc do the remapping. This can be done via the [801]-remap
option using the fake "keysyms" Button1, Button2, etc. as the "to"
keys (i.e. the ones after the "-")
@@ -6347,7 +6363,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:
- [797]-remap Super_R-Button2
+ [802]-remap Super_R-Button2
maps the Super_R "flag" key press to the Button2 click, thereby making
X pasting a bit easier.
@@ -6366,13 +6382,13 @@ 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
- [798]-skip_lockkeys option should help to accomplish this. For finer
- grain control use something like: "[799]-remap Caps_Lock-None".
+ [803]-skip_lockkeys option should help to accomplish this. For finer
+ grain control use something like: "[804]-remap Caps_Lock-None".
- Also try the [800]-nomodtweak and [801]-capslock options.
+ Also try the [805]-nomodtweak and [806]-capslock options.
Another useful option that turns off any Lock keys on the remote side
- at startup and end is the [802]-clear_all option. During a session you
+ at startup and end is the [807]-clear_all option. During a session you
can run these remote control commands to modify the Lock keys:
x11vnc -R clear_locks
x11vnc -R clear_all
@@ -6401,7 +6417,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
- [803]the next FAQ on x11vnc scaling.
+ [808]the next FAQ on x11vnc scaling.
Q-96: Does x11vnc support server-side framebuffer scaling? (E.g. to
@@ -6409,7 +6425,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 "[804]-scale fraction" option. "fraction" can either be a
+ use the "[809]-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.
@@ -6434,7 +6450,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
- [805]applications. Since with integer scale factors the framebuffers
+ [810]applications. Since with integer scale factors the framebuffers
become huge and scaling operations time consuming, be sure to use
":nb" for the fastest response.
@@ -6460,7 +6476,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 ([806]-rfbport option,
+ different scalings listening on separate ports ([811]-rfbport option,
etc.).
Update: As of May/2006 x11vnc also supports the UltraVNC server-side
@@ -6470,8 +6486,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 [807]GUI, then to avoid all of the x11vnc's simultaneously
- answering the gui you will need to use something like [808]"-connect
+ use the [812]GUI, then to avoid all of the x11vnc's simultaneously
+ answering the gui you will need to use something like [813]"-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 process and the
@@ -6480,7 +6496,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
- [809]"-scale_cursor frac" option to set the cursor scaling to a
+ [814]"-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).
@@ -6502,21 +6518,21 @@ 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 [810]-blackout x11vnc option
+ may be distracting to the viewer. The [815]-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
- [811]-xinerama x11vnc option can be used to have it automatically
+ [816]-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:
- [812]-xinerama is now on by default.
+ [817]-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 [813]-xwarppointer
+ of the large display. If this happens try using the [818]-xwarppointer
option. This instructs x11vnc to fake mouse pointer motions using the
XWarpPointer function instead of the XTestFakeMotionEvent XTEST
function. (This may be due to a bug in the X server for XTEST when
- Xinerama is enabled). Update: As of Dec/2006 [814]-xwarppointer will
+ Xinerama is enabled). Update: As of Dec/2006 [819]-xwarppointer will
be applied automatically if Xinerama is detected. To disable use:
-noxwarppointer
@@ -6539,23 +6555,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 [815]FAQ to increase the limit. It
- is probably also a good idea to run with the [816]-onetile option in
+ /etc/system as mentioned in another [820]FAQ to increase the limit. It
+ is probably also a good idea to run with the [821]-onetile option in
this case (to limit each x11vnc to 3 shm segments), or even
- [817]-noshm to use no shm segments.
+ [822]-noshm to use no shm segments.
Q-99: Can x11vnc show only a portion of the display? (E.g. for a
special purpose application).
- As of Mar/2005 x11vnc has the "[818]-clip WxH+X+Y" option to select a
+ As of Mar/2005 x11vnc has the "[823]-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 [819]Xinerama screen into two
+ One user used -clip to split up a large [824]Xinerama screen into two
more managable smaller screens.
This also works to view a sub-region of a single application window if
- the [820]-id or [821]-sid options are used. The offset is measured
+ the [825]-id or [826]-sid options are used. The offset is measured
from the upper left corner of the selected window.
@@ -6564,7 +6580,7 @@ EndSection
just seems to crash.
As of Dec/2004 x11vnc supports XRANDR. You enable it with the
- [822]-xrandr option to make x11vnc monitor XRANDR events and also trap
+ [827]-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.
@@ -6574,9 +6590,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 [823]-padgeom option to make the region big
+ viewers you can try the [828]-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: [824]SSVNC
+ for the TightVNC Viewer on Unix: [829]SSVNC
If you specify "-xrandr newfbsize" then vnc viewers that do not
support NewFBSize will be disconnected before the resize. If you
@@ -6588,7 +6604,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 [825]-rotate option allow this. E.g's:
+ As of Jul/2006 there is the [830]-rotate option allow this. E.g's:
"-rotate +90", "-rotate -90", "-rotate x", etc.
@@ -6653,13 +6669,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 [826]here for how to
+ straight xscreensaver (see the instructions [831]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 [827]-nodpms option was added
+ suspend, or off). In Nov/2006 the x11vnc [832]-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
@@ -6675,16 +6691,16 @@ EndSection
This appears to be because the 3D OpenGL/GLX hardware screen updates
do not get reported via the XDAMAGE mechanism. So this is a bug in
- [828]beryl or XDAMAGE/Xorg or the (possibly 3rd party) video card
+ [833]beryl or XDAMAGE/Xorg or the (possibly 3rd party) video card
driver.
- As a workaround apply the [829]-noxdamage option. As of Feb/2007
+ As a workaround apply the [834]-noxdamage option. As of Feb/2007
x11vnc will try to autodetect the problem and disable XDAMAGE if is
appears to be missing a lot of updates. But if you know you are using
- beryl you might as well always supply -noxdamage. Thanks to [830]this
+ beryl you might as well always supply -noxdamage. Thanks to [835]this
user who reported the problem and discovered the workaround.
- A developer for [831]MiniMyth reports that the 'alphapulse' tag of the
+ A developer for [836]MiniMyth reports that the 'alphapulse' tag of the
theme G.A.N.T. can also cause problems, and should be avoided when
using VNC.
@@ -6704,9 +6720,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 [832]this FAQ
+ desktop in a separate Virtual Console (e.g. VC 8) (see [837]this FAQ
on VC's for background). Unfortunately, this Fullscreen VC is not an X
- server. So x11vnc cannot access it (however, [833]see this discussion
+ server. So x11vnc cannot access it (however, [838]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.
@@ -6727,13 +6743,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 [834]is in the active VC.
+ as long as the VMWare X session [839]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) window-id 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 [835]-id windowid option. The
+ the VMWare menu buttons) by use of the [840]-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
@@ -6749,10 +6765,10 @@ EndSection
controlled) via VNC with x11vnc?
As of Apr/2005 there is support for this. Two options were added:
- "[836]-rawfb string" (to indicate the raw frame buffer device, file,
- etc. and its parameters) and "[837]-pipeinput command" (to provide an
+ "[841]-rawfb string" (to indicate the raw frame buffer device, file,
+ etc. and its parameters) and "[842]-pipeinput command" (to provide an
external program that will inject or otherwise process mouse and
- keystroke input). Some useful [838]-pipeinput schemes, VID, CONSOLE,
+ keystroke input). Some useful [843]-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
@@ -6790,9 +6806,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 [839]-snapfb option with
+ this). The "snap:" setting applies the [844]-snapfb option with
"file:" type reading (this is useful for exporting webcams or TV tuner
- video; see [840]the next FAQ for more info).
+ video; see [845]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
@@ -6836,7 +6852,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 [841]X
+ for the case of Xvfb x11vnc can poll it much better via the [846]X
API, but you get the idea.
By default in -rawfb mode x11vnc will actually close any X display it
@@ -6865,13 +6881,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 [842]Qt-embedded apps (PDAs/Handhelds). By default the
+ fullscreen, or [847]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 [843]this FAQ for details. If specified via "-rawfb Video"
+ kernel. See [848]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).
@@ -6879,10 +6895,10 @@ EndSection
also useful in testing.
- All of the above [844]-rawfb options are just for viewing the raw
+ All of the above [849]-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 [845]video camera mapped its framebuffer
+ this feature (e.g. suppose a [850]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
@@ -6920,7 +6936,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 [846]active VC) one
+ view and interact with VC #2 (assuming it is the [851]active VC) one
can run something like:
x11vnc -rawfb map:/dev/fb0@1024x768x16 -pipeinput './vcinject.pl 2'
@@ -6975,7 +6991,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
- [847]Qt-embedded Also, for example the [848]VMWare Fullscreen mode is
+ [852]Qt-embedded Also, for example the [853]VMWare Fullscreen mode is
actually viewable under -rawfb and can be interacted with if uinput is
enabled.
@@ -6995,9 +7011,9 @@ EndSection
Q-109: Can I export via VNC a Webcam or TV tuner framebuffer using
x11vnc?
- Yes, this is possible to some degree with the [849]-rawfb option.
+ Yes, this is possible to some degree with the [854]-rawfb option.
There is no X11 involved: snapshots from the video capture device are
- used for the screen image data. See the [850]previous FAQ on -rawfb
+ used for the screen image data. See the [855]previous FAQ on -rawfb
for background. For best results, use x11vnc version 0.8.1 or later.
Roughly, one would do something like this:
@@ -7009,7 +7025,7 @@ EndSection
snapshot to a file that you point -rawfb to; ask me if it is not clear
what to do).
- The "snap:" enforces [851]-snapfb mode which appears to be necessary.
+ The "snap:" enforces [856]-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.
@@ -7031,7 +7047,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 [852]-24to32 option will be automatically imposed when in
+ etc, the [857]-24to32 option will be automatically imposed when in
24bpp.
Note that by its very nature, video capture involves rapid change in
@@ -7039,7 +7055,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 [853]-wait, [854]-slow_fb, or [855]-defer
+ the framerate via the [858]-wait, [859]-slow_fb, or [860]-defer
options. Decreasing the window size and bpp also helps.
@@ -7128,7 +7144,7 @@ EndSection
format to HI240, RGB565, RGB24, RGB32, RGB555, and
GREY respectively. See -rawfb video for details.
- See also the [856]-freqtab option to supply your own xawtv channel to
+ See also the [861]-freqtab option to supply your own xawtv channel to
frequency mappings for your country (only ntsc-cable-us is built into
x11vnc).
@@ -7137,7 +7153,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 [857]-rawfb scheme where the
+ Yes, the basic method for this is the [862]-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:
@@ -7150,7 +7166,7 @@ EndSection
x11vnc -rawfb /dev/fb0@640x480x16
Also, to force usage of the uinput injection method use "-pipeinput
- UINPUT". See the [858]-pipeinput description for tunable parameters,
+ UINPUT". See the [863]-pipeinput description for tunable parameters,
etc.
One problem with the x11vnc uinput scheme is that it cannot guess the
@@ -7166,7 +7182,7 @@ EndSection
Even with the correct acceleration setting there is still 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 [859]-pipeinput UINPUT option for tuning
+ times a second. See the [864]-pipeinput UINPUT option for tuning
parameters that can be set (there are some experimental thresh=N
tuning parameters as well)
@@ -7201,7 +7217,7 @@ EndSection
Q-111: 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 [860]-rawfb only
+ Yes, as of Jul/2006 x11vnc enables building for [865]-rawfb only
support. Just do something like when building:
./configure --without-x (plus any other flags)
make
@@ -7217,11 +7233,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
- [861]-rawfb mechanism described above. The mouse and keyboard input is
+ [866]-rawfb mechanism described above. The mouse and keyboard input is
achieved via Mac OS X API's.
- So you can use x11vnc as an alternative to [862]OSXvnc (aka Vine
- Server), or [863]Apple Remote Desktop (ARD). Perhaps there is some
+ So you can use x11vnc as an alternative to [867]OSXvnc (aka Vine
+ Server), or [868]Apple Remote Desktop (ARD). Perhaps there is some
x11vnc feature you'd like to use on Mac OS X, etc. For a number of
activities (e.g. window drags) it seems to be faster than OSXvnc.
@@ -7231,7 +7247,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 [864]-id windowid mode (and the
+ only work reasonably in single window [869]-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
@@ -7249,9 +7265,9 @@ EndSection
./configure --without-x
make
- Win2VNC/x2vnc: One handy use is to use the [865]-nofb mode to
+ Win2VNC/x2vnc: One handy use is to use the [870]-nofb mode to
redirect mouse and keyboard input to a nearby Mac (i.e. one to the
- side of your desk) via [866]x2vnc or Win2VNC. See [867]this FAQ for
+ side of your desk) via [871]x2vnc or Win2VNC. See [872]this FAQ for
more info.
Options: Here are the Mac OS X specific x11vnc options:
@@ -7325,13 +7341,13 @@ rm -f $tmp
performance for the case of a large number of simultaneous VNC viewers
(e.g. classroom broadcasting or a large demo)?
- Yes, as of Feb/2007 there is the "[868]-reflect host:N" option to
+ Yes, as of Feb/2007 there is the "[873]-reflect host:N" option to
connect to the VNC server "host:N" (either another x11vnc or any other
VNC server) and re-export it. VNC viewers then connect to the
x11vnc(s) running -reflect.
The -reflect option is the same as: "-rawfb vnc:host:N". See the
- [869]-rawfb description under "VNC HOST" for more details.
+ [874]-rawfb description under "VNC HOST" for more details.
You can replace "host:N" with "listen" or "listen:port" for reverse
connections.
@@ -7392,18 +7408,18 @@ rm -f $tmp
re-exports via VNC to its clients C). However, CopyRect and
CursorShape encodings are preserved in the reflection and that helps.
Dragging windows with the mouse can be a problem (especially if S is
- not doing wireframing somehow, consider [870]-nodragging if the
+ not doing wireframing somehow, consider [875]-nodragging if the
problem is severe) For a really fast reflector/repeater it would have
to be implemented from scratch with performance in mind. See these
other projects:
- [871]http://sourceforge.net/projects/vnc-reflector/,
- [872]http://www.tightvnc.com/projector/ (closed source?),
+ [876]http://sourceforge.net/projects/vnc-reflector/,
+ [877]http://www.tightvnc.com/projector/ (closed source?),
Automation via Reverse Connections: Instead of having the R's
connect directly to S and then the C's connect directly to the R they
should use, some convenience can be achieved by using reverse
- connections (the x11vnc "[873]"-connect host1,host2,..." option).
+ connections (the x11vnc "[878]"-connect host1,host2,..." option).
Suppose all the clients "C" are started up in Listen mode:
client1> vncviewer -listen
client2> vncviewer -listen
@@ -7454,7 +7470,7 @@ rm -f $tmp
If the Solaris install is an older X-based one, there will be a menu
for you to get a terminal window. From that window you might be able
to retrieve x11vnc.static via wget, scp, or ftp. Remember to do "chmod
- 755 ./x11vnc.static" and then find the -auth file as in [874]this FAQ.
+ 755 ./x11vnc.static" and then find the -auth file as in [879]this FAQ.
If it is a Linux install that uses an X server (e.g. SuSE and probably
Fedora), then you can often get a shell by pressing Ctrl-Alt-F2 or
@@ -7463,7 +7479,7 @@ rm -f $tmp
wget http://192.168.0.22/x11vnc.static
chmod 755 ./x11vnc.static
- Find the name of the auth file as in [875]this FAQ. (maybe run "ps
+ Find the name of the auth file as in [880]this FAQ. (maybe run "ps
wwwwaux | grep auth"). Then run it like this:
./x11vnc.static -forever -nopw -display :0 -auth /tmp/wherever/the/authfile
@@ -7510,11 +7526,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 [876]-nosel option. If you don't
+ Clipboard/Selection exchanged use the [881]-nosel option. If you don't
want the PRIMARY selection to be polled for changes use the
- [877]-noprimary option. (with a similar thing for CLIPBOARD). You can
- also fine-tune it a bit with the [878]-seldir dir option and also
- [879]-input.
+ [882]-noprimary option. (with a similar thing for CLIPBOARD). You can
+ also fine-tune it a bit with the [883]-seldir dir option and also
+ [884]-input.
You may need to watch out for desktop utilities such as KDE's
"Klipper" that do odd things with the selection, clipboard, and
@@ -7526,7 +7542,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
- [880]pyvnc2swf. There are a number of [881]tutorials on how to do
+ [885]pyvnc2swf. There are a number of [886]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
@@ -7541,11 +7557,11 @@ rm -f $tmp
(and Windows viewers only support filetransfer it appears... but they
do work to some degree under Wine on Linux).
- The [882]SSVNC Unix VNC viewer supports UltraVNC file transfer by use
+ The [887]SSVNC Unix VNC viewer supports UltraVNC file transfer by use
of a Java helper program.
TightVNC file transfer is off by default, if you want to enable it use
- the [883]-nofilexfer option.
+ the [888]-nofilexfer option.
UltraVNC file transfer is off by default, to enable it use something
like "-rfbversion 3.6 -permitfiletransfer"
@@ -7568,7 +7584,7 @@ rm -f $tmp
IMPORTANT: please understand if -ultrafilexfer or -tightfilexfer is
specified and you run x11vnc as root for, say, inetd or display
manager (gdm, kdm, ...) access and you do not have it switch users via
- the [884]-users option, then VNC Viewers that connect are able to do
+ the [889]-users option, then VNC Viewers that connect are able to do
filetransfer reads and writes as *root*.
The UltraVNC and TightVNC settings can be toggled on and off inside
@@ -7587,7 +7603,7 @@ rm -f $tmp
these extensions you will need to supply this option to x11vnc:
-rfbversion 3.6
- Or use [885]-ultrafilexfer which is an alias for the above option and
+ Or use [890]-ultrafilexfer which is an alias for the above option and
"-permitfiletransfer". UltraVNC evidently treats any other RFB version
number as non-UltraVNC.
@@ -7599,14 +7615,14 @@ rm -f $tmp
* 1/n Server Scaling
* rfbEncodingUltra compression encoding
- The [886]SSVNC Unix VNC viewer supports these UltraVNC extensions.
+ The [891]SSVNC Unix VNC viewer supports these UltraVNC extensions.
- To disable SingleWindow and ServerInput use [887]-noultraext (the
+ To disable SingleWindow and ServerInput use [892]-noultraext (the
others are managed by LibVNCServer). See this option too:
- [888]-noserverdpms.
+ [893]-noserverdpms.
- Also, the [889]UltraVNC repeater proxy is supported for use with
- reverse connections: "[890]-connect repeater://host:port+ID:NNNN". Use
+ Also, the [894]UltraVNC repeater proxy is supported for use with
+ reverse connections: "[895]-connect repeater://host:port+ID:NNNN". Use
it for both plaintext and SSL connections. This mode can send any
string before switching to the VNC protocol, and so could be used with
other proxy/gateway tools.
@@ -7617,12 +7633,12 @@ rm -f $tmp
reverse vnc connection from their Unix desktop to a helpdesk
operator's VNC Viewer.
- Yes, UltraVNC's [891]Single Click (SC) mode can be done fairly well on
+ Yes, UltraVNC's [896]Single Click (SC) mode can be done fairly well on
Unix.
We use the term "helpdesk" below, but it could be any sort of remote
assistance you want to set up, e.g. something for Unix-using friends
- or family to use. This includes [892]Mac OS X.
+ or family to use. This includes [897]Mac OS X.
Assume you create a helpdesk directory "hd" on your website:
http://www.mysite.com/hd (any website that you can upload files to
@@ -7678,7 +7694,7 @@ chmod 755 ./x11vnc # platform, use $webhost/`uname`/x11vnc
So I guess this is about 3-4 clicks (start a terminal and paste) and
pressing "Enter" instead of "single click"...
- See [893]this page for some variations on this method, e.g. how to add
+ See [898]this page for some variations on this method, e.g. how to add
a password, SSL Certificates, etc.
@@ -7690,11 +7706,11 @@ chmod 755 ./x11vnc # platform, use $webhost/`uname`/x11vnc
A bit of obscurity security could be put in with a -passwd, -rfbauth
options, etc. (note that x11vnc will require a password even for
- reverse connections). More info [894]here.
+ reverse connections). More info [899]here.
Firewalls: If the helpdesk (you) with the vncviewer is behind a
- NAT/Firewall/Router the [895]router will have to be configured to
+ NAT/Firewall/Router the [900]router will have to be configured to
redirect a port (i.e. 5500 or maybe different one if you like) to the
vncviewer machine. If the vncviewer machine also has its own
host-level firewall, you will have to open up the port there as well.
@@ -7704,7 +7720,7 @@ chmod 755 ./x11vnc # platform, use $webhost/`uname`/x11vnc
configuring a router to do a port redirection (i.e. on your side, the
HelpDesk). To avoid modifying either firewall/router, one would need
some public (IP address reachable on the internet) redirection/proxy
- service. Perhaps such a thing exists. [896]http://sc.uvnc.com provides
+ service. Perhaps such a thing exists. [901]http://sc.uvnc.com provides
this service for their UltraVNC Single Click users.
@@ -7740,7 +7756,7 @@ chmod 755 ./x11vnc # platform, use $webhost/`uname`/x11vnc
As of Apr/2007 x11vnc supports reverse connections in SSL and so we
can do this. On the Helpdesk side (Viewer) you will need STUNNEL or
- better use the [897]Enhanced TightVNC Viewer (SSVNC) package we
+ better use the [902]Enhanced TightVNC Viewer (SSVNC) package we
provide that automates all of the SSL for you.
To do this create a file named "vncs" in the website "hd" directory
@@ -7770,11 +7786,11 @@ chmod 755 ./x11vnc # platform, use $webhost/`uname`/x11vnc
with the hostnames or IP addresses customized to your case.
- The only change from the "vnc" above is the addition of the [898]-ssl
+ The only change from the "vnc" above is the addition of the [903]-ssl
option to x11vnc. This will create a temporary SSL cert: openssl(1)
will need to be installed on the user's end. A fixed SSL cert file
could be used to avoid this (and provide some authentication; more
- info [899]here.)
+ info [904]here.)
The naive user will be doing this:
wget -qO - http://www.mysite.com/hd/vncs | sh -
@@ -7783,7 +7799,7 @@ chmod 755 ./x11vnc # platform, use $webhost/`uname`/x11vnc
But before that, the helpdesk operator needs to have "vncviewer
-listen" running as before, however he needs an SSL tunnel at his end.
- The easiest way to do this is use [900]Enhanced TightVNC Viewer
+ The easiest way to do this is use [905]Enhanced TightVNC Viewer
(SSVNC). Start it, and select Options -> 'Reverse VNC Connection
(-listen)'. Then UN-select 'Verify All Certs' (this can be enabled
later if you want; you'll need the x11vnc SSL certificate), and click
@@ -7813,7 +7829,7 @@ connect = localhost:5501
answer the prompts with whatever you want; you can take the default
for all of them if you like. The openssl(1) package must be installed.
- See [901]this link and [902]this one too for more info on SSL certs.
+ See [906]this link and [907]this one too for more info on SSL certs.
This creates $HOME/.vnc/certs/server-self:mystunnel.pem, then you
would change the "stunnel.cfg" to look something like:
foreground = yes
@@ -7834,7 +7850,7 @@ connect = localhost:5501
then all bets are off!.
More SSL variations and info about certificates can be found
- [903]here.
+ [908]here.
OpenSSL libssl.so.0.9.7 problems:
@@ -7844,7 +7860,7 @@ connect = localhost:5501
distros are currently a bit of a mess regarding which version of
libssl is installed.
- You will find the [904]details here.
+ You will find the [909]details here.
Q-120: Can I (temporarily) mount my local (viewer-side) Windows/Samba
@@ -7853,7 +7869,7 @@ connect = localhost:5501
You will have to use an external network redirection for this.
Filesystem mounting is not part of the VNC protocol.
- We show a simple [905]Samba example here.
+ We show a simple [910]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:
@@ -7893,7 +7909,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 [906]Enhanced TightVNC Viewer (SSVNC) package we provide (as
+ into the [911]Enhanced TightVNC Viewer (SSVNC) package we provide (as
of Sep 2006 it is there for testing).
@@ -7903,7 +7919,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 [907]CUPS example here. Non-CUPS port
+ We show a simple Unix to Unix [912]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).
@@ -7975,7 +7991,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 [908]Enhanced TightVNC Viewer (SSVNC) package we provide (as
+ into the [913]Enhanced TightVNC Viewer (SSVNC) package we provide (as
of Sep 2006 it is there for testing).
@@ -8076,7 +8092,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 [909]Enhanced TightVNC Viewer (SSVNC) package
+ redir setup into the [914]Enhanced TightVNC Viewer (SSVNC) package
we provide (as of Sep/2006 it is there for testing).
@@ -8088,14 +8104,14 @@ 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 [910]-nobell option. If
+ If you don't want to hear the beeps use the [915]-nobell option. If
you want to hear the audio from the remote applications, consider
- trying a [911]redirector such as esd.
+ trying a [916]redirector such as esd.
Q-124: Does x11vnc work with IPv6?
- Currently the only way to do this is via [912]inetd. You configure
+ Currently the only way to do this is via [917]inetd. You configure
x11vnc to be run from inetd or xinetd and instruct it to listen on an
IPv6 address. For xinetd the setting "flags = IPv6" will be needed.
@@ -8104,7 +8120,7 @@ or:
connection). Some sort of ipv4-to-ipv6 redirector tool (perhaps even a
perl script) could be useful to avoid this.
- Also note that not all VNC Viewers are [913]IPv6 enabled, so a
+ Also note that not all VNC Viewers are [918]IPv6 enabled, so a
redirector could even be needed on the client side.
@@ -8146,896 +8162,901 @@ References
21. http://www.karlrunge.com/x11vnc/index.html#faq
22. http://www.karlrunge.com/x11vnc/disclaimer.html
23. http://www.karlrunge.com/x11vnc/index.html#contact
- 24. http://www.karlrunge.com/x11vnc/index.html#beta-test
- 25. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 26. http://www.karlrunge.com/x11vnc/ssvnc.html
- 27. http://www.realvnc.com/
- 28. http://www.tightvnc.com/
- 29. http://www.ultravnc.com/
- 30. http://www.redstonesoftware.com/vnc.html
- 31. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 32. http://www.karlrunge.com/x11vnc/index.html#downloading
- 33. http://www.tightvnc.com/download.html
- 34. http://www.karlrunge.com/x11vnc/ssvnc.html
- 35. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 36. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 37. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 38. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 39. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
- 40. http://www.sun.com/software/solaris/freeware/
- 41. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 42. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 43. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 44. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 45. http://www.karlrunge.com/x11vnc/index.html#faq-service
- 46. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 47. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
- 48. http://www.karlrunge.com/x11vnc/ssvnc.html#download
- 49. http://www.karlrunge.com/x11vnc/etv/ssvnc_no_windows-1.0.19.tar.gz
- 50. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 51. http://www.karlrunge.com/x11vnc/ssvnc.html#tsvnc
- 52. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 53. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
- 54. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 55. http://www.karlrunge.com/x11vnc/index.html#tightvnc_via
- 56. http://www.karlrunge.com/x11vnc/ssvnc.html
- 57. http://www.karlrunge.com/x11vnc/ssvnc.html#tsvnc
- 58. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 59. http://www.karlrunge.com/x11vnc/chainingssh.html
- 60. http://www.karlrunge.com/x11vnc/ssvnc.html
- 61. http://www.portforward.com/routers.htm
- 62. http://www.whatismyip.com/
- 63. http://www.karlrunge.com/x11vnc/ssvnc.html
- 64. http://www.karlrunge.com/x11vnc/index.html#ssl-tunnel
- 65. http://www.whatismyip.com/
- 66. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 67. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 68. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 69. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 70. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 71. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 72. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 73. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
- 74. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 75. http://www.karlrunge.com/x11vnc/ssvnc.html
- 76. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
- 77. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 78. http://www.stunnel.org/
- 79. http://stunnel.mirt.net/
- 80. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 81. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 82. http://www.karlrunge.com/x11vnc/ssvnc.html
- 83. http://sourceforge.net/projects/libvncserver/
- 84. http://sourceforge.net/project/showfiles.php?group_id=32584&package_id=119006&release_id=544195
- 85. http://sourceforge.net/project/shownotes.php?release_id=544195&group_id=32584
- 86. http://www.karlrunge.com/x11vnc/x11vnc-0.9.4.tar.gz
- 87. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
- 88. http://www.tightvnc.com/download.html
- 89. http://www.realvnc.com/download-free.html
- 90. http://sourceforge.net/projects/cotvnc/
- 91. http://www.ultravnc.com/
- 92. http://www.karlrunge.com/x11vnc/ssvnc.html
- 93. http://www.karlrunge.com/x11vnc/rx11vnc
- 94. http://www.karlrunge.com/x11vnc/rx11vnc.pl
- 95. http://www.sunfreeware.com/
- 96. http://www.karlrunge.com/x11vnc/bins
- 97. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 98. http://www.karlrunge.com/x11vnc/miscbuild.html
- 99. ftp://ftp.uu.net/graphics/jpeg/
- 100. http://www.gzip.org/zlib/
- 101. http://www.sunfreeware.com/
- 102. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
- 103. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 104. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 105. http://www.karlrunge.com/x11vnc/x11vnc-0.9.4.tar.gz
- 106. http://www.karlrunge.com/x11vnc/bins
- 107. mailto:xvml@karlrunge.com
- 108. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 109. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 110. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 111. http://www.karlrunge.com/x11vnc/ssvnc.html
- 112. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 113. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 114. http://www.karlrunge.com/x11vnc/ssvnc.html
- 115. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
- 116. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 117. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 118. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 119. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
- 120. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssh
- 121. http://www.uvnc.com/addons/repeater.html
- 122. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
- 123. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 124. http://www.karlrunge.com/x11vnc/ssvnc.html
- 125. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-finddpy
- 126. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listdpy
- 127. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 128. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 129. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 130. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
- 131. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-autoport
- 132. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ping
- 133. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
- 134. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 135. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 136. http://www.karlrunge.com/x11vnc/ssvnc.html
- 137. http://www.karlrunge.com/x11vnc/ssvnc.html#ycrop
- 138. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 139. http://www.ultravnc.com/
- 140. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 141. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 142. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 143. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 144. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
- 145. http://www.avahi.org/
- 146. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-avahi
- 147. http://www.karlrunge.com/x11vnc/ssvnc.html
- 148. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 149. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 150. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 151. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 152. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 153. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 154. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
- 155. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
- 156. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noserverdpms
- 157. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabalways
- 158. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 159. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 160. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
- 161. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpsredir
- 162. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 163. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 164. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 165. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 166. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
- 167. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
- 168. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nowireframelocal
- 169. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 170. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
- 171. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 172. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 173. http://www.openssl.org/
- 174. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 175. http://www.stunnel.org/
- 176. http://stunnel.mirt.net/
- 177. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
- 178. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCert
- 179. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCA
- 180. http://www.karlrunge.com/x11vnc/ssl.html
- 181. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 182. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 183. http://www.karlrunge.com/x11vnc/ssvnc.html
- 184. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 185. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
- 186. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 187. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 188. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 24. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 25. http://www.karlrunge.com/x11vnc/index.html#faq
+ 26. http://www.karlrunge.com/x11vnc/index.html#beta-test
+ 27. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 28. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 29. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 30. http://www.debian.org/security/2008/dsa-1571
+ 31. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 32. http://www.realvnc.com/
+ 33. http://www.tightvnc.com/
+ 34. http://www.ultravnc.com/
+ 35. http://www.redstonesoftware.com/vnc.html
+ 36. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 37. http://www.karlrunge.com/x11vnc/index.html#downloading
+ 38. http://www.tightvnc.com/download.html
+ 39. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 40. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 41. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 42. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 43. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 44. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
+ 45. http://www.sun.com/software/solaris/freeware/
+ 46. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 47. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 48. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 49. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 50. http://www.karlrunge.com/x11vnc/index.html#faq-service
+ 51. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 52. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
+ 53. http://www.karlrunge.com/x11vnc/ssvnc.html#download
+ 54. http://www.karlrunge.com/x11vnc/etv/ssvnc_no_windows-1.0.19.tar.gz
+ 55. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 56. http://www.karlrunge.com/x11vnc/ssvnc.html#tsvnc
+ 57. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 58. http://www.karlrunge.com/x11vnc/index.html#vnc_password_file
+ 59. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 60. http://www.karlrunge.com/x11vnc/index.html#tightvnc_via
+ 61. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 62. http://www.karlrunge.com/x11vnc/ssvnc.html#tsvnc
+ 63. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 64. http://www.karlrunge.com/x11vnc/chainingssh.html
+ 65. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 66. http://www.portforward.com/routers.htm
+ 67. http://www.whatismyip.com/
+ 68. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 69. http://www.karlrunge.com/x11vnc/index.html#ssl-tunnel
+ 70. http://www.whatismyip.com/
+ 71. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 72. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 73. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 74. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 75. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 76. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 77. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 78. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
+ 79. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 80. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 81. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
+ 82. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 83. http://www.stunnel.org/
+ 84. http://stunnel.mirt.net/
+ 85. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 86. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 87. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 88. http://sourceforge.net/projects/libvncserver/
+ 89. http://sourceforge.net/project/showfiles.php?group_id=32584&package_id=119006&release_id=544195
+ 90. http://sourceforge.net/project/shownotes.php?release_id=544195&group_id=32584
+ 91. http://www.karlrunge.com/x11vnc/x11vnc-0.9.4.tar.gz
+ 92. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
+ 93. http://www.tightvnc.com/download.html
+ 94. http://www.realvnc.com/download-free.html
+ 95. http://sourceforge.net/projects/cotvnc/
+ 96. http://www.ultravnc.com/
+ 97. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 98. http://www.karlrunge.com/x11vnc/rx11vnc
+ 99. http://www.karlrunge.com/x11vnc/rx11vnc.pl
+ 100. http://www.sunfreeware.com/
+ 101. http://www.karlrunge.com/x11vnc/bins
+ 102. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 103. http://www.karlrunge.com/x11vnc/miscbuild.html
+ 104. ftp://ftp.uu.net/graphics/jpeg/
+ 105. http://www.gzip.org/zlib/
+ 106. http://www.sunfreeware.com/
+ 107. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
+ 108. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 109. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 110. http://www.karlrunge.com/x11vnc/x11vnc-0.9.4.tar.gz
+ 111. http://www.karlrunge.com/x11vnc/bins
+ 112. mailto:xvml@karlrunge.com
+ 113. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 114. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 115. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 116. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 117. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 118. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 119. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 120. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
+ 121. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 122. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 123. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 124. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
+ 125. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssh
+ 126. http://www.uvnc.com/addons/repeater.html
+ 127. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
+ 128. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 129. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 130. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-finddpy
+ 131. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listdpy
+ 132. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 133. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 134. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 135. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
+ 136. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-autoport
+ 137. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ping
+ 138. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
+ 139. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 140. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 141. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 142. http://www.karlrunge.com/x11vnc/ssvnc.html#ycrop
+ 143. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 144. http://www.ultravnc.com/
+ 145. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 146. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 147. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 148. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 149. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
+ 150. http://www.avahi.org/
+ 151. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-avahi
+ 152. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 153. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 154. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 155. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 156. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 157. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 158. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 159. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
+ 160. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
+ 161. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noserverdpms
+ 162. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabalways
+ 163. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 164. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 165. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
+ 166. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpsredir
+ 167. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 168. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 169. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 170. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 171. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
+ 172. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
+ 173. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nowireframelocal
+ 174. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 175. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
+ 176. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 177. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 178. http://www.openssl.org/
+ 179. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 180. http://www.stunnel.org/
+ 181. http://stunnel.mirt.net/
+ 182. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
+ 183. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCert
+ 184. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslGenCA
+ 185. http://www.karlrunge.com/x11vnc/ssl.html
+ 186. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 187. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 188. http://www.karlrunge.com/x11vnc/ssvnc.html
189. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 190. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 191. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 192. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 193. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 194. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 195. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 196. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 197. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
- 198. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
- 199. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
- 200. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 201. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-v,
- 202. http://www.karlrunge.com/x11vnc/prevrels.html
- 203. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 204. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
- 205. http://www.tightvnc.com/
- 206. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 207. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 208. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
- 209. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 210. http://www.karlrunge.com/x11vnc/recurse_x11vnc.jpg
- 211. http://wwws.sun.com/sunray/index.html
- 212. http://www.karlrunge.com/x11vnc/sunray.html
- 213. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 214. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 215. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 216. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 217. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 218. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 219. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 220. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 221. mailto:xvml@karlrunge.com
- 222. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
- 223. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
- 224. http://www.karlrunge.com/x11vnc/index.html#faq-build
- 225. http://www.karlrunge.com/x11vnc/index.html#faq-missing-xtest
- 226. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
- 227. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
- 228. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
- 229. http://www.karlrunge.com/x11vnc/index.html#faq-cmdline-opts
- 230. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
- 231. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
- 232. http://www.karlrunge.com/x11vnc/index.html#faq-change-port
- 233. http://www.karlrunge.com/x11vnc/index.html#faq-firewalls
- 234. http://www.karlrunge.com/x11vnc/index.html#faq-firewall-out
- 235. http://www.karlrunge.com/x11vnc/index.html#faq-quiet-bg
- 236. http://www.karlrunge.com/x11vnc/index.html#faq-sigpipe
- 237. http://www.karlrunge.com/x11vnc/index.html#faq-tight139
- 238. http://www.karlrunge.com/x11vnc/index.html#faq-krdcprob
- 239. http://www.karlrunge.com/x11vnc/index.html#faq-build-customizations
- 240. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
- 241. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc-8bpp
- 242. http://www.karlrunge.com/x11vnc/index.html#faq-macosx-nofb
- 243. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
- 244. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
- 245. http://www.karlrunge.com/x11vnc/index.html#faq-directcolor
- 246. http://www.karlrunge.com/x11vnc/index.html#faq-windowid
- 247. http://www.karlrunge.com/x11vnc/index.html#faq-transients-id
- 248. http://www.karlrunge.com/x11vnc/index.html#faq-24bpp
- 249. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 250. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
- 251. http://www.karlrunge.com/x11vnc/index.html#faq-sunrays
- 252. http://www.karlrunge.com/x11vnc/index.html#faq-stop-bg
- 253. http://www.karlrunge.com/x11vnc/index.html#faq-remote_control
- 254. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 255. http://www.karlrunge.com/x11vnc/index.html#faq-passwd-noecho
- 256. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 257. http://www.karlrunge.com/x11vnc/index.html#faq-multipasswd
- 258. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
- 259. http://www.karlrunge.com/x11vnc/index.html#faq-custom-passwords
- 260. http://www.karlrunge.com/x11vnc/index.html#faq-forever-shared
- 261. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
- 262. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 263. http://www.karlrunge.com/x11vnc/index.html#faq-listen-interface
- 264. http://www.karlrunge.com/x11vnc/index.html#faq-listen-localhost
- 265. http://www.karlrunge.com/x11vnc/index.html#faq-input-opt
- 266. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 267. http://www.karlrunge.com/x11vnc/index.html#faq-users-opt
- 268. http://www.karlrunge.com/x11vnc/index.html#faq-blockdpy
- 269. http://www.karlrunge.com/x11vnc/index.html#faq-gone-lock
- 270. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-unix
- 271. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-putty
- 272. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 273. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 274. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 275. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
- 276. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 277. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-ca
- 278. http://www.karlrunge.com/x11vnc/index.html#faq-service
- 279. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 280. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 281. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
- 282. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 283. http://www.karlrunge.com/x11vnc/index.html#faq-loop
- 284. http://www.karlrunge.com/x11vnc/index.html#faq-java-http
- 285. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
- 286. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect-proxy
- 287. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 288. http://www.karlrunge.com/x11vnc/index.html#faq-headless
- 289. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
- 290. http://www.karlrunge.com/x11vnc/index.html#faq-less-resource
- 291. http://www.karlrunge.com/x11vnc/index.html#faq-more-resource
- 292. http://www.karlrunge.com/x11vnc/index.html#faq-slow-link
- 293. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage
- 294. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage-opengl
- 295. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
- 296. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 297. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
- 298. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 299. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-shape
- 300. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha
- 301. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 302. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-arrow
- 303. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-positions
- 304. http://www.karlrunge.com/x11vnc/index.html#faq-buttonmap-opt
- 305. http://www.karlrunge.com/x11vnc/index.html#faq-altgr
- 306. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 307. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless-sloppy
- 308. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 309. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys
- 310. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys-still
- 311. http://www.karlrunge.com/x11vnc/index.html#faq-mod-stuck-down
- 312. http://www.karlrunge.com/x11vnc/index.html#faq-remap-opt
- 313. http://www.karlrunge.com/x11vnc/index.html#faq-sun-alt-meta
- 314. http://www.karlrunge.com/x11vnc/index.html#faq-hpux-multi-key
- 315. http://www.karlrunge.com/x11vnc/index.html#faq-remap-button-click
- 316. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
- 317. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
- 318. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
- 319. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
- 320. http://www.karlrunge.com/x11vnc/index.html#faq-multi-screen
- 321. http://www.karlrunge.com/x11vnc/index.html#faq-clip-screen
- 322. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
- 323. http://www.karlrunge.com/x11vnc/index.html#faq-rotate
- 324. http://www.karlrunge.com/x11vnc/index.html#faq-black-screen
- 325. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 326. http://www.karlrunge.com/x11vnc/index.html#faq-hidden-taskbars
- 327. http://www.karlrunge.com/x11vnc/index.html#faq-kde-screensaver
- 328. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
- 329. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
- 330. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 331. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 332. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 333. http://www.karlrunge.com/x11vnc/index.html#faq-no-x11
- 334. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 335. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
- 336. http://www.karlrunge.com/x11vnc/index.html#faq-os-install
- 337. http://www.karlrunge.com/x11vnc/index.html#faq-clipboard
- 338. http://www.karlrunge.com/x11vnc/index.html#faq-record-swf
- 339. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
- 340. http://www.karlrunge.com/x11vnc/index.html#faq-ultravnc
- 341. http://www.karlrunge.com/x11vnc/index.html#faq-singleclick
- 342. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
- 343. http://www.karlrunge.com/x11vnc/index.html#faq-cups
- 344. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 345. http://www.karlrunge.com/x11vnc/index.html#faq-beeps
- 346. http://www.karlrunge.com/x11vnc/index.html#faq-ipv6
- 347. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
- 348. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
- 349. http://www.tldp.org/HOWTO/Remote-X-Apps.html
- 350. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 351. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 352. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 353. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 354. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 355. http://www.karlrunge.com/x11vnc/miscbuild.html
- 356. http://www.karlrunge.com/x11vnc/index.html#libssl-problems
- 357. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 358. http://www.karlrunge.com/x11vnc/x11vnc_sunos4.html
- 359. http://www.karlrunge.com/x11vnc/index.html#building
- 360. http://www.karlrunge.com/x11vnc/index.html#faq-build
- 361. http://www.linuxpackages.net/search_view.php?by=name&name=x11vnc
- 362. http://dag.wieers.com/packages/x11vnc/
- 363. http://dries.ulyssis.org/rpm/packages/x11vnc/info.html
- 364. http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=Network/x11vnc/
- 365. http://gentoo-wiki.com/HOWTO_Use_VNC_to_connect_to_existing_X_Sessions
- 366. http://gentoo-portage.com/x11-misc/x11vnc
- 367. http://www.freebsd.org/cgi/ports.cgi?query=x11vnc&stype=all
- 368. http://www.freshports.org/net/x11vnc
- 369. http://pkgsrc.se/x11/x11vnc
- 370. http://www.archlinux.org/packages/search/?q=x11vnc
- 371. http://mike.saunby.googlepages.com/
- 372. http://www.focv.com/ipkg/
- 373. http://packages.debian.org/x11vnc
- 374. http://www.sunfreeware.com/
- 375. http://www.openbsd.org/3.9_packages/i386/x11vnc-0.6.2.tgz-long.html
- 376. http://www.karlrunge.com/x11vnc/bins
- 377. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 378. http://www.tightvnc.com/download.html
- 379. http://www.realvnc.com/download-free.html
- 380. http://sourceforge.net/projects/cotvnc/
- 381. http://www.ultravnc.com/
- 382. http://www.karlrunge.com/x11vnc/ssvnc.html
- 383. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
- 384. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 385. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
- 386. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 387. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-autoport
- 388. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 389. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
- 390. http://www.karlrunge.com/x11vnc/index.html#ssl-tunnel
- 391. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 392. http://www.karlrunge.com/x11vnc/vncxfer
+ 190. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
+ 191. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 192. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 193. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 194. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 195. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 196. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 197. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 198. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 199. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 200. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 201. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 202. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
+ 203. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
+ 204. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
+ 205. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 206. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-v,
+ 207. http://www.karlrunge.com/x11vnc/prevrels.html
+ 208. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 209. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
+ 210. http://www.tightvnc.com/
+ 211. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 212. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 213. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
+ 214. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 215. http://www.karlrunge.com/x11vnc/recurse_x11vnc.jpg
+ 216. http://wwws.sun.com/sunray/index.html
+ 217. http://www.karlrunge.com/x11vnc/sunray.html
+ 218. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 219. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 220. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 221. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 222. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 223. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 224. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 225. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 226. mailto:xvml@karlrunge.com
+ 227. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 228. http://www.karlrunge.com/x11vnc/index.html#faq-xperms
+ 229. http://www.karlrunge.com/x11vnc/index.html#faq-build
+ 230. http://www.karlrunge.com/x11vnc/index.html#faq-missing-xtest
+ 231. http://www.karlrunge.com/x11vnc/index.html#faq-solaris251build
+ 232. http://www.karlrunge.com/x11vnc/index.html#faq-binaries
+ 233. http://www.karlrunge.com/x11vnc/index.html#faq-viewer-download
+ 234. http://www.karlrunge.com/x11vnc/index.html#faq-cmdline-opts
+ 235. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
+ 236. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
+ 237. http://www.karlrunge.com/x11vnc/index.html#faq-change-port
+ 238. http://www.karlrunge.com/x11vnc/index.html#faq-firewalls
+ 239. http://www.karlrunge.com/x11vnc/index.html#faq-firewall-out
+ 240. http://www.karlrunge.com/x11vnc/index.html#faq-quiet-bg
+ 241. http://www.karlrunge.com/x11vnc/index.html#faq-sigpipe
+ 242. http://www.karlrunge.com/x11vnc/index.html#faq-tight139
+ 243. http://www.karlrunge.com/x11vnc/index.html#faq-krdcprob
+ 244. http://www.karlrunge.com/x11vnc/index.html#faq-build-customizations
+ 245. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
+ 246. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc-8bpp
+ 247. http://www.karlrunge.com/x11vnc/index.html#faq-macosx-nofb
+ 248. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
+ 249. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 250. http://www.karlrunge.com/x11vnc/index.html#faq-directcolor
+ 251. http://www.karlrunge.com/x11vnc/index.html#faq-windowid
+ 252. http://www.karlrunge.com/x11vnc/index.html#faq-transients-id
+ 253. http://www.karlrunge.com/x11vnc/index.html#faq-24bpp
+ 254. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 255. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
+ 256. http://www.karlrunge.com/x11vnc/index.html#faq-sunrays
+ 257. http://www.karlrunge.com/x11vnc/index.html#faq-stop-bg
+ 258. http://www.karlrunge.com/x11vnc/index.html#faq-remote_control
+ 259. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 260. http://www.karlrunge.com/x11vnc/index.html#faq-passwd-noecho
+ 261. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 262. http://www.karlrunge.com/x11vnc/index.html#faq-multipasswd
+ 263. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
+ 264. http://www.karlrunge.com/x11vnc/index.html#faq-custom-passwords
+ 265. http://www.karlrunge.com/x11vnc/index.html#faq-forever-shared
+ 266. http://www.karlrunge.com/x11vnc/index.html#faq-allow-opt
+ 267. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 268. http://www.karlrunge.com/x11vnc/index.html#faq-listen-interface
+ 269. http://www.karlrunge.com/x11vnc/index.html#faq-listen-localhost
+ 270. http://www.karlrunge.com/x11vnc/index.html#faq-input-opt
+ 271. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 272. http://www.karlrunge.com/x11vnc/index.html#faq-users-opt
+ 273. http://www.karlrunge.com/x11vnc/index.html#faq-blockdpy
+ 274. http://www.karlrunge.com/x11vnc/index.html#faq-gone-lock
+ 275. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-unix
+ 276. http://www.karlrunge.com/x11vnc/index.html#faq-ssh-putty
+ 277. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 278. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 279. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 280. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
+ 281. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 282. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-ca
+ 283. http://www.karlrunge.com/x11vnc/index.html#faq-service
+ 284. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 285. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 286. http://www.karlrunge.com/x11vnc/index.html#faq-avahi
+ 287. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 288. http://www.karlrunge.com/x11vnc/index.html#faq-loop
+ 289. http://www.karlrunge.com/x11vnc/index.html#faq-java-http
+ 290. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
+ 291. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect-proxy
+ 292. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 293. http://www.karlrunge.com/x11vnc/index.html#faq-headless
+ 294. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
+ 295. http://www.karlrunge.com/x11vnc/index.html#faq-less-resource
+ 296. http://www.karlrunge.com/x11vnc/index.html#faq-more-resource
+ 297. http://www.karlrunge.com/x11vnc/index.html#faq-slow-link
+ 298. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage
+ 299. http://www.karlrunge.com/x11vnc/index.html#faq-xdamage-opengl
+ 300. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
+ 301. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 302. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
+ 303. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 304. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-shape
+ 305. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha
+ 306. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 307. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-arrow
+ 308. http://www.karlrunge.com/x11vnc/index.html#faq-cursor-positions
+ 309. http://www.karlrunge.com/x11vnc/index.html#faq-buttonmap-opt
+ 310. http://www.karlrunge.com/x11vnc/index.html#faq-altgr
+ 311. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 312. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless-sloppy
+ 313. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 314. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys
+ 315. http://www.karlrunge.com/x11vnc/index.html#faq-repeated-keys-still
+ 316. http://www.karlrunge.com/x11vnc/index.html#faq-mod-stuck-down
+ 317. http://www.karlrunge.com/x11vnc/index.html#faq-remap-opt
+ 318. http://www.karlrunge.com/x11vnc/index.html#faq-sun-alt-meta
+ 319. http://www.karlrunge.com/x11vnc/index.html#faq-hpux-multi-key
+ 320. http://www.karlrunge.com/x11vnc/index.html#faq-remap-button-click
+ 321. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
+ 322. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
+ 323. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
+ 324. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
+ 325. http://www.karlrunge.com/x11vnc/index.html#faq-multi-screen
+ 326. http://www.karlrunge.com/x11vnc/index.html#faq-clip-screen
+ 327. http://www.karlrunge.com/x11vnc/index.html#faq-xrandr
+ 328. http://www.karlrunge.com/x11vnc/index.html#faq-rotate
+ 329. http://www.karlrunge.com/x11vnc/index.html#faq-black-screen
+ 330. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 331. http://www.karlrunge.com/x11vnc/index.html#faq-hidden-taskbars
+ 332. http://www.karlrunge.com/x11vnc/index.html#faq-kde-screensaver
+ 333. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
+ 334. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 335. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 336. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 337. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 338. http://www.karlrunge.com/x11vnc/index.html#faq-no-x11
+ 339. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 340. http://www.karlrunge.com/x11vnc/index.html#faq-reflect
+ 341. http://www.karlrunge.com/x11vnc/index.html#faq-os-install
+ 342. http://www.karlrunge.com/x11vnc/index.html#faq-clipboard
+ 343. http://www.karlrunge.com/x11vnc/index.html#faq-record-swf
+ 344. http://www.karlrunge.com/x11vnc/index.html#faq-filexfer
+ 345. http://www.karlrunge.com/x11vnc/index.html#faq-ultravnc
+ 346. http://www.karlrunge.com/x11vnc/index.html#faq-singleclick
+ 347. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
+ 348. http://www.karlrunge.com/x11vnc/index.html#faq-cups
+ 349. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 350. http://www.karlrunge.com/x11vnc/index.html#faq-beeps
+ 351. http://www.karlrunge.com/x11vnc/index.html#faq-ipv6
+ 352. http://www.karlrunge.com/x11vnc/index.html#faq-thanks
+ 353. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
+ 354. http://www.tldp.org/HOWTO/Remote-X-Apps.html
+ 355. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 356. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 357. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 358. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 359. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 360. http://www.karlrunge.com/x11vnc/miscbuild.html
+ 361. http://www.karlrunge.com/x11vnc/index.html#libssl-problems
+ 362. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 363. http://www.karlrunge.com/x11vnc/x11vnc_sunos4.html
+ 364. http://www.karlrunge.com/x11vnc/index.html#building
+ 365. http://www.karlrunge.com/x11vnc/index.html#faq-build
+ 366. http://www.linuxpackages.net/search_view.php?by=name&name=x11vnc
+ 367. http://dag.wieers.com/packages/x11vnc/
+ 368. http://dries.ulyssis.org/rpm/packages/x11vnc/info.html
+ 369. http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=Network/x11vnc/
+ 370. http://gentoo-wiki.com/HOWTO_Use_VNC_to_connect_to_existing_X_Sessions
+ 371. http://gentoo-portage.com/x11-misc/x11vnc
+ 372. http://www.freebsd.org/cgi/ports.cgi?query=x11vnc&stype=all
+ 373. http://www.freshports.org/net/x11vnc
+ 374. http://pkgsrc.se/x11/x11vnc
+ 375. http://www.archlinux.org/packages/search/?q=x11vnc
+ 376. http://mike.saunby.googlepages.com/
+ 377. http://www.focv.com/ipkg/
+ 378. http://packages.debian.org/x11vnc
+ 379. http://www.sunfreeware.com/
+ 380. http://www.openbsd.org/3.9_packages/i386/x11vnc-0.6.2.tgz-long.html
+ 381. http://www.karlrunge.com/x11vnc/bins
+ 382. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 383. http://www.tightvnc.com/download.html
+ 384. http://www.realvnc.com/download-free.html
+ 385. http://sourceforge.net/projects/cotvnc/
+ 386. http://www.ultravnc.com/
+ 387. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 388. http://www.karlrunge.com/x11vnc/x11vnc_opts.html
+ 389. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 390. http://www.karlrunge.com/x11vnc/index.html#faq-gui-tray
+ 391. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 392. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-autoport
393. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 394. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect-proxy
- 395. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 396. http://www.karlrunge.com/x11vnc/index.html#ssl-tunnel
- 397. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssh
- 398. http://www.karlrunge.com/x11vnc/ssvnc.html
- 399. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
- 400. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 401. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-o
- 402. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=389750
- 403. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399408
- 404. http://bugs.kde.org/show_bug.cgi?id=136924
- 405. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
- 406. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofb
- 407. http://fredrik.hubbe.net/x2vnc.html
- 408. http://www.hubbe.net/~hubbe/win2vnc.html
- 409. http://www.deboer.gmxhome.de/
- 410. http://sourceforge.net/projects/win2vnc/
- 411. http://fredrik.hubbe.net/x2vnc.html
- 412. http://freshmeat.net/projects/x2x/
- 413. http://ftp.digital.com/pub/Digital/SRC/x2x/
- 414. http://zapek.com/software/zvnc/
- 415. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-visual
- 416. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 417. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
- 418. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 419. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-notruecolor
- 420. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
- 421. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 422. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 423. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 424. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 425. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
- 426. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 394. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect
+ 395. http://www.karlrunge.com/x11vnc/index.html#ssl-tunnel
+ 396. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 397. http://www.karlrunge.com/x11vnc/vncxfer
+ 398. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 399. http://www.karlrunge.com/x11vnc/index.html#faq-reverse-connect-proxy
+ 400. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 401. http://www.karlrunge.com/x11vnc/index.html#ssl-tunnel
+ 402. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssh
+ 403. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 404. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
+ 405. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 406. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-o
+ 407. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=389750
+ 408. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399408
+ 409. http://bugs.kde.org/show_bug.cgi?id=136924
+ 410. http://www.karlrunge.com/x11vnc/index.html#solarisbuilding
+ 411. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofb
+ 412. http://fredrik.hubbe.net/x2vnc.html
+ 413. http://www.hubbe.net/~hubbe/win2vnc.html
+ 414. http://www.deboer.gmxhome.de/
+ 415. http://sourceforge.net/projects/win2vnc/
+ 416. http://fredrik.hubbe.net/x2vnc.html
+ 417. http://freshmeat.net/projects/x2x/
+ 418. http://ftp.digital.com/pub/Digital/SRC/x2x/
+ 419. http://zapek.com/software/zvnc/
+ 420. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-visual
+ 421. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 422. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
+ 423. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 424. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-notruecolor
+ 425. http://www.karlrunge.com/x11vnc/index.html#faq-8bpp
+ 426. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
427. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 428. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 428. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
429. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
- 430. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 431. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
- 432. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 433. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sid
- 434. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
- 435. http://www.karlrunge.com/x11vnc/ssvnc.html
- 436. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
- 437. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 438. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flipbyteorder
- 439. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 440. http://www.karlrunge.com/x11vnc/index.html#xauth_pain
- 441. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 442. http://wwws.sun.com/sunray/index.html
- 443. http://www.karlrunge.com/x11vnc/sunray.html
- 444. http://wiki.sun-rays.org/index.php/Remote_Control_Toolkit
- 445. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 446. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
- 447. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 448. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
- 449. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
- 450. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_keys
- 451. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
- 452. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 453. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
- 454. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
- 455. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 456. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-storepasswd
- 457. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 458. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 459. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
- 460. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewpasswd
- 461. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwd
- 462. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 463. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 464. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 465. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 466. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
- 467. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 468. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 469. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 470. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 471. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 472. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 473. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel
- 474. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 475. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 476. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 477. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 478. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 479. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
- 480. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 481. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 430. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flashcmap
+ 431. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 432. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 433. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 434. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-8to24
+ 435. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 436. http://www.karlrunge.com/x11vnc/index.html#faq-overlays
+ 437. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 438. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sid
+ 439. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
+ 440. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 441. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display
+ 442. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 443. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-flipbyteorder
+ 444. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 445. http://www.karlrunge.com/x11vnc/index.html#xauth_pain
+ 446. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 447. http://wwws.sun.com/sunray/index.html
+ 448. http://www.karlrunge.com/x11vnc/sunray.html
+ 449. http://wiki.sun-rays.org/index.php/Remote_Control_Toolkit
+ 450. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 451. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
+ 452. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 453. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-bg
+ 454. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
+ 455. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_keys
+ 456. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
+ 457. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 458. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-query
+ 459. http://www.karlrunge.com/x11vnc/index.html#faq-config-file
+ 460. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 461. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-storepasswd
+ 462. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 463. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
+ 464. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-usepw
+ 465. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewpasswd
+ 466. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwd
+ 467. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 468. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 469. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 470. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 471. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_nis
+ 472. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 473. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 474. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 475. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 476. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 477. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 478. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel
+ 479. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 480. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 481. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
482. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
483. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 484. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
- 485. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
- 486. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-shared
- 487. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 488. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 489. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
- 490. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
- 491. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 492. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 493. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
- 494. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 495. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listen
+ 484. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw_cmd
+ 485. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 486. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 487. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 488. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 489. http://www.karlrunge.com/x11vnc/index.html#faq-accept-opt
+ 490. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forever
+ 491. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-shared
+ 492. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 493. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 494. http://www.karlrunge.com/x11vnc/index.html#faq-passwd
+ 495. http://www.karlrunge.com/x11vnc/index.html#faq-passwdfile
496. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
497. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 498. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
- 499. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 500. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
- 501. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
- 502. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewonly
- 503. ftp://ftp.x.org/
- 504. http://www.karlrunge.com/x11vnc/dtVncPopup
- 505. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 506. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
- 507. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 508. http://www.karlrunge.com/x11vnc/blockdpy.c
- 509. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 498. http://www.karlrunge.com/x11vnc/index.html#faq-tcp_wrappers
+ 499. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 500. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-listen
+ 501. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 502. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 503. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-allow
+ 504. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 505. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
+ 506. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 507. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-viewonly
+ 508. ftp://ftp.x.org/
+ 509. http://www.karlrunge.com/x11vnc/dtVncPopup
510. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 511. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
- 512. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
- 513. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabkbd
- 514. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
- 515. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
- 516. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
- 517. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
- 518. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 519. http://www.karlrunge.com/x11vnc/ssvnc.html
- 520. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 521. http://www.karlrunge.com/x11vnc/ssvnc.html
- 522. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 523. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
- 524. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
- 525. http://www.karlrunge.com/x11vnc/index.html#gateway_double_ssh
- 526. http://www.karlrunge.com/x11vnc/index.html#tunnelling
- 527. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 528. http://www.stunnel.org/
- 529. http://stunnel.mirt.net/
- 530. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 531. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 532. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
- 533. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 534. http://www.stunnel.org/
- 535. http://www.karlrunge.com/x11vnc/ssl.html
- 536. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 537. http://www.karlrunge.com/x11vnc/ssvnc.html
- 538. http://www.karlrunge.com/x11vnc/ssl.html
- 539. http://www.securityfocus.com/infocus/1677
+ 511. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
+ 512. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 513. http://www.karlrunge.com/x11vnc/blockdpy.c
+ 514. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-accept
+ 515. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 516. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-forcedpms
+ 517. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clientdpms
+ 518. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabkbd
+ 519. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
+ 520. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-grabptr
+ 521. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gone
+ 522. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
+ 523. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 524. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 525. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 526. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 527. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 528. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbauth
+ 529. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-passwdfile
+ 530. http://www.karlrunge.com/x11vnc/index.html#gateway_double_ssh
+ 531. http://www.karlrunge.com/x11vnc/index.html#tunnelling
+ 532. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 533. http://www.stunnel.org/
+ 534. http://stunnel.mirt.net/
+ 535. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 536. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 537. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sslverify
+ 538. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 539. http://www.stunnel.org/
540. http://www.karlrunge.com/x11vnc/ssl.html
- 541. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
- 542. http://sc.uvnc.com/javaviewer/index.html
- 543. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 544. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 545. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 546. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 547. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 548. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 549. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 550. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 551. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 552. http://www.karlrunge.com/x11vnc/ssvnc.html
- 553. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 554. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 555. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 556. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 557. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 558. http://www.openssl.org/
- 559. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
- 560. http://www.stunnel.org/
+ 541. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 542. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 543. http://www.karlrunge.com/x11vnc/ssl.html
+ 544. http://www.securityfocus.com/infocus/1677
+ 545. http://www.karlrunge.com/x11vnc/ssl.html
+ 546. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
+ 547. http://sc.uvnc.com/javaviewer/index.html
+ 548. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 549. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 550. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 551. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 552. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 553. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 554. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 555. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 556. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 557. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 558. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 559. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 560. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
561. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 562. http://www.karlrunge.com/x11vnc/index.html#ssl-vnc-viewers
- 563. http://www.karlrunge.com/x11vnc/ssl.html
- 564. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 565. http://www.karlrunge.com/x11vnc/ssl.html
- 566. http://www.karlrunge.com/x11vnc/index.html#viewer-side-stunnel
- 567. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 568. http://www.karlrunge.com/x11vnc/ssvnc.html
- 569. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 570. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 571. http://sc.uvnc.com/javaviewer/index.html
- 572. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
- 573. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 574. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 575. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
- 576. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
- 577. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 578. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpsredir
- 579. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
- 580. http://www.karlrunge.com/x11vnc/ssl-output.html
- 581. http://www.karlrunge.com/x11vnc/ssvnc.html
- 582. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 583. http://www.karlrunge.com/x11vnc/ss_vncviewer
- 584. http://www.karlrunge.com/x11vnc/ssl-portal.html
- 585. http://www.karlrunge.com/x11vnc/ssl.html
+ 562. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 563. http://www.openssl.org/
+ 564. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-stunnel
+ 565. http://www.stunnel.org/
+ 566. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 567. http://www.karlrunge.com/x11vnc/index.html#ssl-vnc-viewers
+ 568. http://www.karlrunge.com/x11vnc/ssl.html
+ 569. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 570. http://www.karlrunge.com/x11vnc/ssl.html
+ 571. http://www.karlrunge.com/x11vnc/index.html#viewer-side-stunnel
+ 572. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 573. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 574. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 575. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 576. http://sc.uvnc.com/javaviewer/index.html
+ 577. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 578. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 579. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 580. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
+ 581. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-portal
+ 582. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 583. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpsredir
+ 584. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-https
+ 585. http://www.karlrunge.com/x11vnc/ssl-output.html
586. http://www.karlrunge.com/x11vnc/ssvnc.html
- 587. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpsredir
- 588. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
- 589. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 590. http://www.karlrunge.com/x11vnc/ssvnc.html
- 591. http://www.karlrunge.com/x11vnc/ssl-portal.html
- 592. http://www.karlrunge.com/x11vnc/ssl.html
- 593. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
- 594. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 595. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 596. http://www.karlrunge.com/x11vnc/index.html#x11vnc_loop
- 597. http://club.mandriva.com/xwiki/bin/view/KB/XwinXset
- 598. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 599. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 600. http://www.karlrunge.com/x11vnc/index.html#dtlogin_solaris
- 601. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
- 602. http://www.jirka.org/gdm-documentation/x241.html
- 603. http://www.karlrunge.com/x11vnc/x11vnc_loop
- 604. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 605. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
- 606. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 607. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
- 608. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
- 609. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
- 610. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
- 611. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-avahi
- 612. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-mdns
- 613. http://www.avahi.org/
- 614. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 615. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 616. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 617. http://www.karlrunge.com/x11vnc/index.html#stunnel-inetd
- 618. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 619. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 620. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 621. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 622. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 623. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 624. http://www.karlrunge.com/x11vnc/find_display.html
- 625. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 626. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 627. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 628. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
- 629. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 630. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 631. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 632. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
- 633. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
- 634. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 635. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 636. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
- 637. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 638. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 639. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 640. http://www.karlrunge.com/x11vnc/faq-linuxvc
- 641. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 642. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 643. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
- 644. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 645. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
- 646. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
- 647. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
- 648. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 649. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
- 650. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
- 651. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-vncconnect
- 652. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
- 653. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
- 654. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
- 655. http://www.karlrunge.com/x11vnc/index.html#localaccess
- 656. http://www.karlrunge.com/x11vnc/index.html#localaccess
- 657. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 658. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 659. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 660. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 661. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 662. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 663. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 664. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 665. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 666. http://www.karlrunge.com/x11vnc/Xdummy
- 667. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 668. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 587. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 588. http://www.karlrunge.com/x11vnc/ss_vncviewer
+ 589. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 590. http://www.karlrunge.com/x11vnc/ssl.html
+ 591. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 592. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpsredir
+ 593. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-viewers
+ 594. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 595. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 596. http://www.karlrunge.com/x11vnc/ssl-portal.html
+ 597. http://www.karlrunge.com/x11vnc/ssl.html
+ 598. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 599. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 600. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 601. http://www.karlrunge.com/x11vnc/index.html#x11vnc_loop
+ 602. http://club.mandriva.com/xwiki/bin/view/KB/XwinXset
+ 603. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 604. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 605. http://www.karlrunge.com/x11vnc/index.html#dtlogin_solaris
+ 606. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-N
+ 607. http://www.jirka.org/gdm-documentation/x241.html
+ 608. http://www.karlrunge.com/x11vnc/x11vnc_loop
+ 609. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 610. http://www.karlrunge.com/x11vnc/index.html#faq-xterminal-xauth
+ 611. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 612. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-inetd
+ 613. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-q
+ 614. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-auth
+ 615. http://www.karlrunge.com/x11vnc/index.html#faq-userlogin
+ 616. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-avahi
+ 617. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-mdns
+ 618. http://www.avahi.org/
+ 619. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 620. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 621. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 622. http://www.karlrunge.com/x11vnc/index.html#stunnel-inetd
+ 623. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 624. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 625. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 626. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 627. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 628. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 629. http://www.karlrunge.com/x11vnc/find_display.html
+ 630. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 631. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 632. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 633. http://www.karlrunge.com/x11vnc/index.html#faq-unix-passwords
+ 634. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 635. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 636. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 637. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-localhost
+ 638. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-unixpw
+ 639. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 640. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 641. http://www.karlrunge.com/x11vnc/index.html#ss_vncviewer
+ 642. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 643. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 644. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 645. http://www.karlrunge.com/x11vnc/faq-linuxvc
+ 646. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 647. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 648. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-loop
+ 649. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 650. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-httpdir
+ 651. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-http
+ 652. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-java-viewer-proxy
+ 653. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 654. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remote
+ 655. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect_or_exit
+ 656. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-vncconnect
+ 657. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
+ 658. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
+ 659. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-proxy
+ 660. http://www.karlrunge.com/x11vnc/index.html#localaccess
+ 661. http://www.karlrunge.com/x11vnc/index.html#localaccess
+ 662. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 663. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 664. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 665. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 666. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 667. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 668. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
669. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
- 670. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
- 671. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
- 672. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
- 673. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
- 674. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
- 675. http://www.karlrunge.com/x11vnc/shm_clear
- 676. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 677. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 678. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
- 679. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nap
- 680. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 681. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sb
- 682. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 683. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
- 684. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
- 685. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 686. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 687. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 688. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 689. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 690. http://www.tightvnc.com/
- 691. http://www.karlrunge.com/x11vnc/ssvnc.html
- 692. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 670. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 671. http://www.karlrunge.com/x11vnc/Xdummy
+ 672. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 673. http://www.karlrunge.com/x11vnc/index.html#display-manager-continuously
+ 674. http://www.karlrunge.com/x11vnc/index.html#findcreatedisplay
+ 675. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-display_WAIT
+ 676. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-find
+ 677. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-create
+ 678. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-svc
+ 679. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xdmsvc
+ 680. http://www.karlrunge.com/x11vnc/shm_clear
+ 681. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 682. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 683. http://www.karlrunge.com/x11vnc/index.html#faq-noshm
+ 684. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nap
+ 685. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 686. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sb
+ 687. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 688. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
+ 689. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
+ 690. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 691. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 692. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
693. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 694. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
- 695. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-speeds
- 696. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 697. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
- 698. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 699. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 700. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-progressive
- 701. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 702. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
- 703. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
- 704. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
- 705. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-readtimeout
- 706. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 707. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 708. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_area
- 709. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_mem
- 710. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 711. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 712. http://linpvr.org/minimyth/
- 713. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
- 714. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 715. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 716. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 717. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 718. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
- 719. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
- 720. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 721. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
- 722. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
- 723. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 724. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 725. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 726. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 727. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
- 728. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 694. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 695. http://www.tightvnc.com/
+ 696. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 697. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 698. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 699. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-solid
+ 700. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-speeds
+ 701. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 702. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fs
+ 703. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 704. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 705. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-progressive
+ 706. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 707. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
+ 708. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
+ 709. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
+ 710. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-readtimeout
+ 711. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 712. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 713. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_area
+ 714. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xd_mem
+ 715. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 716. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 717. http://linpvr.org/minimyth/
+ 718. http://www.karlrunge.com/x11vnc/index.html#faq-beryl
+ 719. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 720. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 721. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 722. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 723. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pointer_mode
+ 724. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-threads
+ 725. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 726. http://www.karlrunge.com/x11vnc/index.html#faq-scrollcopyrect
+ 727. http://www.karlrunge.com/x11vnc/index.html#faq-pointer-mode
+ 728. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
729. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
- 730. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wirecopyrect
- 731. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
- 732. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
- 733. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scr_skip
- 734. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
- 735. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
- 736. http://www.karlrunge.com/x11vnc/index.html#beta-test
- 737. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
- 738. http://www.karlrunge.com/x11vnc/ssvnc.html#ycrop
- 739. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_no_rootpixmap
- 740. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_cr
- 741. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 742. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
- 743. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
- 744. http://www.karlrunge.com/x11vnc/index.html#the-overlay-mode
- 745. http://www.karlrunge.com/x11vnc/index.html#solaris10-build
- 746. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 747. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphacut
- 748. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphafrac
- 749. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alpharemove
- 750. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
- 751. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noalphablend
- 752. http://www.karlrunge.com/x11vnc/ssvnc.html
- 753. http://www.tightvnc.com/
- 754. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
- 755. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursorpos
- 756. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
- 757. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
- 758. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
- 759. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_pointer
- 760. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
- 761. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 762. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 763. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 764. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
- 765. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 766. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
- 767. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 768. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 769. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 770. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
- 771. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
- 772. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
- 773. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 774. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
- 775. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
- 776. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 777. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
- 778. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_keycodes
- 779. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 780. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 781. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 782. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 783. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
- 784. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
- 785. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
- 786. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 787. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
- 788. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 789. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
- 790. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
- 791. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
- 792. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
+ 730. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 731. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 732. http://www.karlrunge.com/x11vnc/index.html#fb_read_slow
+ 733. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 734. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wireframe
+ 735. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wirecopyrect
+ 736. http://www.karlrunge.com/x11vnc/index.html#faq-wireframe
+ 737. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-fixscreen
+ 738. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scr_skip
+ 739. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
+ 740. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scrollcopyrect
+ 741. http://www.karlrunge.com/x11vnc/index.html#beta-test
+ 742. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache
+ 743. http://www.karlrunge.com/x11vnc/ssvnc.html#ycrop
+ 744. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_no_rootpixmap
+ 745. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ncache_cr
+ 746. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 747. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursor
+ 748. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-overlay
+ 749. http://www.karlrunge.com/x11vnc/index.html#the-overlay-mode
+ 750. http://www.karlrunge.com/x11vnc/index.html#solaris10-build
+ 751. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 752. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphacut
+ 753. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alphafrac
+ 754. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-alpharemove
+ 755. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
+ 756. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noalphablend
+ 757. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 758. http://www.tightvnc.com/
+ 759. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursor
+ 760. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-cursorpos
+ 761. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorpos
+ 762. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nocursorshape
+ 763. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
+ 764. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_pointer
+ 765. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-buttonmap
+ 766. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 767. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 768. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 769. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
+ 770. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 771. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
+ 772. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 773. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 774. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 775. http://www.karlrunge.com/x11vnc/index.html#faq-xkbmodtweak
+ 776. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-debug_keyboard
+ 777. http://www.karlrunge.com/x11vnc/index.html#faq-greaterless
+ 778. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 779. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-sloppy_keys
+ 780. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-modtweak
+ 781. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 782. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xkb
+ 783. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_keycodes
+ 784. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 785. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 786. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 787. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 788. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-add_keysyms
+ 789. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
+ 790. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-norepeat
+ 791. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 792. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_mods
793. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 794. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 795. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
- 796. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 797. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
- 798. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
+ 794. http://www.karlrunge.com/x11vnc/index.html#faq-remap-capslock
+ 795. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
+ 796. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
+ 797. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
+ 798. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
799. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
800. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
- 801. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
- 802. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
- 803. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
- 804. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
- 805. http://people.pwf.cam.ac.uk/ssb22/setup/vnc-magnification.html
- 806. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 807. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
- 808. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 809. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale_cursor
- 810. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-blackout
- 811. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
- 812. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
- 813. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 814. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
- 815. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
- 816. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
- 817. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
- 818. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clip
- 819. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
- 820. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 821. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 822. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xrandr
- 823. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-padgeom
- 824. http://www.karlrunge.com/x11vnc/ssvnc.html
- 825. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
- 826. http://www.jwz.org/xscreensaver/man1.html
- 827. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
- 828. http://www.beryl-project.org/
- 829. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
- 830. http://www.dslinux.org/blogs/pepsiman/?p=73
- 831. http://linpvr.org/minimyth/
- 832. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 833. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 834. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
- 835. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 836. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 837. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 838. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 839. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
- 840. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 841. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 842. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 843. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 844. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 801. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 802. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 803. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-skip_lockkeys
+ 804. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-remap
+ 805. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nomodtweak
+ 806. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-capslock
+ 807. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clear_all
+ 808. http://www.karlrunge.com/x11vnc/index.html#faq-scaling
+ 809. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale
+ 810. http://people.pwf.cam.ac.uk/ssb22/setup/vnc-magnification.html
+ 811. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 812. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-gui
+ 813. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 814. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-scale_cursor
+ 815. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-blackout
+ 816. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
+ 817. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xinerama
+ 818. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 819. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xwarppointer
+ 820. http://www.karlrunge.com/x11vnc/index.html#faq-solshm
+ 821. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-onetile
+ 822. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noshm
+ 823. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-clip
+ 824. http://www.karlrunge.com/x11vnc/index.html#faq-xinerama
+ 825. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 826. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 827. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-xrandr
+ 828. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-padgeom
+ 829. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 830. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rotate
+ 831. http://www.jwz.org/xscreensaver/man1.html
+ 832. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodpms
+ 833. http://www.beryl-project.org/
+ 834. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noxdamage
+ 835. http://www.dslinux.org/blogs/pepsiman/?p=73
+ 836. http://linpvr.org/minimyth/
+ 837. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 838. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 839. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 840. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 841. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 842. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 843. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 844. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
845. http://www.karlrunge.com/x11vnc/index.html#faq-video
- 846. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 846. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
847. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
- 848. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 848. http://www.karlrunge.com/x11vnc/index.html#faq-video
849. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 850. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 851. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
- 852. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
- 853. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
- 854. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-slow_fb
- 855. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
- 856. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-freqtab
- 857. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
- 858. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 859. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
- 860. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 861. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 862. http://www.redstonesoftware.com/vnc.html
- 863. http://www.apple.com/remotedesktop/
- 864. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 865. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
- 866. http://fredrik.hubbe.net/x2vnc.html
- 867. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
- 868. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
- 869. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
- 870. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
- 871. http://sourceforge.net/projects/vnc-reflector/
- 872. http://www.tightvnc.com/projector/
- 873. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 874. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 875. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
- 876. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
- 877. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noprimary
- 878. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-seldir
- 879. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
- 880. http://www.unixuser.org/~euske/vnc2swf/
- 881. http://wolphination.com/linux/2006/06/30/how-to-record-videos-of-your-desktop/
- 882. http://www.karlrunge.com/x11vnc/ssvnc.html
- 883. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofilexfer
- 884. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
- 885. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
- 886. http://www.karlrunge.com/x11vnc/ssvnc.html
- 887. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noultraext
- 888. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noserverdpms
- 889. http://www.uvnc.com/addons/repeater.html
- 890. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
- 891. http://www.uvnc.com/addons/singleclick.html
- 892. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
- 893. http://www.karlrunge.com/x11vnc/single-click.html
- 894. http://www.karlrunge.com/x11vnc/single-click.html
- 895. http://www.karlrunge.com/x11vnc/index.html#firewalls
- 896. http://sc.uvnc.com/
- 897. http://www.karlrunge.com/x11vnc/ssvnc.html
- 898. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 850. http://www.karlrunge.com/x11vnc/index.html#faq-video
+ 851. http://www.karlrunge.com/x11vnc/index.html#faq-linuxvc
+ 852. http://www.karlrunge.com/x11vnc/index.html#faq-qt-embedded
+ 853. http://www.karlrunge.com/x11vnc/index.html#faq-vmware
+ 854. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 855. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 856. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-snapfb
+ 857. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-24to32
+ 858. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-wait
+ 859. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-slow_fb
+ 860. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-defer
+ 861. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-freqtab
+ 862. http://www.karlrunge.com/x11vnc/index.html#faq-rawfb
+ 863. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 864. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-pipeinput
+ 865. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 866. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 867. http://www.redstonesoftware.com/vnc.html
+ 868. http://www.apple.com/remotedesktop/
+ 869. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 870. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-id
+ 871. http://fredrik.hubbe.net/x2vnc.html
+ 872. http://www.karlrunge.com/x11vnc/index.html#faq-win2vnc
+ 873. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-reflect
+ 874. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rawfb
+ 875. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nodragging
+ 876. http://sourceforge.net/projects/vnc-reflector/
+ 877. http://www.tightvnc.com/projector/
+ 878. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 879. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 880. http://www.karlrunge.com/x11vnc/index.html#faq-display-manager
+ 881. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nosel
+ 882. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noprimary
+ 883. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-seldir
+ 884. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-input
+ 885. http://www.unixuser.org/~euske/vnc2swf/
+ 886. http://wolphination.com/linux/2006/06/30/how-to-record-videos-of-your-desktop/
+ 887. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 888. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nofilexfer
+ 889. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-users
+ 890. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ultrafilexfer
+ 891. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 892. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noultraext
+ 893. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-noserverdpms
+ 894. http://www.uvnc.com/addons/repeater.html
+ 895. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-connect
+ 896. http://www.uvnc.com/addons/singleclick.html
+ 897. http://www.karlrunge.com/x11vnc/index.html#faq-macosx
+ 898. http://www.karlrunge.com/x11vnc/single-click.html
899. http://www.karlrunge.com/x11vnc/single-click.html
- 900. http://www.karlrunge.com/x11vnc/ssvnc.html
- 901. http://www.karlrunge.com/x11vnc/single-click.html
- 902. http://www.karlrunge.com/x11vnc/ssl.html
- 903. http://www.karlrunge.com/x11vnc/single-click.html
- 904. http://www.karlrunge.com/x11vnc/single-click.html#libssl-problems
- 905. http://www.samba.org/
- 906. http://www.karlrunge.com/x11vnc/ssvnc.html
- 907. http://www.cups.org/
- 908. http://www.karlrunge.com/x11vnc/ssvnc.html
- 909. http://www.karlrunge.com/x11vnc/ssvnc.html
- 910. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nobell
- 911. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 912. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
- 913. http://jungla.dit.upm.es/~acosta/paginas/vncIPv6.html
+ 900. http://www.karlrunge.com/x11vnc/index.html#firewalls
+ 901. http://sc.uvnc.com/
+ 902. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 903. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-ssl
+ 904. http://www.karlrunge.com/x11vnc/single-click.html
+ 905. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 906. http://www.karlrunge.com/x11vnc/single-click.html
+ 907. http://www.karlrunge.com/x11vnc/ssl.html
+ 908. http://www.karlrunge.com/x11vnc/single-click.html
+ 909. http://www.karlrunge.com/x11vnc/single-click.html#libssl-problems
+ 910. http://www.samba.org/
+ 911. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 912. http://www.cups.org/
+ 913. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 914. http://www.karlrunge.com/x11vnc/ssvnc.html
+ 915. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-nobell
+ 916. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 917. http://www.karlrunge.com/x11vnc/index.html#faq-inetd
+ 918. http://jungla.dit.upm.es/~acosta/paginas/vncIPv6.html
=======================================================================
http://www.karlrunge.com/x11vnc/chainingssh.html:
@@ -9156,10 +9177,11 @@ http://www.karlrunge.com/x11vnc/sunray.html:
even know which server machine has your session, you could login to
all possible ones looking at the who output for your username...).
- I put some code in my ~/.dtprofile script that stores $DISPLAY in my
- ~/.sunray_current file at session startup and deletes it when the
- session ends to make it easy to get at the hostname and X11 display
- number info for my current X sessions.
+ I put some code in my ~/.dtprofile script that stores $DISPLAY
+ (including the hostname) in a ~/.sunray_current file at session
+ startup (and deletes it when the X session ends) to make it easy to
+ get at the hostname and X11 display number info for my current X
+ sessions when I ssh in and am about to start x11vnc.
SunRay Gotcha #1: Note that even though your SunRay X11 DISPLAY is
something like :137, x11vnc still tries for port 5900 as its listening
@@ -9259,6 +9281,9 @@ exit 0
Password" dialog box appears. So you cannot unlock the screen remotely
via x11vnc!
+ Update: please see Bob Doolittle's detailed description of the this
+ issue at the [10]bottom of this section.
+
Here "freeze" means "stop other X clients from inserting keyboard and
mouse input and from viewing the current contents of the screen". Or
something like that; the upshot is x11vnc can't do its normal thing.
@@ -9281,18 +9306,19 @@ export SUN_SUNRAY_UTXLOCK_PREF
framebuffer. It is not clear if this is by design (security?) or
something else.
- In any event, the problem can be avoided by commenting out the
- corresponding line in /etc/pam.conf:
+ In any event, the problem can be avoided, somewhat drastically, by
+ commenting out the corresponding line in /etc/pam.conf:
#xscreensaver auth sufficient /opt/SUNWut/lib/pam_sunray.so syncondisplay
Leave the other xscreensaver pam authentication lines unchanged. The
dtsession-SunRay line may also need to be commented out to avoid the
problem for CDE sessions. N.B. it is possible the application of a
- SSRS patch, etc, may re-enable that /etc/pam.conf line.
+ SSRS patch, etc, may re-enable that /etc/pam.conf line. It may be
+ difficult to convince a sysadmin to make this change.
- 3) A more drastic way is to kill the xscreensaver process from a shell
- prompt whenever you connect via x11vnc and the screen is in a locked
- state:
+ 3) A more forceful way is to kill the xscreensaver process from a
+ shell prompt whenever you connect via x11vnc and the screen is in a
+ locked state:
pkill -U $LOGNAME '^xscreensaver$'
And then after you are in be sure to restart it by typing something
@@ -9332,7 +9358,7 @@ elif [ "$RFB_MODE" = "gone" -a "$RFB_STATE" = "NORMAL" ]; then
fi
Then we would run x11vnc with these options: "-afteraccept xss_killer
- -gone xss_killer". The [10]-afteraccept option (introduced in version
+ -gone xss_killer". The [11]-afteraccept option (introduced in version
0.8) is used to run a command after a vncviewer has successfully
logged in (note that this is a VNC login, not a Unix login, so you may
not want to do this if you are really paranoid...)
@@ -9363,13 +9389,103 @@ pkill -U $LOGNAME '^xscreensaver$'
env DISPLAY=`echo $DISPLAY | sed -e 's/^.*:/unix:/'` xscreensaver &
- Note that all of the above workarounds side-step the pam_sunray.so PAM
- module in one way or another. You'll need to see if that is
- appropriate for your site's SunRay / smartcard usage. Also, these
- hacks may break other things and so you may want to test various
+ Important: Note that all of the above workarounds side-step the
+ pam_sunray.so PAM module in one way or another. You'll need to see if
+ that is appropriate for your site's SunRay / smartcard usage. Also,
+ these hacks may break other things and so you may want to test various
scenarios carefully. E.g. check corner cases like XDMCP/dtremote,
NSCM, etc.
+
+ Update May 2008: Here is a useful description of this issue from Bob
+ Doolittle who is a developer for Sun Ray at Sun. I don't have the time
+ to digest and distill it and then adjust the above methods to provide
+ a clearer description, so I just include below the description he sent
+ me with the hope that it will help some users:
+
+ In SRSS 4.0 and earlier, the purpose of pam_sunray.so in the "auth"
+ PAM stack of screensavers is to enable NSCM (and, although this is
+ much less commonly used, "SC", which is configured when 3rd-party
+ software is installed to allow smartcards to be used as part of the
+ authentication process) to work. It should have no effect with
+ smartcards. Currently, however, it does block the PAM stack for all
+ sessions, which causes xscreensaver, when it locks a disconnected
+ session, to not process any mouse or keyboard events as you
+ describe (unless xscreensaver does an X server grab, however, other
+ applications should still be able to draw in the session although
+ xscreensaver may be playing tricks like putting a black window on
+ top of everything). In both of the NSCM and SC models,
+ authentication occurs in a separate session before SRSS will
+ reconnect to the user session, in which case pam_sunray.so causes
+ xscreensaver to just unlock the screen without prompting the user
+ to enter their password again. To do this, pam_sunray.so has to
+ block until the session becomes reconnected, so it can query SRSS
+ at that time to determine whether the user has already
+ authenticated or not. In SRSS 4.0 and earlier releases,
+ pam_sunray.so could have been optimized to not block smartcard
+ sessions, although since the session is disconnected this typically
+ isn't important (except in the x11vnc case, as you've observed).
+
+ In SRSS 4.1, however, for increased security the out-of-session
+ authentication model has been extended to *all* session types, so
+ pam_sunray.so will be required in all cases unless users are
+ willing to authenticate twice upon hotdesking (e.g. when their card
+ is inserted). In future, we may do away with pam_sunray.so, and in
+ fact with any traditional screen locker in the user session, since
+ SRSS itself will be providing better security than a screen locker
+ running entirely within the user's X session is capable of
+ providing.
+
+ Your trick of setting DISPLAY to unix:DPY will effectively disable
+ pam_sunray.so (I'm not sure I'd call that a bug - you're going out
+ of your way to do something that wouldn't occur in the normal
+ course of events, and really provides no useful value other than to
+ tickle this behavior in pam_sunray.so). This will mean that, in
+ SRSS 4.0 and earlier releases, users will be prompted for their
+ passwords twice when reconnecting to their sessions for NSCM and SC
+ session types. In 4.1, disabling pam_sunray.so in this way will
+ cause this double-authentication to occur for *all* sessions,
+ including simple smartcard sessions. Users may be willing to pay
+ that price in order to be able to use x11vnc in disconnected
+ sessions. I like this hack, personally. It's a little less
+ convenient than some of the other approaches you describe, but it's
+ lighter-weight and more secure than most of the other approaches,
+ and provides the value of being able to use x11vnc in locked
+ sessions.
+
+ Here are some other minor notes: - I wouldn't recommend storing
+ your display in your .dtprofile, unless you're willing to live with
+ a single session at a time. Personally, I often find myself using
+ several sessions, in several FoGs, for short periods of time so
+ this would certainly break. IMO it's pretty easy to use $DISPLAY to
+ do what you want on the fly, as needed, so I don't think the price
+ of breaking multiple-session functionality would be worth the
+ convenience, to me at least. Here's some ksh/bash syntax to extract
+ the hostname and display number on the fly which you may find
+ useful:
+HOSTNAME=${DISPLAY%:*}
+FULLDPY=${DISPLAY#*:}
+DPYNUM=${FULLDPY%.*}
+
+ A final note may give you some insight into other clever hacks in
+ this area: - Check out utaction. It's a very handy little utility
+ that can be run as a daemon in the user session which will invoke a
+ specified command upon session connects and/or disconnects.
+ Personally, I start one up in my .dtprofile as follows:
+utaction -c $HOME/.srconnectrc -d $HOME/.srdisconnectrc &
+
+ This then allows me to construct a .srconnectrc script containing
+ useful commands I'd like to have run every time I insert my
+ smartcard, and a .srdisconnectrc script of commands to be run every
+ time I remove my smartcard (or, connect/disconnect to my session
+ via NSCM or SC). This can be used for things like notifying a chat
+ client of away status, as well as some of the hacks you've
+ described on your page such as freeze/unfreeze, or perhaps to
+ terminate an xscreensaver and start up a new one with the unix:DPY
+ $DISPLAY specification as you describe (although it probably makes
+ most sense to do this at login time, as opposed to every connect or
+ disconnect event).
+
References
1. http://wwws.sun.com/sunray/index.html
@@ -9381,7 +9497,8 @@ References
7. http://www.karlrunge.com/x11vnc/vnc_findports
8. http://www.karlrunge.com/x11vnc/findvncports
9. http://www.karlrunge.com/x11vnc/shm_clear
- 10. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
+ 10. http://www.karlrunge.com/x11vnc/sunray.html#doolittle
+ 11. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-afteraccept
=======================================================================
http://www.karlrunge.com/x11vnc/ssl.html:
@@ -10753,12 +10870,12 @@ Enhanced TightVNC Viewer (SSVNC: SSL/SSH VNC viewer)
The package provides a GUI for Windows, Mac OS X, and Unix that
automatically starts up an STUNNEL SSL tunnel for SSL or ssh for SSH
- connections to [5]x11vnc (or other VNC server), and then launches the
- TightVNC Viewer to use the encrypted tunnel.
+ connections to [5]x11vnc or any other VNC server, and then launches
+ the VNC Viewer to use the encrypted tunnel.
- It also enables SSL encrypted VNC connections to any other VNC Server
- running an SSL tunnel, such as STUNNEL, at their end. It can be used
- to perform SSH tunnelled connections to any VNC Server as well.
+ SSL encrypted VNC connections to any VNC Server will work if they are
+ running an SSL tunnel, such as STUNNEL, at their end. SSVNC can be
+ used to perform SSH tunnelled connections to any VNC Server.
The Enhanced TightVNC Viewer package started as a project to add some
patches to the long neglected Unix TightVNC Viewer. However, now the
@@ -10780,6 +10897,20 @@ Enhanced TightVNC Viewer (SSVNC: SSL/SSH VNC viewer)
directory named "Home" in the toplevel ssvnc directory on the drive
your VNC profiles and certs will be kept there as well).
+ _________________________________________________________________
+
+ Announcements:
+
+ Important: If you created any SSL certificates with SSVNC (or anything
+ else) on a Debian system from Sept. 2006 through May 2008, then those
+ keys are likely extremely weak and can be easily cracked. The
+ certificate files should be deleted and recreated on a non-Debian
+ system or an updated one. See
+ [9]http://www.debian.org/security/2008/dsa-1571 for details. The same
+ applies to SSH keys.
+
+ _________________________________________________________________
+
Wrappers and a tcl/tk GUI were written and patches were created for
the TightVNC 1.3.9 vnc_unixsrc tree to add these features:
* SSL support for connections using the bundled stunnel program.
@@ -10788,7 +10919,7 @@ Enhanced TightVNC Viewer (SSVNC: SSL/SSH VNC viewer)
* Ability to Save and Load VNC profiles for different hosts.
* Create or Import SSL Certificates and Private Keys.
* Reverse (viewer listening) VNC connections via SSL and SSH.
- * Support for Web [9]Proxies, SOCKS Proxies, and the [10]UltraVNC
+ * Support for Web [10]Proxies, SOCKS Proxies, and the [11]UltraVNC
repeater proxy (e.g. repeater://host:port+ID:1234). Multiple
proxies may be chained together (3 max).
* Support for SSH Gateway connections and non-standard SSH ports.
@@ -10804,20 +10935,20 @@ Enhanced TightVNC Viewer (SSVNC: SSL/SSH VNC viewer)
* Support for native MacOS X usage with bundled Chicken of the VNC
viewer (the Unix X11 viewer is also provided for MacOS X, and is
better IMHO).
- * [11]Dynamic VNC Server Port determination and redirection (using
+ * [12]Dynamic VNC Server Port determination and redirection (using
ssh's builtin SOCKS proxy, ssh -D) for servers like x11vnc that
print out PORT= at startup.
* Unix Username and Password entry for use with "x11vnc -unixpw"
type login dialogs.
- * Simplified mode launched by command "[12]sshvnc" that is SSH Only.
- * Simplified mode launched by command "[13]tsvnc" that provides a
+ * Simplified mode launched by command "[13]sshvnc" that is SSH Only.
+ * Simplified mode launched by command "[14]tsvnc" that provides a
VNC "Terminal Services" mode (uses x11vnc on the remote side).
- [14]Unix TightVNC Viewer improvements (these only apply to the Unix
+ [15]Unix TightVNC Viewer improvements (these only apply to the Unix
VNC viewer):
* rfbNewFBSize VNC support (dynamic screen resizing)
* ZRLE VNC encoding support (RealVNC's encoding)
- * Cursor [15]alphablending with x11vnc at 32bpp (-alpha option)
+ * Cursor [16]alphablending with x11vnc at 32bpp (-alpha option)
* Option "-unixpw ..." for use with "x11vnc -unixpw" type login
dialogs.
* Support for UltraVNC extensions: 1/n Server side scaling, Text
@@ -10826,20 +10957,20 @@ Enhanced TightVNC Viewer (SSVNC: SSL/SSH VNC viewer)
* UltraVNC File Transfer via an auxiliary Java helper program (java
must be in $PATH). Note that x11vnc supports UltraVNC file
transfer.
- * Connection support for the [16]UltraVNC repeater proxy (-repeater
+ * Connection support for the [17]UltraVNC repeater proxy (-repeater
option).
* Extremely low color modes: 64 and 8 colors in 8bpp
(-use64/-bgr222, -use8/-bgr111)
* Medium color mode: 16bpp mode on a 32bpp Viewer display
(-16bpp/-bgr565)
- * For use with x11vnc's [17]client-side caching -ncache method use
+ * For use with x11vnc's [18]client-side caching -ncache method use
the cropping option -ycrop n. This will "hide" the large pixel
buffer cache below the actual display. Set to the actual height or
use -1 for autodetection (also, tall screens, H > 2*W, are
autodetected by default).
* Scrollbar width setting: -sbwidth n, the default is very thin, 2
pixels, for less distracting -ycrop usage.
- * Improvements to the [18]Popup menu, all of these can now be
+ * Improvements to the [19]Popup menu, all of these can now be
changed dynamically via the menu: ViewOnly, Toggle Bell,
CursorShape updates, X11 Cursor, Cursor Alphablending, Toggle
Tight/ZRLE, Toggle JPEG, FullColor/16bpp/8bpp (256/64/8 colors),
@@ -10981,14 +11112,14 @@ Windows:
(the Mac OS X and Unix launchers are simply links to the bin
directory). See the README for more information.
- The [19]SSH-Only mode launcher program has name sshvnc. The
- [20]Terminal Services mode launcher program (assumes x11vnc 0.8.4 or
+ The [20]SSH-Only mode launcher program has name sshvnc. The
+ [21]Terminal Services mode launcher program (assumes x11vnc 0.8.4 or
later and Xvfb installed on the server machine) has name tsvnc.
The Viewer SSL support is done via a wrapper script (bin/ssvnc_cmd
that calls bin/util/ss_vncviewer) that starts up the STUNNEL tunnel
first and then starts the TightVNC viewer pointed at that tunnel. The
- bin/ssvnc program is a GUI front-end to that script. See [21]this FAQ
+ bin/ssvnc program is a GUI front-end to that script. See [22]this FAQ
for more details on SSL tunnelling. In SSH connection mode, the
wrappers start up SSH appropriately.
@@ -11035,7 +11166,7 @@ start \ssvnc\Windows\ssvnc.exe
switch from the regular SSVNC mode, click "Terminal Services" under
Options.
- This mode requires [22]x11vnc (0.9.3 or later) installed on the remote
+ This mode requires [23]x11vnc (0.9.3 or later) installed on the remote
machine to find, create, and manage the user sessions. SSH is used to
create the encrypted and authenticated tunnel. The Xvfb (virtual
framebuffer X server) program must also be installed on the remote
@@ -11053,7 +11184,7 @@ start \ssvnc\Windows\ssvnc.exe
press "Connect").
Normally the Terminal Services sessions created are virtual (RAM-only)
- ones (e.g. Xvfb, [23]Xdummy, or Xvnc), however a nice feature is if
+ ones (e.g. Xvfb, [24]Xdummy, or Xvnc), however a nice feature is if
you have a regular X session (i.e displaying on the physical hardware)
on the remote machine that you are ALREADY logged into, then the
x11vnc run from tsvnc will find it for you as well.
@@ -11074,7 +11205,7 @@ start \ssvnc\Windows\ssvnc.exe
Proxies: Web proxies, SOCKS proxies, and the UltraVNC repeater proxy
are supported to allow the SSVNC connection to go through the proxy to
the otherwise unreachable VNC Server. SSH gateway machines can be used
- in the same way. Read [24]more about SSVNC proxy support here.
+ in the same way. Read [25]more about SSVNC proxy support here.
Dynamic VNC Server Port determination: If you are running SSVNC on
@@ -11101,7 +11232,7 @@ or: PORT= vncserver :4; sleep 15
sessions if called repeatedly.
If you use PORT= on Windows, a large random port is selected instead
- and the [25]-rfbport option is passed to x11vnc (it does not work with
+ and the [26]-rfbport option is passed to x11vnc (it does not work with
vncserver).
@@ -11112,7 +11243,7 @@ or: PORT= vncserver :4; sleep 15
resize when the server does (e.g. "x11vnc -R scale=3/4" remote control
command).
- The cursor alphablending is [26]described here.
+ The cursor alphablending is [27]described here.
The RealVNC ZRLE encoding is supported, in addition to some low colors
modes (16bpp and 8bpp at 256, 64, and even 8 colors, for use on very
@@ -11122,7 +11253,7 @@ or: PORT= vncserver :4; sleep 15
The Popup menu (F8) is enhanced with the ability to change many things
on the fly. F9 is added as a shortcut to toggle FullScreen mode.
- Client Side Caching: The x11vnc [27]client-side caching is handled
+ Client Side Caching: The x11vnc [28]client-side caching is handled
nicely by this viewer. The very large pixel cache below the actual
display in this caching method is distracting. Our Unix VNC viewer
will automatically try to autodetect the actual display height if the
@@ -11135,7 +11266,7 @@ or: PORT= vncserver :4; sleep 15
scrollbars are set to be very thin (2 pixels) to be less distracting.
Use the -sbwidth n to make them wider.
- Probably nobody is interested in the [28]grabserver patch for old
+ Probably nobody is interested in the [29]grabserver patch for old
window managers when the viewer is in fullscreen mode... This and some
other unfixed bugs have been fixed in our patches (fullscreen toggle
works with KDE, -x11cursor has been fixed, and the dot cursor has been
@@ -11337,7 +11468,7 @@ Enhanced TightVNC viewer (SSVNC) options:
_________________________________________________________________
Hopefully this tool will make it convenient for people to help test
- and use the [29]built-in SSL support in x11vnc. Extra testing of this
+ and use the [30]built-in SSL support in x11vnc. Extra testing of this
feature is much appreciated!! Thanks.
Please Help Test the newly added features:
@@ -11350,28 +11481,28 @@ Enhanced TightVNC viewer (SSVNC) options:
Server machine, and to mount your local Windows or Samba shares on the
remote VNC Server machine. Basically these new features try to
automate the tricks described here:
- [30]http://www.karlrunge.com/x11vnc/#faq-smb-shares
- [31]http://www.karlrunge.com/x11vnc/#faq-cups
- [32]http://www.karlrunge.com/x11vnc/#faq-sound
+ [31]http://www.karlrunge.com/x11vnc/#faq-smb-shares
+ [32]http://www.karlrunge.com/x11vnc/#faq-cups
+ [33]http://www.karlrunge.com/x11vnc/#faq-sound
_________________________________________________________________
Downloading: This project can be downloaded here, choose the archive
file bundle that best suits you (e.g. no source code, windows only,
unix only, zip, tar etc):
- [33]ssvnc_windows_only-1.0.20.zip Windows Binaries Only. No source incl
+ [34]ssvnc_windows_only-1.0.20.zip Windows Binaries Only. No source incl
uded (~6MB)
- [34]ssvnc_no_windows-1.0.20.tar.gz Unix and Mac OS X Only. No Windows bin
+ [35]ssvnc_no_windows-1.0.20.tar.gz Unix and Mac OS X Only. No Windows bin
aries. Source included. (~6MB)
- [35]ssvnc_unix_only-1.0.20.tar.gz Unix Binaries Only. No source incl
+ [36]ssvnc_unix_only-1.0.20.tar.gz Unix Binaries Only. No source incl
uded. (~3.5MB)
- [36]ssvnc_unix_minimal-1.0.20.tar.gz Unix Minimal. You must supply your ow
+ [37]ssvnc_unix_minimal-1.0.20.tar.gz Unix Minimal. You must supply your ow
n vncviewer and stunnel. (~0.1MB)
- [37]ssvnc-1.0.20.tar.gz All Unix, Mac OS X, and Windows binari
+ [38]ssvnc-1.0.20.tar.gz All Unix, Mac OS X, and Windows binari
es and source TGZ. (~11MB)
- [38]ssvnc-1.0.20.zip All Unix, Mac OS X, and Windows binari
+ [39]ssvnc-1.0.20.zip All Unix, Mac OS X, and Windows binari
es and source ZIP. (~11MB)
- [39]ssvnc_all-1.0.20.zip All Unix, Mac OS X, and Windows binari
+ [40]ssvnc_all-1.0.20.zip All Unix, Mac OS X, and Windows binari
es and source AND full archives in the zip dir. (~15MB)
You can try for an older one by replacing, e.g. ".20" by ".15", etc.
@@ -11384,7 +11515,7 @@ es and source AND full archives in the zip dir. (~15MB)
VNC viewer! Let us know how it went.
A self-extracting and running file for the "ssvnc_unix_minimal"
- package is here: [40]ssvnc. Save it as filename "ssvnc", type "chmod
+ package is here: [41]ssvnc. Save it as filename "ssvnc", type "chmod
755 ./ssvnc", and then launch the GUI via typing "./ssvnc". Note that
this "ssvnc_unix_minimal" mode requires you install the "stunnel" and
"vncviewer" programs externally (for example, install your distros'
@@ -11425,13 +11556,13 @@ es and source AND full archives in the zip dir. (~15MB)
redistribute the above because of cryptographic software they contain
or for other reasons. Please check out your situation and information
at the following and related sites:
- [41]http://www.stunnel.org
- [42]http://stunnel.mirt.net
- [43]http://www.openssl.org
- [44]http://www.chiark.greenend.org.uk/~sgtatham/putty/
- [45]http://www.tightvnc.com
- [46]http://www.realvnc.com
- [47]http://sourceforge.net/projects/cotvnc/
+ [42]http://www.stunnel.org
+ [43]http://stunnel.mirt.net
+ [44]http://www.openssl.org
+ [45]http://www.chiark.greenend.org.uk/~sgtatham/putty/
+ [46]http://www.tightvnc.com
+ [47]http://www.realvnc.com
+ [48]http://sourceforge.net/projects/cotvnc/
_________________________________________________________________
Here is the toplevel README from the bundle:
@@ -11988,45 +12119,46 @@ References
6. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#sshvnc
7. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#tsvnc
8. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#memory-stick
- 9. http://www.karlrunge.com/x11vnc/ssvnc-proxies.html
- 10. http://www.uvnc.com/addons/repeater.html
- 11. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#dynamic-port
- 12. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#sshvnc
- 13. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#tsvnc
- 14. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#unix-patches
- 15. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 16. http://www.uvnc.com/addons/repeater.html
- 17. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 18. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#popup
- 19. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#sshvnc
- 20. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#tsvnc
- 21. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
- 22. http://www.karlrunge.com/x11vnc/index.html
- 23. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
- 24. http://www.karlrunge.com/x11vnc/ssvnc-proxies.html
- 25. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
- 26. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
- 27. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
- 28. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
- 29. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
- 30. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
- 31. http://www.karlrunge.com/x11vnc/index.html#faq-cups
- 32. http://www.karlrunge.com/x11vnc/index.html#faq-sound
- 33. http://www.karlrunge.com/x11vnc/etv/ssvnc_windows_only-1.0.20.zip
- 34. http://www.karlrunge.com/x11vnc/etv/ssvnc_no_windows-1.0.20.tar.gz
- 35. http://www.karlrunge.com/x11vnc/etv/ssvnc_unix_only-1.0.20.tar.gz
- 36. http://www.karlrunge.com/x11vnc/etv/ssvnc_unix_minimal-1.0.20.tar.gz
- 37. http://www.karlrunge.com/x11vnc/etv/ssvnc-1.0.20.tar.gz
- 38. http://www.karlrunge.com/x11vnc/etv/ssvnc-1.0.20.zip
- 39. http://www.karlrunge.com/x11vnc/etv/ssvnc_all-1.0.20.zip
- 40. http://www.karlrunge.com/x11vnc/etv/ssvnc
- 41. http://www.stunnel.org/
- 42. http://stunnel.mirt.net/
- 43. http://www.openssl.org/
- 44. http://www.chiark.greenend.org.uk/~sgtatham/putty/
- 45. http://www.tightvnc.com/
- 46. http://www.realvnc.com/
- 47. http://sourceforge.net/projects/cotvnc/
+ 9. http://www.debian.org/security/2008/dsa-1571
+ 10. http://www.karlrunge.com/x11vnc/ssvnc-proxies.html
+ 11. http://www.uvnc.com/addons/repeater.html
+ 12. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#dynamic-port
+ 13. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#sshvnc
+ 14. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#tsvnc
+ 15. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#unix-patches
+ 16. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 17. http://www.uvnc.com/addons/repeater.html
+ 18. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 19. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#popup
+ 20. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#sshvnc
+ 21. http://www.karlrunge.com/x11vnc/enhanced_tightvnc_viewer.html#tsvnc
+ 22. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-ext
+ 23. http://www.karlrunge.com/x11vnc/index.html
+ 24. http://www.karlrunge.com/x11vnc/index.html#faq-xvfb
+ 25. http://www.karlrunge.com/x11vnc/ssvnc-proxies.html
+ 26. http://www.karlrunge.com/x11vnc/x11vnc_opts.html#opt-rfbport
+ 27. http://www.karlrunge.com/x11vnc/index.html#faq-xfixes-alpha-hacks
+ 28. http://www.karlrunge.com/x11vnc/index.html#faq-client-caching
+ 29. http://www.karlrunge.com/x11vnc/index.html#faq-scrollbars
+ 30. http://www.karlrunge.com/x11vnc/index.html#faq-ssl-tunnel-int
+ 31. http://www.karlrunge.com/x11vnc/index.html#faq-smb-shares
+ 32. http://www.karlrunge.com/x11vnc/index.html#faq-cups
+ 33. http://www.karlrunge.com/x11vnc/index.html#faq-sound
+ 34. http://www.karlrunge.com/x11vnc/etv/ssvnc_windows_only-1.0.20.zip
+ 35. http://www.karlrunge.com/x11vnc/etv/ssvnc_no_windows-1.0.20.tar.gz
+ 36. http://www.karlrunge.com/x11vnc/etv/ssvnc_unix_only-1.0.20.tar.gz
+ 37. http://www.karlrunge.com/x11vnc/etv/ssvnc_unix_minimal-1.0.20.tar.gz
+ 38. http://www.karlrunge.com/x11vnc/etv/ssvnc-1.0.20.tar.gz
+ 39. http://www.karlrunge.com/x11vnc/etv/ssvnc-1.0.20.zip
+ 40. http://www.karlrunge.com/x11vnc/etv/ssvnc_all-1.0.20.zip
+ 41. http://www.karlrunge.com/x11vnc/etv/ssvnc
+ 42. http://www.stunnel.org/
+ 43. http://stunnel.mirt.net/
+ 44. http://www.openssl.org/
+ 45. http://www.chiark.greenend.org.uk/~sgtatham/putty/
+ 46. http://www.tightvnc.com/
+ 47. http://www.realvnc.com/
+ 48. http://sourceforge.net/projects/cotvnc/
=======================================================================
http://www.karlrunge.com/x11vnc/x11vnc_opts.html:
@@ -12039,92 +12171,92 @@ 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.9.4 lastmod: 2008-05-10
+x11vnc: allow VNC connections to real X11 displays. 0.9.4 lastmod: 2008-05-31
x11vnc options:
-display disp -auth file -N
-autoport n -reflect host:N -id windowid
-sid windowid -clip WxH+X+Y -flashcmap
- -shiftcmap n -notruecolor -visual n
- -overlay -overlay_nocursor -8to24 [opts]
- -24to32 -scale fraction -scale_cursor frac
- -viewonly -shared -once
- -forever -loop -timeout n
- -sleepin n -inetd -tightfilexfer
- -ultrafilexfer -http -http_ssl
- -avahi -mdns -connect string
- -connect_or_exit str -proxy string -vncconnect
- -novncconnect -allow host1[,host2..] -localhost
- -nolookup -input string -grabkbd
- -grabptr -grabalways -viewpasswd string
- -passwdfile filename -unixpw [list] -unixpw_nis [list]
- -unixpw_cmd cmd -find -finddpy
- -listdpy -create -xdummy
- -xvnc -xvnc_redirect -svc
- -svc_xdummy -svc_xvnc -xdmsvc
- -sshxdmsvc -redirect port -display WAIT:...
- -nossl -ssl [pem] -ssltimeout n
- -sslnofail -ssldir [dir] -sslverify [path]
- -sslGenCA [dir] -sslGenCert type name -sslEncKey [pem]
- -sslCertInfo [pem] -sslDelCert [pem] -stunnel [pem]
- -stunnel3 [pem] -https [port] -httpsredir [port]
- -ssh user@host:disp -usepw -storepasswd pass file
- -nopw -accept string -afteraccept string
- -gone string -users list -noshm
- -flipbyteorder -onetile -solid [color]
- -blackout string -xinerama -noxinerama
- -xtrap -xrandr [mode] -rotate string
- -padgeom WxH -o logfile -flag file
- -rc filename -norc -env VAR=VALUE
- -prog /path/to/x11vnc -h, -help -?, -opts
- -V, -version -license -dbg
- -q, -quiet -v, -verbose -bg
- -modtweak -nomodtweak -xkb
- -noxkb -capslock -skip_lockkeys
- -skip_keycodes string -sloppy_keys -skip_dups
- -noskip_dups -add_keysyms -noadd_keysyms
- -clear_mods -clear_keys -clear_all
- -remap string -norepeat -repeat
- -nofb -nobell -nosel
- -noprimary -nosetprimary -noclipboard
- -nosetclipboard -seldir string -cursor [mode]
- -nocursor -cursor_drag -arrow n
- -noxfixes -alphacut n -alphafrac fraction
- -alpharemove -noalphablend -nocursorshape
- -cursorpos -nocursorpos -xwarppointer
- -noxwarppointer -buttonmap string -nodragging
- -ncache n -ncache_cr -ncache_no_moveraise
- -ncache_no_dtchange -ncache_no_rootpixmap -ncache_keep_anims
- -ncache_old_wm -ncache_pad n -debug_ncache
- -wireframe [str] -nowireframe -nowireframelocal
- -wirecopyrect mode -nowirecopyrect -debug_wireframe
- -scrollcopyrect mode -noscrollcopyrect -scr_area n
- -scr_skip list -scr_inc list -scr_keys list
- -scr_term list -scr_keyrepeat lo-hi -scr_parms string
- -fixscreen string -debug_scroll -noxrecord
- -grab_buster -nograb_buster -debug_grabs
- -debug_sel -pointer_mode n -input_skip n
- -allinput -speeds rd,bw,lat -wmdt string
- -debug_pointer -debug_keyboard -defer time
- -wait time -wait_ui factor -nowait_bog
- -slow_fb time -xrefresh time -nap
- -nonap -sb time -readtimeout n
- -ping n -nofbpm -fbpm
- -nodpms -dpms -forcedpms
- -clientdpms -noserverdpms -noultraext
- -noxdamage -xd_area A -xd_mem f
- -sigpipe string -threads -nothreads
- -fs f -gaps n -grow n
- -fuzz n -debug_tiles -snapfb
- -rawfb string -freqtab file -pipeinput cmd
- -macnodim -macnosleep -macnosaver
- -macnowait -macwheel n -macnoswap
- -macnoresize -maciconanim n -macmenu
- -gui [gui-opts] -remote command -query variable
- -QD variable -sync -noremote
- -yesremote -unsafe -safer
- -privremote -nocmds -allowedcmds list
- -deny_all
+ -shiftcmap n -notruecolor -advertise_truecolor
+ -visual n -overlay -overlay_nocursor
+ -8to24 [opts] -24to32 -scale fraction
+ -scale_cursor frac -viewonly -shared
+ -once -forever -loop
+ -timeout n -sleepin n -inetd
+ -tightfilexfer -ultrafilexfer -http
+ -http_ssl -avahi -mdns
+ -connect string -connect_or_exit str -proxy string
+ -vncconnect -novncconnect -allow host1[,host2..]
+ -localhost -nolookup -input string
+ -grabkbd -grabptr -grabalways
+ -viewpasswd string -passwdfile filename -unixpw [list]
+ -unixpw_nis [list] -unixpw_cmd cmd -find
+ -finddpy -listdpy -create
+ -xdummy -xvnc -xvnc_redirect
+ -svc -svc_xdummy -svc_xvnc
+ -xdmsvc -sshxdmsvc -redirect port
+ -display WAIT:... -nossl -ssl [pem]
+ -ssltimeout n -sslnofail -ssldir [dir]
+ -sslverify [path] -sslGenCA [dir] -sslGenCert type name
+ -sslEncKey [pem] -sslCertInfo [pem] -sslDelCert [pem]
+ -stunnel [pem] -stunnel3 [pem] -https [port]
+ -httpsredir [port] -ssh user@host:disp -usepw
+ -storepasswd pass file -nopw -accept string
+ -afteraccept string -gone string -users list
+ -noshm -flipbyteorder -onetile
+ -solid [color] -blackout string -xinerama
+ -noxinerama -xtrap -xrandr [mode]
+ -rotate string -padgeom WxH -o logfile
+ -flag file -rc filename -norc
+ -env VAR=VALUE -prog /path/to/x11vnc -h, -help
+ -?, -opts -V, -version -license
+ -dbg -q, -quiet -v, -verbose
+ -bg -modtweak -nomodtweak
+ -xkb -noxkb -capslock
+ -skip_lockkeys -skip_keycodes string -sloppy_keys
+ -skip_dups -noskip_dups -add_keysyms
+ -noadd_keysyms -clear_mods -clear_keys
+ -clear_all -remap string -norepeat
+ -repeat -nofb -nobell
+ -nosel -noprimary -nosetprimary
+ -noclipboard -nosetclipboard -seldir string
+ -cursor [mode] -nocursor -cursor_drag
+ -arrow n -noxfixes -alphacut n
+ -alphafrac fraction -alpharemove -noalphablend
+ -nocursorshape -cursorpos -nocursorpos
+ -xwarppointer -noxwarppointer -buttonmap string
+ -nodragging -ncache n -ncache_cr
+ -ncache_no_moveraise -ncache_no_dtchange -ncache_no_rootpixmap
+ -ncache_keep_anims -ncache_old_wm -ncache_pad n
+ -debug_ncache -wireframe [str] -nowireframe
+ -nowireframelocal -wirecopyrect mode -nowirecopyrect
+ -debug_wireframe -scrollcopyrect mode -noscrollcopyrect
+ -scr_area n -scr_skip list -scr_inc list
+ -scr_keys list -scr_term list -scr_keyrepeat lo-hi
+ -scr_parms string -fixscreen string -debug_scroll
+ -noxrecord -grab_buster -nograb_buster
+ -debug_grabs -debug_sel -pointer_mode n
+ -input_skip n -allinput -speeds rd,bw,lat
+ -wmdt string -debug_pointer -debug_keyboard
+ -defer time -wait time -wait_ui factor
+ -nowait_bog -slow_fb time -xrefresh time
+ -nap -nonap -sb time
+ -readtimeout n -ping n -nofbpm
+ -fbpm -nodpms -dpms
+ -forcedpms -clientdpms -noserverdpms
+ -noultraext -noxdamage -xd_area A
+ -xd_mem f -sigpipe string -threads
+ -nothreads -fs f -gaps n
+ -grow n -fuzz n -debug_tiles
+ -snapfb -rawfb string -freqtab file
+ -pipeinput cmd -macnodim -macnosleep
+ -macnosaver -macnowait -macwheel n
+ -macnoswap -macnoresize -maciconanim n
+ -macmenu -gui [gui-opts] -remote command
+ -query variable -QD variable -sync
+ -noremote -yesremote -unsafe
+ -safer -privremote -nocmds
+ -allowedcmds list -deny_all
libvncserver options:
-rfbport port TCP port for RFB protocol
@@ -12158,7 +12290,7 @@ libvncserver-tight-extension options:
% x11vnc -help
-x11vnc: allow VNC connections to real X11 displays. 0.9.4 lastmod: 2008-05-10
+x11vnc: allow VNC connections to real X11 displays. 0.9.4 lastmod: 2008-05-31
(type "x11vnc -opts" to just list the options.)
@@ -12280,6 +12412,11 @@ Options:
a colormap histogram. Example: -shiftcmap 240
-notruecolor For 8bpp displays, force indexed color (i.e. a colormap)
even if it looks like 8bpp TrueColor (rare problem).
+-advertise_truecolor If the X11 display is indexed color, lie to clients
+ when they first connect by telling them it is truecolor.
+ To workaround RealVNC: inPF has colourMap but not 8bpp
+ Use '-advertise_truecolor reset' to reset client fb too.
+
-visual n This option probably does not do what you think.
It simply *forces* the visual used for the framebuffer;
this may be a bad thing... (e.g. messes up colors or
@@ -12287,8 +12424,10 @@ Options:
workarounds. n may be a decimal number, or 0x hex.
Run xdpyinfo(1) for the values. One may also use
"TrueColor", etc. see <X11/X.h> for a list. If the
- string ends in ":m" then for better or for worse the
- visual depth is forced to be m.
+ string ends in ":m" then for better or for worse
+ the visual depth is forced to be m. You may want to
+ use -noshm when using this option (so XGetImage may
+ automatically translate the pixel data).
-overlay Handle multiple depth visuals on one screen, e.g. 8+24
and 24+8 overlay visuals (the 32 bits per pixel are
diff --git a/x11vnc/connections.c b/x11vnc/connections.c
index 2381ef2..f253204 100644
--- a/x11vnc/connections.c
+++ b/x11vnc/connections.c
@@ -2734,6 +2734,23 @@ void check_gui_inputs(void) {
}
}
+static int turn_off_truecolor = 0;
+
+static void turn_off_truecolor_ad(rfbClientPtr client) {
+ if (turn_off_truecolor) {
+ rfbLog("turning off truecolor advertising.\n");
+ screen->serverFormat.trueColour = FALSE;
+ screen->displayHook = NULL;
+ screen->serverFormat.redShift = 0;
+ screen->serverFormat.greenShift = 0;
+ screen->serverFormat.blueShift = 0;
+ screen->serverFormat.redMax = 0;
+ screen->serverFormat.greenMax = 0;
+ screen->serverFormat.blueMax = 0;
+ turn_off_truecolor = 0;
+ }
+}
+
/*
* libvncserver callback for when a new client connects
*/
@@ -2877,6 +2894,43 @@ enum rfbNewClientAction new_client(rfbClientPtr client) {
check_ncache(1, 0);
}
+ if (advertise_truecolor && indexed_color) {
+ int rs = 0, gs = 2, bs = 4;
+ int rm = 3, gm = 3, bm = 3;
+ if (bpp >= 24) {
+ rs = 0, gs = 8, bs = 16;
+ rm = 255, gm = 255, bm = 255;
+ } else if (bpp >= 16) {
+ rs = 0, gs = 5, bs = 10;
+ rm = 31, gm = 31, bm = 31;
+ }
+ rfbLog("advertising truecolor.\n");
+ if (getenv("ADVERT_BMSHIFT")) {
+ bm--;
+ }
+
+ client->format.trueColour = TRUE;
+ client->format.redShift = rs;
+ client->format.greenShift = gs;
+ client->format.blueShift = bs;
+ client->format.redMax = rm;
+ client->format.greenMax = gm;
+ client->format.blueMax = bm;
+
+ rfbSetTranslateFunction(client);
+
+ screen->serverFormat.trueColour = TRUE;
+ screen->serverFormat.redShift = rs;
+ screen->serverFormat.greenShift = gs;
+ screen->serverFormat.blueShift = bs;
+ screen->serverFormat.redMax = rm;
+ screen->serverFormat.greenMax = gm;
+ screen->serverFormat.blueMax = bm;
+ screen->displayHook = turn_off_truecolor_ad;
+
+ turn_off_truecolor = 1;
+ }
+
if (unixpw) {
unixpw_in_progress = 1;
unixpw_client = client;
diff --git a/x11vnc/cursor.c b/x11vnc/cursor.c
index d7f500c..9bc55e8 100644
--- a/x11vnc/cursor.c
+++ b/x11vnc/cursor.c
@@ -976,8 +976,8 @@ static rfbCursorPtr pixels2curs(unsigned long *pixels, int w, int h,
first = 0;
}
- if (cmap8to24 && cmap8to24_fb && depth == 8) {
- if (Bpp == 1) {
+ if (cmap8to24 && cmap8to24_fb && depth <= 16) {
+ if (Bpp <= 2) {
Bpp = 4;
}
}
diff --git a/x11vnc/help.c b/x11vnc/help.c
index ba744ee..37b9a11 100644
--- a/x11vnc/help.c
+++ b/x11vnc/help.c
@@ -140,6 +140,11 @@ void print_help(int mode) {
" a colormap histogram. Example: -shiftcmap 240\n"
"-notruecolor For 8bpp displays, force indexed color (i.e. a colormap)\n"
" even if it looks like 8bpp TrueColor (rare problem).\n"
+"-advertise_truecolor If the X11 display is indexed color, lie to clients\n"
+" when they first connect by telling them it is truecolor.\n"
+" To workaround RealVNC: inPF has colourMap but not 8bpp\n"
+" Use '-advertise_truecolor reset' to reset client fb too.\n"
+"\n"
"-visual n This option probably does not do what you think.\n"
" It simply *forces* the visual used for the framebuffer;\n"
" this may be a bad thing... (e.g. messes up colors or\n"
@@ -147,8 +152,10 @@ void print_help(int mode) {
" workarounds. n may be a decimal number, or 0x hex.\n"
" Run xdpyinfo(1) for the values. One may also use\n"
" \"TrueColor\", etc. see <X11/X.h> for a list. If the\n"
-" string ends in \":m\" then for better or for worse the\n"
-" visual depth is forced to be m.\n"
+" string ends in \":m\" then for better or for worse\n"
+" the visual depth is forced to be m. You may want to\n"
+" use -noshm when using this option (so XGetImage may\n"
+" automatically translate the pixel data).\n"
"\n"
"-overlay Handle multiple depth visuals on one screen, e.g. 8+24\n"
" and 24+8 overlay visuals (the 32 bits per pixel are\n"
diff --git a/x11vnc/misc/Xdummy b/x11vnc/misc/Xdummy
index 936736a..77617e4 100755
--- a/x11vnc/misc/Xdummy
+++ b/x11vnc/misc/Xdummy
@@ -396,7 +396,8 @@ make_so() {
warn "$tmp still exists."
exit 1
fi
- tail +$n1 $0 | head -$dn > $tmp
+ #tail +$n1 $0 | head -$dn > $tmp
+ tail -n +$n1 $0 | head -n $dn > $tmp
# compile it to Xdummy.so:
rm -f $SO
diff --git a/x11vnc/options.c b/x11vnc/options.c
index abda34c..5596d5f 100644
--- a/x11vnc/options.c
+++ b/x11vnc/options.c
@@ -114,6 +114,8 @@ int ping_interval = 0; /* -ping */
int flash_cmap = 0; /* follow installed colormaps */
int shift_cmap = 0; /* ncells < 256 and needs shift of pixel values */
int force_indexed_color = 0; /* whether to force indexed color for 8bpp */
+int advertise_truecolor = 0;
+int advertise_truecolor_reset = 0;
int cmap8to24 = 0; /* -8to24 */
int xform24to32 = 0; /* -24to32 */
char *cmap8to24_str = NULL;
diff --git a/x11vnc/options.h b/x11vnc/options.h
index 1bfd664..c1edaae 100644
--- a/x11vnc/options.h
+++ b/x11vnc/options.h
@@ -89,6 +89,8 @@ extern int ping_interval;
extern int flash_cmap;
extern int shift_cmap;
extern int force_indexed_color;
+extern int advertise_truecolor;
+extern int advertise_truecolor_reset;
extern int cmap8to24;
extern char *cmap8to24_str;
extern int xform24to32;
diff --git a/x11vnc/scan.c b/x11vnc/scan.c
index a5a4670..33a983e 100644
--- a/x11vnc/scan.c
+++ b/x11vnc/scan.c
@@ -1285,8 +1285,12 @@ void scale_and_mark_rect(int X1, int Y1, int X2, int Y2, int mark) {
if (cmap8to24 && cmap8to24_fb) {
src_fb = cmap8to24_fb;
- if (scaling && depth == 8) {
- fac = 4;
+ if (scaling) {
+ if (depth <= 8) {
+ fac = 4;
+ } else if (depth <= 16) {
+ fac = 2;
+ }
}
}
dst_fb = rfb_fb;
diff --git a/x11vnc/screen.c b/x11vnc/screen.c
index 69efde6..8a8f33b 100644
--- a/x11vnc/screen.c
+++ b/x11vnc/screen.c
@@ -79,6 +79,7 @@ int rawfb_vnc_reflect = 0;
*/
#define NCOLOR 256
+/* this is only for rawfb */
void set_greyscale_colormap(void) {
int i;
if (! screen) {
@@ -139,6 +140,8 @@ if (0) fprintf(stderr, "set_hi240_colormap: %s\n", raw_fb_pixfmt);
rfbSetClientColourMaps(screen, 0, 256);
}
+
+/* this is only for rawfb */
void unset_colormap(void) {
if (! screen) {
return;
@@ -151,35 +154,55 @@ void unset_colormap(void) {
if (0) fprintf(stderr, "unset_colormap: %s\n", raw_fb_pixfmt);
}
+/* this is X11 case */
void set_colormap(int reset) {
+
#if NO_X11
if (!reset) {}
return;
#else
static int init = 1;
- static XColor color[NCOLOR], prev[NCOLOR];
+ static XColor *color = NULL, *prev = NULL;
+ static int ncolor = 0;
Colormap cmap;
Visual *vis;
int i, ncells, diffs = 0;
if (reset) {
init = 1;
+ ncolor = 0;
if (screen->colourMap.data.shorts) {
free(screen->colourMap.data.shorts);
screen->colourMap.data.shorts = NULL;
}
+ if (color) {
+ free(color);
+ color = NULL;
+ }
+ if (prev) {
+ free(prev);
+ prev = NULL;
+ }
}
-if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
if (init) {
- screen->colourMap.count = NCOLOR;
+ if (depth > 8) {
+ ncolor = 1 << depth;
+ } else {
+ ncolor = NCOLOR;
+ }
+ screen->colourMap.count = ncolor;
screen->serverFormat.trueColour = FALSE;
screen->colourMap.is16 = TRUE;
screen->colourMap.data.shorts = (unsigned short *)
- malloc(3*sizeof(unsigned short) * NCOLOR);
+ malloc(3*sizeof(unsigned short) * ncolor);
+ }
+ if (color == NULL) {
+ color = (XColor *) calloc(ncolor * sizeof(XColor), 1);
+ prev = (XColor *) calloc(ncolor * sizeof(XColor), 1);
}
- for (i=0; i < NCOLOR; i++) {
+ for (i=0; i < ncolor; i++) {
prev[i].red = color[i].red;
prev[i].green = color[i].green;
prev[i].blue = color[i].blue;
@@ -203,15 +226,15 @@ if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
}
}
- if (ncells != NCOLOR) {
- if (init && ! quiet) {
- rfbLog("set_colormap: number of cells is %d "
- "instead of %d.\n", ncells, NCOLOR);
- }
+ if (ncells != ncolor) {
if (! shift_cmap) {
screen->colourMap.count = ncells;
}
}
+ if (init && ! quiet) {
+ rfbLog("set_colormap: number of cells: %d, "
+ "ncolor(%d) is %d.\n", ncells, depth, ncolor);
+ }
if (flash_cmap && ! init) {
XWindowAttributes attr;
@@ -233,9 +256,9 @@ if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
}
}
}
- if (ncells > NCOLOR && ! quiet) {
+ if (ncells > ncolor && ! quiet) {
rfbLog("set_colormap: big problem: ncells=%d > %d\n",
- ncells, NCOLOR);
+ ncells, ncolor);
}
if (vis->class == TrueColor || vis->class == DirectColor) {
@@ -245,7 +268,7 @@ if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
* mentioned in xdpyinfo. Looks OK... perhaps fortuitously.
*/
if (ncells == 8 && ! shift_cmap) {
- ncells = NCOLOR;
+ ncells = ncolor;
}
}
@@ -271,7 +294,7 @@ if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
diffs++;
}
- if (shift_cmap && k >= 0 && k < NCOLOR) {
+ if (shift_cmap && k >= 0 && k < ncolor) {
/* kludge to copy the colors to higher pixel values */
screen->colourMap.data.shorts[k*3+0] = color[i].red;
screen->colourMap.data.shorts[k*3+1] = color[i].green;
@@ -285,7 +308,7 @@ if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
"with uninitialized clients.\n");
}
if (shift_cmap) {
- rfbSetClientColourMaps(screen, 0, NCOLOR);
+ rfbSetClientColourMaps(screen, 0, ncolor);
} else {
rfbSetClientColourMaps(screen, 0, ncells);
}
@@ -297,7 +320,8 @@ if (0) fprintf(stderr, "unset_colormap: %d\n", reset);
static void debug_colormap(XImage *fb) {
static int debug_cmap = -1;
- int i, k, histo[NCOLOR];
+ int i, k, *histo;
+ int ncolor;
if (debug_cmap < 0) {
if (getenv("DEBUG_CMAP") != NULL) {
@@ -312,11 +336,13 @@ static void debug_colormap(XImage *fb) {
if (! fb) {
return;
}
- if (fb->bits_per_pixel > 8) {
+ if (fb->bits_per_pixel > 16) {
return;
}
+ ncolor = screen->colourMap.count;
+ histo = (int *) calloc(ncolor * sizeof(int), 1);
- for (i=0; i < NCOLOR; i++) {
+ for (i=0; i < ncolor; i++) {
histo[i] = 0;
}
for (k = 0; k < fb->width * fb->height; k++) {
@@ -327,7 +353,7 @@ static void debug_colormap(XImage *fb) {
histo[n]++;
}
fprintf(stderr, "\nColormap histogram for current screen contents:\n");
- for (i=0; i < NCOLOR; i++) {
+ for (i=0; i < ncolor; i++) {
unsigned short r = screen->colourMap.data.shorts[i*3+0];
unsigned short g = screen->colourMap.data.shorts[i*3+1];
unsigned short b = screen->colourMap.data.shorts[i*3+2];
@@ -338,6 +364,7 @@ static void debug_colormap(XImage *fb) {
fprintf(stderr, "\n");
}
}
+ free(histo);
fprintf(stderr, "\n");
}
@@ -1931,12 +1958,38 @@ XImage *initialize_xdisplay_fb(void) {
if (xform24to32) {
if (DefaultDepth(dpy, scr) == 24) {
vis_str = strdup("TrueColor:32");
- rfbLog("initialize_xdisplay_fb: vis_str set to: %s ",
+ rfbLog("initialize_xdisplay_fb: vis_str set to: %s\n",
vis_str);
visual_id = (VisualID) 0;
visual_depth = 0;
set_visual_str_to_something = 1;
}
+ } else if (DefaultDepth(dpy, scr) < 8) {
+ /* check very low bpp case, e.g. mono or vga16 */
+ Screen *s = DefaultScreenOfDisplay(dpy);
+ XImage *xi = XGetImage_wr(dpy, DefaultRootWindow(dpy), 0, 0, 2, 2, AllPlanes,
+ ZPixmap);
+ if (xi && xi->bits_per_pixel < 8) {
+ int lowbpp = xi->bits_per_pixel;
+ if (!vis_str) {
+ char tmp[32];
+ sprintf(tmp, "0x%x:8", (int) s->root_visual->visualid);
+ vis_str = strdup(tmp);
+ rfbLog("initialize_xdisplay_fb: low bpp[%d], vis_str "
+ "set to: %s\n", lowbpp, vis_str);
+ }
+ if (using_shm) {
+ using_shm = 0;
+ rfbLog("initialize_xdisplay_fb: low bpp[%d], "
+ "disabling shm\n", lowbpp);
+ }
+ visual_id = (VisualID) 0;
+ visual_depth = 0;
+ set_visual_str_to_something = 1;
+ }
+ if (xi) {
+ XDestroyImage(xi);
+ }
}
if (vis_str != NULL) {
@@ -2420,13 +2473,13 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
" bpp != 32 with depth == 24\n");
cmap8to24 = 0;
}
- } else if (depth == 8) {
+ } else if (depth <= 16) {
/* need to cook up the screen fb to be depth 24 */
fb_bpp = 32;
fb_depth = 24;
} else {
if (!quiet) rfbLog("disabling -8to24 mode:"
- " default depth not 24 or 8\n");
+ " default depth not 16 or less\n");
cmap8to24 = 0;
}
}
@@ -2489,9 +2542,14 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
}
#endif
- if (cmap8to24 && depth == 8) {
- rfb_bytes_per_line *= 4;
- rot_bytes_per_line *= 4;
+ if (cmap8to24) {
+ if (depth <= 8) {
+ rfb_bytes_per_line *= 4;
+ rot_bytes_per_line *= 4;
+ } else if (depth <= 16) {
+ rfb_bytes_per_line *= 2;
+ rot_bytes_per_line *= 2;
+ }
}
/*
@@ -2596,7 +2654,7 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
have_masks = 0;
}
- if (cmap8to24 && depth == 8 && dpy) {
+ if (cmap8to24 && depth <= 16 && dpy) {
XVisualInfo vinfo;
vinfo.red_mask = 0;
vinfo.green_mask = 0;
@@ -2638,13 +2696,14 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
free(fmt);
}
- if (! have_masks && screen->serverFormat.bitsPerPixel == 8
+ if (! have_masks && screen->serverFormat.bitsPerPixel <= 16
&& dpy && CellsOfScreen(ScreenOfDisplay(dpy, scr))) {
- /* indexed color */
+ /* indexed color. we let 1 <= bpp <= 16, but it is normally 8 */
if (!quiet) {
rfbLog("\n");
- rfbLog("X display %s is 8bpp indexed color\n",
- DisplayString(dpy));
+ rfbLog("X display %s is %dbpp indexed color, depth=%d\n",
+ DisplayString(dpy), screen->serverFormat.bitsPerPixel,
+ screen->serverFormat.depth);
if (! flash_cmap && ! overlay) {
rfbLog("\n");
rfbLog("In 8bpp PseudoColor mode if you "
@@ -2656,6 +2715,18 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
rfbLog("\n");
}
}
+ if (screen->serverFormat.depth < 8) {
+ rfbLog("resetting serverFormat.depth %d -> 8.\n",
+ screen->serverFormat.depth);
+ rfbLog("resetting serverFormat.bpp %d -> 8.\n",
+ screen->serverFormat.bitsPerPixel);
+ screen->serverFormat.depth = 8;
+ screen->serverFormat.bitsPerPixel = 8;
+ }
+ if (screen->serverFormat.depth > 8) {
+ rfbLog("WARNING: indexed color depth > 8, Tight encoding will crash.\n");
+ }
+
screen->serverFormat.trueColour = FALSE;
indexed_color = 1;
set_colormap(1);
@@ -2688,6 +2759,29 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
indexed_color = 0;
+ if (!have_masks) {
+ int M, B = bits_per_color;
+
+ if (3*B > fb_bpp) B--;
+ if (B < 1) B = 1;
+ M = (1 << B) - 1;
+
+ rfbLog("WARNING: all TrueColor RGB masks are zero!\n");
+ rfbLog("WARNING: cooking something up for VNC fb... B=%d M=%d\n", B, M);
+ main_red_mask = M;
+ main_green_mask = M;
+ main_blue_mask = M;
+ main_red_mask = main_red_mask << (2*B);
+ main_green_mask = main_green_mask << (1*B);
+ main_blue_mask = main_blue_mask << (0*B);
+ fprintf(stderr, " red_mask: 0x%08lx %s\n", main_red_mask,
+ bitprint(main_red_mask, 32));
+ fprintf(stderr, " green_mask: 0x%08lx %s\n", main_green_mask,
+ bitprint(main_green_mask, 32));
+ fprintf(stderr, " blue_mask: 0x%08lx %s\n", main_blue_mask,
+ bitprint(main_blue_mask, 32));
+ }
+
/* convert masks to bit shifts and max # colors */
if (main_red_mask) {
while (! (main_red_mask
@@ -2821,8 +2915,10 @@ void initialize_screen(int *argc, char **argv, XImage *fb) {
if (cmap8to24) {
int n = main_bytes_per_line * fb->height;
- if (depth == 8) {
+ if (depth <= 8) {
n *= 4;
+ } else if (depth <= 16) {
+ n *= 2;
}
cmap8to24_fb = (char *) malloc(n);
memset(cmap8to24_fb, 0, n);
diff --git a/x11vnc/userinput.c b/x11vnc/userinput.c
index 9e07ca6..d8e0fb3 100644
--- a/x11vnc/userinput.c
+++ b/x11vnc/userinput.c
@@ -790,8 +790,10 @@ static void draw_box(int x, int y, int w, int h, int restore) {
if (cmap8to24 && cmap8to24_fb) {
use_fb = cmap8to24_fb;
pixelsize = 4;
- if (depth == 8) {
+ if (depth <= 8) {
use_Bpl *= 4;
+ } else if (depth <= 16) {
+ use_Bpl *= 2;
}
}
@@ -1882,9 +1884,14 @@ if (0 || debug_scroll > 1) fprintf(stderr, "<<<-rfbDoCopyRect req: %d mod: %d cp
}
}
if (0) fprintf(stderr, "copyrect: cmap8to24_fb: mode=%d\n", mode);
- if (cmap8to24 && depth == 8) {
- Bpp = 4 * Bpp0;
- stride = 4 * stride0;
+ if (cmap8to24) {
+ if (depth <= 8) {
+ Bpp = 4 * Bpp0;
+ stride = 4 * stride0;
+ } else if (depth <= 16) {
+ Bpp = 2 * Bpp0;
+ stride = 2 * stride0;
+ }
}
dst = cmap8to24_fb + y1*stride + x1*Bpp;
src = cmap8to24_fb + (y1-dy)*stride + (x1-dx)*Bpp;
@@ -3566,6 +3573,17 @@ void check_fixscreen(void) {
didfull = 1;
}
}
+ if (advertise_truecolor && advertise_truecolor_reset && indexed_color) {
+ /* this will reset framebuffer to correct colors, if needed */
+ static dlast = 0.0;
+ now = dnow();
+ if (now > last_client + 1.0 && now < last_client + 3.0 && now > dlast + 5.0) {
+ rfbLog("advertise truecolor reset framebuffer\n");
+ do_new_fb(1);
+ dlast = dnow();
+ return;
+ }
+ }
}
static int wireframe_mod_state() {
@@ -8083,8 +8101,12 @@ void scale_mark_xrootpmap(void) {
if (cmap8to24 && cmap8to24_fb) {
src_fb = cmap8to24_fb;
- if (scaling && depth == 8) {
- fac = 4;
+ if (scaling) {
+ if (depth <= 8) {
+ fac = 4;
+ } else if (depth <= 16) {
+ fac = 2;
+ }
}
}
dst_fb = rfb_fb;
diff --git a/x11vnc/x11vnc.1 b/x11vnc/x11vnc.1
index 71f679e..b21cb51 100644
--- a/x11vnc/x11vnc.1
+++ b/x11vnc/x11vnc.1
@@ -2,7 +2,7 @@
.TH X11VNC "1" "May 2008" "x11vnc " "User Commands"
.SH NAME
x11vnc - allow VNC connections to real X11 displays
- version: 0.9.4, lastmod: 2008-05-10
+ version: 0.9.4, lastmod: 2008-05-31
.SH SYNOPSIS
.B x11vnc
[OPTION]...
@@ -161,6 +161,13 @@ a colormap histogram. Example: \fB-shiftcmap\fR 240
For 8bpp displays, force indexed color (i.e. a colormap)
even if it looks like 8bpp TrueColor (rare problem).
.PP
+\fB-advertise_truecolor\fR
+.IP
+If the X11 display is indexed color, lie to clients
+when they first connect by telling them it is truecolor.
+To workaround RealVNC: inPF has colourMap but not 8bpp
+Use '-advertise_truecolor reset' to reset client fb too.
+.PP
\fB-visual\fR \fIn\fR
.IP
This option probably does not do what you think.
@@ -172,8 +179,10 @@ Run
.IR xdpyinfo (1)
for the values. One may also use
"TrueColor", etc. see <X11/X.h> for a list. If the
-string ends in ":m" then for better or for worse the
-visual depth is forced to be m.
+string ends in ":m" then for better or for worse
+the visual depth is forced to be m. You may want to
+use \fB-noshm\fR when using this option (so XGetImage may
+automatically translate the pixel data).
.PP
\fB-overlay\fR
.IP
diff --git a/x11vnc/x11vnc.c b/x11vnc/x11vnc.c
index af6b8f2..e8c04fe 100644
--- a/x11vnc/x11vnc.c
+++ b/x11vnc/x11vnc.c
@@ -2514,6 +2514,17 @@ int main(int argc, char* argv[]) {
shift_cmap = atoi(argv[++i]);
} else if (!strcmp(arg, "-notruecolor")) {
force_indexed_color = 1;
+ } else if (!strcmp(arg, "-advertise_truecolor")) {
+ advertise_truecolor = 1;
+ if (i < argc-1) {
+ char *s = argv[i+1];
+ if (s[0] != '-') {
+ if (strstr(s, "reset")) {
+ advertise_truecolor_reset = 1;
+ }
+ i++;
+ }
+ }
} else if (!strcmp(arg, "-overlay")) {
overlay = 1;
} else if (!strcmp(arg, "-overlay_nocursor")) {
diff --git a/x11vnc/x11vnc_defs.c b/x11vnc/x11vnc_defs.c
index fd8798b..fb19402 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.9.4 lastmod: 2008-05-10";
+char lastmod[] = "0.9.4 lastmod: 2008-05-31";
/* X display info */
diff --git a/x11vnc/xinerama.c b/x11vnc/xinerama.c
index f1f919f..9097771 100644
--- a/x11vnc/xinerama.c
+++ b/x11vnc/xinerama.c
@@ -263,19 +263,19 @@ static void initialize_xinerama (void) {
rfbLog("\n");
rfbLog("Xinerama is present and active (e.g. multi-head).\n");
- if (! use_xwarppointer && ! got_noxwarppointer) {
- rfbLog("Xinerama: enabling -xwarppointer mode to try to correct\n");
- rfbLog("Xinerama: mouse pointer motion. XTEST+XINERAMA bug.\n");
- rfbLog("Xinerama: Use -noxwarppointer to force XTEST.\n");
- use_xwarppointer = 1;
- }
-
/* n.b. change to XineramaGetData() someday */
xineramas = XineramaQueryScreens(dpy, &n);
if (verbose) {
rfbLog("Xinerama: number of sub-screens: %d\n", n);
}
+ if (! use_xwarppointer && ! got_noxwarppointer && n > 1) {
+ rfbLog("Xinerama: enabling -xwarppointer mode to try to correct\n");
+ rfbLog("Xinerama: mouse pointer motion. XTEST+XINERAMA bug.\n");
+ rfbLog("Xinerama: Use -noxwarppointer to force XTEST.\n");
+ use_xwarppointer = 1;
+ }
+
if (n == 1) {
if (verbose) {
rfbLog("Xinerama: no blackouts needed (only one"