Filesystems

Home Directories

Home directories have 50GB of storage. Additionally, home directories are shared across nodes and have a path as follows:

/home/usd.local/user.name

###Home directories can also be called by their environmental variable:

$HOME

Group Home Directories

Group home directories have 5TB of storage. Additionally, home directories are shared across nodes and have a path as follows:

/home/smith-lab
    /shared (read/write permissions for all group members)

Scratch

Slurm creates /scratch/job_$SLURM_JOB_ID when your job is running. If you want to modify or use this output, you could include something like this in your job script:

SCRATCH="/scratch/job_$SLURM_JOB_ID"
cp $HOME/workfile.txt $SCRATCH
cd $SCRATCH

# run commands, do things

cp resultfile.txt $HOME

Last updated