https://docs.google.com/document/d/1bMqhykatkkATmWkqIdaXqQRv8GnfUOX9qSdDuShfmCI/
Get access to VSC. For full information: https://vlaams-supercomputing-centrum-vscdocumentation.readthedocs-hosted.com/en/latest/index.html
Manage account and groups through: https://account.vscentrum.be/django/
#login to the VSC
#for genius
ssh [email protected]
#or
ssh [email protected]
#or
ssh [email protected]
#genius login nodes for visualization:
ssh -X [email protected]
#or
ssh -X [email protected]
#give a list of available modules
module av
#load a module
module load modulename
module load modulename/moduleversion
#show a list of all loaded modules
module list
#unload a module
module unload modulename
#unload all modules at once
module purge
#show the help
module help
PBS script header:
#!/bin/bash -l
#PBS -l walltime=1:00:00
#PBS -l pmem=5gb
#PBS -l nodes=1:ppn=2
#PBS -M [email protected]
#PBS -m abe
#PBS -N jobname
#PBS -A lp_creditaccount
module load modulename modulename2
#submit a job
qsub job.pbs
#show system jobs
showq
#show all requested
qstat
#show the estimated start for a job
showstart jobID
#check the status of a job
checkjob jobID