Difference between revisions of "Karl's BASH experience"
From Snow
Jump to navigationJump to search (New page: == Leaving Processes running w/ closed window == screen -S SomeNameHere When yer ready to come back, login to the host and do: screen -x or, if you have multiple sessions on that hos...) |
m |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | |||
== Leaving Processes running w/ closed window == | == Leaving Processes running w/ closed window == | ||
screen -S SomeNameHere | screen -S SomeNameHere | ||
+ | |||
+ | either kill the login window or do a "CTL-a" to dump out of the screen login session and back to the original login from which you can exit | ||
When yer ready to come back, login to the host and do: | When yer ready to come back, login to the host and do: | ||
Line 11: | Line 12: | ||
screen -x SomeNameHere | screen -x SomeNameHere | ||
+ | |||
+ | == Killing Processes == | ||
+ | |||
+ | http://tldp.org/LDP/GNU-Linux-Tools-Summary/html/x5368.htm | ||
+ | |||
+ | ps -x |
Latest revision as of 20:51, 28 October 2009
Leaving Processes running w/ closed window
screen -S SomeNameHere
either kill the login window or do a "CTL-a" to dump out of the screen login session and back to the original login from which you can exit
When yer ready to come back, login to the host and do:
screen -x
or, if you have multiple sessions on that host:
screen -x SomeNameHere
Killing Processes
http://tldp.org/LDP/GNU-Linux-Tools-Summary/html/x5368.htm
ps -x