-
Notifications
You must be signed in to change notification settings - Fork 0
4 Linux Shell
Zack Ramjan edited this page Oct 15, 2024
·
12 revisions
- Even with ondmand you will need to understand how linux commands work
- You will probably need to learn linux on your own as you increase your usage of HPC
- Tons of resources online, just google it.
- Ondemand Shell
srun -p quick -w compute146 -t 1:00:00 --pty bash -i
- Linux Desktop
- SSH (using a company laptop at work or with VPN)
- Using modules
module avail
module load VARI/slurmPretty
slurmnodez
R --version
module load bbc2/R/R-4.4.0
R --version
- Submitting jobs
#!/bin/bash
#SBATCH -n 1
#SBATCH -p quick
#SBATCH --job-name=zacks_job
#SBATCH --time=1:01:00
cd /varidata/researchtemp/hpctmp/your.name/hpc_workshop
gzip -v -d /varidata/researchtemp/hpctmp/hpc_workshop/mybigfile.dat.gz
- No actual Work should be done on the submit node!
- dont just leave your interactive jobs idling too long, especially on bigmem and gpu
- Connecting from home