Ten minutes: short orientation, then try-time, then questions
Quick checkpoint: does everyone have a shell prompt on Isambard 3?
We are going to cover three small things: where you can put files, how to get at pre-built software, and a shared list of commands you will run in a moment.
Three storage areas, three jobs — pick the right one before you write
| Variable | Quota | Purpose | Lifetime |
|---|---|---|---|
$HOME |
100 GiB | Shell config, scripts, submission, job logs | Kept until project end |
$PROJECTDIR |
20 TiB | Shared project material (collaborators) | Kept until project end |
$SCRATCHDIR |
5 TiB | Working data and job outputs | Purged after 60 days of no access |
None of these are backed up. Storage on BriCS is working storage — keep an off-system copy of anything you cannot afford to lose.
Rule of thumb: before writing anything, ask whether it belongs in home, project, or scratch.
Full details (paths, $LOCALDIR,
$PROJECTDIR_PUBLIC, quota checks): https://docs.isambard.ac.uk/user-documentation/information/system-storage/
Five minutes — helpers are circulating, raise a hand if anything is unclear
# Scratch quota
# (same form works for $HOME or $PROJECTDIR)
lfs quota -hp \
$(lfs project -d $SCRATCHDIR | awk '{print $1}') \
$SCRATCHDIR
# Preview the module system
module list
module reset
module list
module avail pythonStretch: pipe module avail through grep -i
to look for a tool you already use.
Quota form from the Isambard 3 storage docs — works against any of the three areas by substituting the variable.
Discussion
Questions? Comments? Anything you found interesting?