META TOPICPARENT |
name="WebHome" |
Initial things to do
- log into
at01.t2.rzg.mpg.de or dt01.t2.rzg.mpg.de
- call
save-password and enter you RZG password twice
Prepare your submit script
#!/bin/bash
# Job settings
#$ -S /bin/sh
#$ -e /afs/ipp/home/k/kolja/logs/errorOutput
#$ -o /afs/ipp/home/k/kolja/logs/standardOutput
#$ -M someone@mpp.mpg.de
#$ -m ea
#$ -N Mokka_SBelle_optimization
#$ -q long
date
. /afs/ipp-garching.mpg.de/mpp/ilc/software64/env.software.sh
cd /afs/ipp/home/k/kolja/ilc/belle_data
Mokka mokka.steer
This is a plain bash script with some additions. All lines starting with #$ are parameters for the batch farm. You must change them to something sensible. Especially the email address! Be sure that the environment is set correctly.
submit the job with qsub script_name.sh
Monitoring your jobs
- in the console use:
qstat -u username
- or graphically use:
qmon
be sure to forward you display by calling you ssh with the parameter -X
-- KoljaProthmann - 20 Feb 2009 |