Changes
Page history
Update slurm
authored
Mar 25, 2017
by
Matthieu Boileau
Hide whitespace changes
Inline
Side-by-side
slurm.md
View page @
43f03dd9
...
...
@@ -119,7 +119,9 @@ Then you can launch the application with `sbatch <name_of_the_script>`.
One way is to send the scripts out of the ssh session using this command
ssh user@host "nohup script1 > /dev/null 2>&1
&;
nohup script2; ..."
```
ssh user@host "nohup script1 > /dev/null 2>&1 &; nohup script2; ...
```
Note: Be careful, you can't use nohup in your ssh session. Why ? When you exit your ssh session, a SIGTERM signal is sent which will close all process with the user UID (Even background ones).
...
...
...
...