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...") |
m (more smw) |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 2: | Line 2: | ||
[[page type::article]] | [[page type::article]] | ||
[[thing type::software]] | [[thing type::software]] | ||
| + | [[software type::virtual console]] | ||
[[part of::GNU]] | [[part of::GNU]] | ||
| + | [[category:software]] | ||
</hide> | </hide> | ||
==About== | ==About== | ||
'''GNU Screen''' is a [[GNU]] [[command line]] application which lets you create and access virtual terminal sessions. | '''GNU Screen''' is a [[GNU]] [[command line]] application which lets you create and access virtual terminal sessions. | ||
| + | |||
| + | Local manpage: {{l/manpage|screen}} | ||
==Notes== | ==Notes== | ||
From outside screen: | From outside screen: | ||
* <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) | ||
| + | * If Screen refuses to connect to a specified session, that may be because it's already "attached" – use <code>screen -r -d {{arg|pid.tty.host}}</code> to detach it first if necessary. | ||
| − | + | From within Screen: | |
| + | * <code>[CTRL-A] d</code> disconnects (detaches) from the current session (but does not end it) | ||
| − | |||
| − | |||
==Outlinks== | ==Outlinks== | ||
===Reference=== | ===Reference=== | ||
* {{wikipedia|GNU Screen}} | * {{wikipedia|GNU Screen}} | ||
Latest revision as of 10:25, 28 April 2018
About
GNU Screen is a GNU command line application which lets you create and access virtual terminal sessions.
Local manpage: screen
Notes
From outside screen:
screen -Rreconnects to the most recently-created session.screen -lslists the available sessions.screen -r <pid.tty.host>reconnects to the specified session (note: .host is optional)- If Screen refuses to connect to a specified session, that may be because it's already "attached" – use
screen -r -d <pid.tty.host>to detach it first if necessary.
From within Screen:
[CTRL-A] ddisconnects (detaches) from the current session (but does not end it)
Outlinks
Reference
- Wikipedia (GNU Screen)