Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can also use the <em>screen</em> utility, allowing you to access multiple separate terminal sessions inside a single terminal window or remote terminal session.</p> <p>This means that you can setup a screen session (with a name of your choice), start a program within it (for example using &amp;), detach from the session, and reconnect at a later time.</p> <p>To start an unnamed screen.</p> <pre><code>$ screen </code></pre> <p>To create a new session with a specific name use:</p> <pre><code>$ screen -S backup </code></pre> <p>-these both commands create a new persistent session, and you can use it as a regular terminal window, i.e., issue commands and run scripts.</p> <p>If you want to leave the session without terminating it, use:</p> <pre><code>Ctrl+a d command (press and hold Ctrl, press and hold a, then press d) to detach from the session. </code></pre> <p>To see the list of runnging screens:</p> <pre><code>$ screen -ls </code></pre> <p>To attach a running screen to the console:</p> <pre><code>$ screen -R </code></pre> <p>The following key-combinations can be used, when a screen is running, and is attached to the console. All key kombinations begin with pressing control and a simultaneously.</p> <pre><code>ctrl+a d - detach the screen, and let it run without user interface (as described above) ctrl+a c - create a new terminal ctrl+a A - set the name of the current terminal ctrl+a n - switch to next terminal ctrl+a p - switch to prev terminal ctrl+a " - list the of terminals </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload