File: conspy.html

package info (click to toggle)
conspy 1.16-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 188 kB
  • sloc: ansic: 642; makefile: 78
file content (140 lines) | stat: -rw-r--r-- 4,390 bytes parent folder | download
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
136
137
138
139
140
<!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 }
    ul		{ margin-left: 2em }
  </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>, a
  <a href="ChangeLog.txt">change log</a> and a
  <a href="README.txt">README</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 &copy; 2005,2006,2007,2009,2011,2014,2015,2016,2020 Russell Stuart.  
  It is licensed under the <a href="agpl-3.0.txt">GNU Affero General Public License</a>.
</p>

<p>
  This program is free software: you can redistribute it and/or modify it
  under the terms of the GNU Affero General Public License as published by
  the Free Software Foundation, either version 3 of the License, or (at your
  option) any later version.
</p>

<p>
  The copyright holders grant you an additional permission under Section 7
  of the GNU Affero General Public License, version 3, exempting you from
  the requirement in Section 6 of the GNU General Public License, version 3,
  to accompany Corresponding Source with Installation Information for the
  Program or any work based on the Program. You are still required to
  comply with all other Section 6 requirements to provide Corresponding
  Source.
</p>

<p>
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Affero General Public License for more details.
</p>

<h2>Downloading, Feedback & Contributing</h2>
  
<p>
Development for conspy is hosted on
<a href="http://sourceforge.net/projects/conspy/">Source forge</a>:
</p>

<ul>
  <li>
    <a href="https://sourceforge.net/projects/conspy/files/">Download area</a>,
    (.tar.gz, .deb, .rpm).
  </li>
  <li>
    <a href="http://sourceforge.net/p/conspy/tickets/">Issue tracker</a>,
    bugs, features or just questions.
  </li>
  <li>
    <a href="https://sourceforge.net/p/conspy/code/ref/default/">Source repository</a>.
  </li>
  <li>
    Conspy is part of Debian.
    Most Debian derived distribution can install using apt-get.
  </li>
</ul>

<p>&nbsp;</p>

<hr>
<p style="margin-left: 0">
  Russell Stuart, 2014-May-27.
</p>

</body>
</html>