Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
language
linenumbersfalse
qsub -I -PIP PANDORA

remembering to replace PANDORA with your abbreviated project name, as specified in your RDMP. This command, by default, requests one core and 4 GB of memory. You can request more resources using the -l flag. For example:

Code Block
language
linenumbersfalse
qsub -I -PIP PANDORA -l select=1:ncpus=4:mem=16GB,walltime=4:00:00

...

Code Block
language
linenumbersfalse
[abcd1234@login2 ~]$ qsub -I -PIP PANDORA
qsub: waiting for job 1234567.pbsserver to start
qsub: job 1234567.pbsserver ready

[abcd1234@hpc055 ~]$

...

If you logged into Artemis with a connection to an X server, as described in the getting started section or via the graphical login node, you can open up programs with graphical user interfaces in the interactive session. We recommend doing this when your GUI program needs some compute power. To start an interactive session that can open GUI programs, use the following qsub command:

Code Block
language
linenumbersfalse
qsub -I -X -PIXP PANDORA

you can change the resource request using the -l flag, as described in the previous section.

...