...
If working from outside the AgResearch local network, connect to AgR VPN
(or Inscrutable or Iramohio first: e.g. connect via a Terminal application:ssh inscrutable.agresearch.co.nz
)Once logged on, continue to connect to an eRI login node:
ssh username@agresearch.co.nz@login-0.eri.agresearch.co.nz
(orlogin-1
) enter your password if promptedList the contents of your sandbox project folder:
ls -la /agr/persist/projects/XXXX-abc_defghijklm
List the contents of your scratch folder:
ls -la /agr/scratch/projects/XXXX-abc_defghijklm
Change into the scratch location:
cd /agr/scratch/projects/XXXX-abc_defghijklm
Run
export PATH=/agr/persist/apps/miniconda/bin:$PATH
Run
conda init bash
Run
source ~/.bashrc
Start working…
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
While other datasets or projects might be visible, please do not attempt to modify them during this phase of data staging/migration. |
Installed Applications
Modules
module spider
to list the available applications as module.
Conda
Conda is installed but needs to be enabled:
Run
export PATH=/agr/persist/apps/miniconda/bin:$PATH
Run
conda init bash
Run
source ~/.bashrc
Singularity
Available as Apptainer and aliasing enabled, meaning both apptainer --version
and singularity --version
will work.
Copying data
scp can be used to copy data to/from the login node.
...