Difference between revisions of "GNU/screen"
< GNU
Jump to navigation
Jump to search
(Created page with "<hide> page type::article thing type::software part of::GNU </hide> ==About== '''GNU Screen''' is a GNU command line application which lets you create and...") |
(→Notes: screen -r) |
||
Line 10: | Line 10: | ||
* <code>screen -R</code> reconnects to the most recently-created session. | * <code>screen -R</code> reconnects to the most recently-created session. | ||
* <code>screen -ls</code> lists the available sessions. | * <code>screen -ls</code> lists the available sessions. | ||
− | + | * <code>screen -r {{arg|pid.tty.host}}</code> reconnects to the specified session (note: .host is optional) | |
I haven't been able to figure out how to connect to a session other than the most recent one. | I haven't been able to figure out how to connect to a session other than the most recent one. | ||
From within screen: | From within screen: | ||
* <code>[CTRL-A] d</code> disconnects from the current session (but does not end it) | * <code>[CTRL-A] d</code> disconnects from the current session (but does not end it) | ||
+ | |||
==Outlinks== | ==Outlinks== | ||
===Reference=== | ===Reference=== | ||
* {{wikipedia|GNU Screen}} | * {{wikipedia|GNU Screen}} |
Revision as of 18:53, 6 October 2015
About
GNU Screen is a GNU command line application which lets you create and access virtual terminal sessions.
Notes
From outside screen:
screen -R
reconnects to the most recently-created session.screen -ls
lists the available sessions.screen -r <pid.tty.host>
reconnects to the specified session (note: .host is optional)
I haven't been able to figure out how to connect to a session other than the most recent one.
From within screen:
[CTRL-A] d
disconnects from the current session (but does not end it)