1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
<!doctype html public '-//W3C//DTD HTML 4.01//EN'
'http://www.w3.org/TR/html4/strict.dtd'>
<html>
<head>
<title>Conspy - remote control of Linux virtual consoles</title>
<meta name="Author" content="Russell Stuart">
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<style type="text/css">
h1 { margin-left: 0em; margin-top: 0; text-align: center; font-size: 200%; font-weight: bold; background-color: #8080FF }
p { margin-left: 2em }
table { margin-left: 4em }
</style>
</head>
<body>
<h1>
Conspy<br>
<font size="4">Remote control of Linux virtual consoles</font>
</h1>
<p>
Conspy allows a (possibly remote) user to see what is displayed
on a Linux virtual console, and send keystrokes to it. It
works with Linux and FreeBSD, as far as I know.
</p>
<p>
It is rather like VNC, but where VNC takes control of a GUI
conspy takes control of a text mode virtual console. Unlike
VNC, conspy does not require a server to be installed prior
to being used.
</p>
<h2>Documentation</h2>
<p>
Sparse. There is a
<a href="conspy.1.html">man page</a>, and a
<a href="ChangeLog">ChangeLog</a>.
</p>
<h2>Frequently asked question</h2>
<p>
Q: <i>Can conspy look at other types of terminals, such as a normal
serial terminal, or a pty such as a telnet session?</i>
</p>
<p>
A: No. Nor will it ever be able to do so. Conspy does not
intercept the character stream being sent to the virtual
console. If it did that it would have to interpret all the
ANSI escape sequences understood by the Linux virtual console
exactly the same way Linux does. That would be tedious, and
would break each time Linux changes the escape sequences.
Instead conspy asks the Linux kernel for the virtual console's
frame buffer. That is, it gets an image of what is displayed
on the screen and makes your terminal look the same. There is
no way to do that for other tty's. If conspy was to work
with them it would have to interpret the character stream as it
passes through the tty. This is well neigh impossible because
there are many different types of terminal out there and they
all use different escape sequences. If all you all to do it
look at the raw character stream as it passes through the tty
look up ttysnoop on
<a href="http://freshmeat.net/">Freshmeat</a>.
</p>
<h2>Copyright and License</h2>
<p>
Conspy is copyright © 2005,2006,2007,2009,2011 Russell Stuart.
</p>
<p>
This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
<a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
</p>
<h2>Downloading</h2>
<p>
Conspy is available in the following formats:
</p>
<table>
<tr>
<td>Source code as a tar ball</td>
<td> </td>
<td><a href="conspy-1.8.tar.gz">conspy-1.8.tar.gz</a></td>
</tr>
<tr>
<td>Debian Packages</td>
<td> </td>
<td>Conspy is now part of Debian stable.</td>
</tr>
<!-- tr>
<td>RPM binary package</td>
<td> </td>
<td<a href="conspy-1.8-1ras.i386.rpm">conspy-1.8-1ras.i386.rpm</a></td>
</tr>
<tr>
<td>RPM source package</td>
<td> </td>
<td<a href="conspy-1.8-1ras.src.rpm">conspy-1.8-1ras.src.rpm</a></td>
</tr -->
</table>
<!-- p>
The Red Hat binary may not work for you.
If not download the source rpm and rebuild it with:<br/>
<code>rpmbuild --rebuild conspy-X.YY.src.rpm</code><br/>
and installing the resulting binary.
</p -->
<p> </p>
<hr>
<p style="margin-left: 0">
Russell Stuart, 2006-Jan-09.
Email:
<a href="mailto:Russell Stuart <russell-conspy@stuart.id.au>">
russell-conspy@<!--@-->stuart.<!--.-->id.<!--.-->au
</a>
</p>
</body>
</html>
|