Documentation/devtools/maemo5/screen

(New page: == Description == Screen is a tool to manage multiple terminal sessions. It offers a very handy way to run multiple interactive shells when the screen space is limited. The manual page i...)
(Usage Examples)
 
(3 intermediate revisions not shown)
Line 1: Line 1:
 +
{{Devtools}}
 +
 +
== Description ==
== Description ==
Line 15: Line 18:
== Usage Examples ==
== Usage Examples ==
 +
=== Resume session ===
<pre>
<pre>
# screen
# screen
Line 28: Line 32:
</pre>
</pre>
-
== Links ==
+
=== Share a session ===
 +
<pre>
 +
user1:# screen
 +
</pre>
 +
<pre>
 +
user2:# ssh user1@host
 +
user2:# screen -x
 +
</pre>
-
[screen man page](/development/documentation/man_pages/screen.html)
+
The first user hosts a screen session and the second user can connect to the non-disconnected "multi-display" session using the -x parameter. Text input is shared additionally.
 +
== Links ==
 +
 +
* [[:wikipedia:GNU Screen|screen Wikipedia article]]
== See Also ==
== See Also ==
-
-
 +
 +
[[Category:Fremantle]]

Latest revision as of 11:40, 28 June 2010

Image:Ambox_content.png
This article documents a developer tool.
A list of available devtools is available, together with installation instructions.


Contents

[edit] Description

Screen is a tool to manage multiple terminal sessions. It offers a very handy way to run multiple interactive shells when the screen space is limited.

The manual page is well written and provides comprehensive documentation.

[edit] Packages

source: screen

binary: screen

[edit] Usage Examples

[edit] Resume session

# screen

To exit from screen, exit from all the shells that you had started in it, or you can also suspend it to background by issuing C-a d (control-a d).

You can later return to the suspended session by starting screen like this:

# screen -dr

[edit] Share a session

user1:# screen
user2:# ssh user1@host
user2:# screen -x

The first user hosts a screen session and the second user can connect to the non-disconnected "multi-display" session using the -x parameter. Text input is shared additionally.

[edit] Links

[edit] See Also

-