Difference between revisions of "Linux screen"
From John Freier
(Created page with "== Install Screen == Screen is an application to have multiply sessions in Linux. It also allows you to start a session on one terminal, and continue it on another. Or allow...") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
sudo apt-get install screen | sudo apt-get install screen | ||
+ | |||
+ | == Start a Session == | ||
+ | screen | ||
== Leave a Screen session but not close it == | == Leave a Screen session but not close it == | ||
− | + | ctrl+a, d | |
== List Screens == | == List Screens == | ||
Line 12: | Line 15: | ||
== Return to a Session == | == Return to a Session == | ||
screen -r 4123-12e-session | screen -r 4123-12e-session | ||
+ | |||
+ | == Quit Screen == | ||
+ | exit | ||
+ | or | ||
+ | ctrl+a k | ||
+ | |||
+ | == Resources == | ||
+ | https://www.howtoforge.com/linux_screen |
Latest revision as of 08:53, 2 June 2016
Contents
Install Screen
Screen is an application to have multiply sessions in Linux. It also allows you to start a session on one terminal, and continue it on another. Or allow a process to run while you logged out of the terminal session.
sudo apt-get install screen
Start a Session
screen
Leave a Screen session but not close it
ctrl+a, d
List Screens
screen -ls
Return to a Session
screen -r 4123-12e-session
Quit Screen
exit
or
ctrl+a k