Home | History | Annotate | only in /external/libvncserver/vncterm
Up to higher level directory
NameDateSize
.deps/08-Oct-2015
ChangeLog08-Oct-2015558
example.c08-Oct-2015633
LinuxVNC.c08-Oct-20154.8K
Makefile08-Oct-201519.1K
Makefile.am08-Oct-2015422
Makefile.in08-Oct-201519.8K
README08-Oct-20151.2K
TODO08-Oct-2015655
vga.h08-Oct-201517.8K
VNCommand.c08-Oct-20153K
VNConsole.c08-Oct-201512.1K
VNConsole.h08-Oct-20152.7K

README

      1 
      2 In this stage (beta), there are two programs functional:
      3 
      4 LinuxVNC <tty number>
      5 	monitor a virtual console (text mode) of Linux. You need
      6 	root privileges, or at least be in the "tty" group, because
      7 	it reads /dev/vcsN and writes /dev/ttyN.
      8 	It follows the same idea as WinVNC, x11vnc or OSXvnc, i.e. it
      9 	takes an existing desktop and exports it via RFB (VNC), just that
     10 	LinuxVNC exports text.
     11 
     12 VNCommand <command> <args>
     13 	executes <command> redirecting stdin from a vncviewer and stdout &
     14 	stderr to the vnc clients. This might be renamed to vncTerm if
     15 	there are some term capabilities added (up to now, bash doesn't look
     16 	nice). Colours and other ANSI sequences need to be added.
     17 
     18 My original plan was to create a program named vncTerm. It was meant to
     19 overcome incompatibilities between different TERMs, but I found "screen" to
     20 be just such a program. Maybe once some time in the future I'll make a
     21 patch for screen to use VNConsole to export it's contents via RFB...
     22 
     23 These two programs are a simple application of LibVNCServer with a small
     24 console layer in between (VNConsole). You can use them under the terms
     25 (not vncTerms ;-) of the GPL. They where written by Johannes E. Schindelin.
     26