services:cluster:important
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
services:cluster:important [2025/02/07 15:14] – [Always specify the amount of memory your job needs in the jobfile] fix typos behrmj87 | services:cluster:important [2025/02/07 16:43] (current) – Add note on modules behrmj87 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Important notes on cluster usage ====== | ====== Important notes on cluster usage ====== | ||
+ | |||
+ | ==== ''/ | ||
+ | |||
+ | The ''/ | ||
+ | |||
==== Submit jobs from ''/ | ==== Submit jobs from ''/ | ||
Line 23: | Line 28: | ||
- | < | + | < |
- | Usable space below ''/ | + | Usable space below ''/ |
</ | </ | ||
+ | |||
+ | ==== SSH access ==== | ||
+ | |||
+ | The login node allows password-based login only from within the university network. We generally recommend SSH access with key files. To get your SSH key on the login node, when you are not at the university, you have two options: | ||
+ | |||
+ | - Use the VPN. | ||
+ | - Use an SSH proxy jump via login, | ||
+ | |||
+ | The latter is done via | ||
+ | |||
+ | <code bash> | ||
+ | ssh-copy-id \ | ||
+ | -i ~/ | ||
+ | -o ProxyJump=username@login.physik.fu-berlin.de \ | ||
+ | username@headnode.physik.fu-berlin.de | ||
+ | </ | ||
+ | |||
+ | Assuming a key file '' | ||
+ | |||
+ | ==== Modules ==== | ||
+ | |||
+ | Modules are a staple in the HPC world. They are a way to change your environment to include paths that are not normally in your binary (~PATH~) or library search paths (~LD_LIBRARY_PATH~) so that you can use a wider variety/ | ||
+ | |||
+ | < | ||
+ | These are the most important commands | ||
+ | #+BEGIN_SRC bash | ||
+ | # show available modules | ||
+ | module avail | ||
+ | # load a module | ||
+ | module load name_of_module | ||
+ | # e.g. module load gromacs/ | ||
+ | # | ||
+ | # unload a module (usually not necessary in a job script, but you can use | ||
+ | # modules interactively, | ||
+ | module unload name_of_module | ||
+ | </ | ||
+ | |||
+ | Somebody has to build the software. This is done by us and interested users, e.g. the GROMACS packages are mostly built by users in AG Netz. The software modules can be found in ~/net/opt~. If you want to contribute, let us know! | ||
+ | |||
+ |
services/cluster/important.1738941266.txt.gz · Last modified: 2025/02/07 15:14 by behrmj87