**Note - ** VPN is necessary for off campus access.
**__Connect to Perun__**
Please use a secure shell client to connect to ** perun.biochem.dal.ca**.
X2go and XPRA are also available.
The clients for X2go connection are available for download from **[[http://wiki.x2go.org/doku.php|X2go]]**.
X2go/XPRA access would be faster than X11
tunneling over secure shell connection when graphical user interfaces for Matlab or Maple, Plots using R etc are used from outside the University.
Please see the **[[https://www.mathstat.dal.ca/cluster/doku.php?id=x2go|X2go setup]]** before using X2go.
** Cluster-nx.mathstat.dal.ca ** should be replaced by ** perun.biochem.dal.ca**.
**__Use interactive queue__**
Interactive queues are retired. Please use perun.biochem.dal.ca for all interactive tasks.
**__Use batch queue__**
Batch jobs could be submitted like this \\
\\
''qsub -q '' \\
**__List running jobs in queues__**
| **Own jobs** || ''qstat'' |
| **All jobs** || ''qstat -u "*"'' |
| **Cluster load** || ''qstat -f'' |
**__Basic Submit Script Example__**
#!/bin/bash
#$ -S /bin/bash
. /etc/profile
#$ -o job_output
#$ -M
#$ -m be
cd
**__MPI job submission example__**
#!/bin/bash
#$ -S /bin/bash
. /etc/profile
#$ -o job_output
#$ -M
#$ -m be
#$ -pe openmpi
cd
mpirun -np
**__OpenMP job submission example__**
#!/bin/bash
#$ -S /bin/bash
. /etc/profile
#$ -o job_output
#$ -M
#$ -m be
#$ -pe threaded
export OMP_NUM_THREADS=
cd
**__Threaded job submission example__**
#!/bin/bash
#$ -S /bin/bash
. /etc/profile
#$ -o job_output
#$ -M
#$ -m be
#$ -pe threaded
cd
\\