Revision 1 as of 2014-02-18 23:07:48

Clear message

Once you're connected to one of UCC's servers you'll want to start running things. You could open up an SSH session for every program you want to run, or you could use a program like screen.

To start using screen for the first time, type "screen". This will launch the program and give you a terminal window that won't disappear when you disconnect from ssh. If you disconnect from ssh and want to reattach the the screen session you were previously running, reopen ssh and type "screen -dR".

Command

Key Combination
(Case Sensitive)

Explanation

screen

Ctrl + a then c

Open up a new screen window

kill

Ctrl + a then k

Force Kill the current window

detach

Ctrl + a then d

Close screen. Keeps all the windows running

title

Ctrl + a then A

Set the title for the screen window

next

Ctrl + a then n

Go to the next screen window

prev

Ctrl + a then p

Go to the previous screen window

help

Ctrl + a then ?

Open up a the screen help window

windowlist

Ctrl + a then "

List the open windows and allow you to go through them

If your screen stops responding, try pressing "Ctrl + a then Ctrl + q" and "Ctrl + q". You may have accidentally frozen it yourself.