-
Notifications
You must be signed in to change notification settings - Fork 11
Using Screen
Steven E. Wheeler edited this page Aug 7, 2018
·
3 revisions
Although AARON can be stopped and restarted at any time (as long as it is 'sleeping'), AARON is designed to run continuously until all jobs are complete. In this way, AARON can catch and address errors as soon as they occur.
As such, it is strongly suggested that you run AARON using screen or a similar utility (e.g. Tmux) to ensure that AARON does not terminate when you log off of the HPC cluster.
To start a detachable screen shell named NAME:
screen -S NAME
You would then run AARON within this screen
Aaron Exmaple1.in
You can then 'detach' this screen with
Cntrl-a d
This screen be be reattached via
screen -r NAME
Once AARON is finished, simply 'exit' the screen.
Typically, you would launch one screen for each AARON job running
screen -S Example1 Cntrl-a d screen -S Example2 etc.