• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.deps/22-Nov-2023-84

ChangeLogD22-Nov-2023558 1615

LinuxVNC.cD22-Nov-20234.8 KiB192160

MakefileD22-Nov-202319.1 KiB623534

Makefile.amD22-Nov-2023422 2818

Makefile.inD22-Nov-202319.8 KiB623545

READMED22-Nov-20231.2 KiB2620

TODOD22-Nov-2023655 2218

VNCommand.cD22-Nov-20233 KiB128105

VNConsole.cD22-Nov-202312.1 KiB498446

VNConsole.hD22-Nov-20232.7 KiB9659

example.cD22-Nov-2023633 3230

vga.hD22-Nov-202317.8 KiB262259

README

1
2In this stage (beta), there are two programs functional:
3
4LinuxVNC <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
12VNCommand <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
18My original plan was to create a program named vncTerm. It was meant to
19overcome incompatibilities between different TERMs, but I found "screen" to
20be just such a program. Maybe once some time in the future I'll make a
21patch for screen to use VNConsole to export it's contents via RFB...
22
23These two programs are a simple application of LibVNCServer with a small
24console 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