Submitting Jobs
Requirements for submitting jobs
- have a valid token (verify with tokens), otherwise obtain a new one (klog)
- ensure that in your .[t]cshrc or .zshrc no commands are executed that need a terminal (tty) (users have often a stty command in their startup scripts)
- you are within batch if the env variable JOB_NAME is set or if the env variable ENVIRONMENT is set to BATCH
Submitting a job
- specify what resources you need (-l option) and what script should be executed
qsub -l t=1:00:00 job_script
- in the simplest case the job script contains 1 line, the name of the executable
- many more options availabe
- alternatively use the graphical interface to submit jobs
qmon &