Changes between Initial Version and Version 1 of HowtoScreen


Ignore:
Timestamp:
2012-04-18T18:23:22+02:00 (13 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowtoScreen

    v1 v1  
     1== Screen program ==
     2
     3With screen you can create one or more sessions in your current SSH terminal. Just run
     4
     5{{{
     6screen
     7}}}
     8
     9Ctrl a c - Creates a new screen session so that you can use more than one screen session at once.
     10
     11Ctrl a n - Switches to the next screen session (if you use more than one).
     12
     13Ctrl a p - Switches to the previous screen session (if you use more than one).
     14
     15Ctrl a d - Detaches a screen session (without killing the processes in it - they continue).
     16
     17To close a screen session where all tasks are finished you can type
     18{{{
     19exit
     20}}}
     21
     22Back on your normal SSH terminal, you can run
     23
     24screen -ls
     25
     26to get a list of your current screen sessions.
     27
     28To reconnect to one of these sessions, run
     29{{{
     30screen -r 1234.my.server
     31}}}