Never run heavy computations on the Login Node.
The login node i.e. "hpc.manit.ac.in" is for submitting jobs only. If you run a heavy simulation there, either your job will be killed automatically or account may be banned from login to the hpc cluster.
🔍 Useful for running small experiments
Eg:
$ qsub -I -l select=1:ncpus=2:mem=4gb -l walltime=01:00:00
Once resources are allocated, you will receive:
qsub: job 123.server ready
To list available software:
$ module avail
To load software:
$ module load software_name
Eg.
$ module load apps/anaconda3
To check loaded modules:
$ module list
Directive Meaning
#PBS -N Job name
#PBS -q Queue name
#PBS -l select= Resources (nodes, CPUs, memory)
#PBS -l walltime= Maximum job runtime
#PBS -o Output file
#PBS -e Error file
$PBS_O_WORKDIR Directory from where job was submitted
Code Meaning
Q Queued
R Running
C Completed
E Held
H Exiting
Login to HPC
Create working directory
Upload code/data
Test interactively
Create PBS script
Submit job using qsub
Monitor using qstat
Download results