Difference between revisions of "Running scripts in the background"

From Dynamo
Jump to navigation Jump to search
Line 10: Line 10:
  
 
== Retrieving the PID of your process==
 
== Retrieving the PID of your process==
Use the <tt>pgrep</tt> command, followed by the command that you nohup-ed. For instance:
+
You can use the <tt>pgrep</tt> command, followed by the command that you nohup-ed. For instance:
  
 
  <tt>pgrep MATLAB</tt>
 
  <tt>pgrep MATLAB</tt>
  
to locate PIDs that carry a MATLAB process. Note that in your system, capital letters might not apply
+
to locate PIDs that carry a MATLAB process and that are ran by nohup. Note that in your system, capital letters might not apply.
 +
 
 +
More generally,
 +
<tt>ps -a</tt>
 +
will list all user jobs currently under execution.
  
 
=Running Matlab scripts=
 
=Running Matlab scripts=

Revision as of 19:53, 18 November 2020

This information refers to Linux and Mac operative systems.

The nohup command

The nohup command allows to run a job in the background, in a fashion that interruptions of the connection will not terminate the job. The terminal containing the job might get closed and the job will still carry on. In order to keep track of the PID (process identifier) assigned by the process to the command launched, remember to use the & at the end of the line that invokes nohup, this will force the system to show the PID after launching the job. This PID might be needed to interrupt the execution of the background job.

Killing a background process

Use the command kill -9 followed by the PID of the process that you want to kill.

kill -9 12657 

Retrieving the PID of your process

You can use the pgrep command, followed by the command that you nohup-ed. For instance:

pgrep MATLAB

to locate PIDs that carry a MATLAB process and that are ran by nohup. Note that in your system, capital letters might not apply.

More generally,

ps -a

will list all user jobs currently under execution.

Running Matlab scripts

This informations refers only to Matlab scripts defined by the user. For 'Dynamo' projects, see below.

With a license

If you want to run the script myTest.m through nohup, the advised syntax is:

nohup -nosplash matlab < myTest.m > output.txt & 

where

  • no splash inhibited the popup of the Matlab welcome window
  • output.txt is a text file that will catch the text that would be shown in the screen if the script would be ran directly (instead of through nohup).

With the standalone

You can replace matlab with dynamo, and use

nohup dynamo < myTest.m > output.txt & 

in a terminal where you have activated Dynamo previously.

Matlab scripts including Dynamo commands

Remember that you need to include a line that activates 'Dynamo' inside the script that you submit into nohup. This is not necessary if you use the standalone with nohup dynamo < myTest.m > output.txt &

Running projects in the background

'Dynamo' projects can be run directly by nohup. A project script myProject.exe can be ran by

nohup myProject.exe