...
To launch an Interactive job, we need to supply the necessary options to qsub. Let's launch a small Interactive job, with 1 CPU and 1gb of memory for 1 hour3 hours.
Code Block |
---|
qsub -I -S /bin/bash -l select=1:ncpus=1:mem=1gb -l walltime=3:00:00 |
...