Newer
Older
## Shells on Clusters
The table shows which shells are supported on IT4Innovations clusters.
| Cluster Name | bash | tcsh | zsh | ksh |
| --------------- | ---- | ---- | --- | --- |
| Anselm Cluster | yes | yes | yes | yes |
| Salomon Cluster | yes | yes | yes | yes |
!!! info
BASH is the default shell. Should you need a different shell write an email to support@it4i.cz.
## Environment Customization
After logging in, you may want to configure the environment. Write your preferred path definitions, aliases, functions and module loads in the .bashrc file
```console
# ./bashrc

Lukáš Krupčík
committed
# users compilation path
export MODULEPATH=${MODULEPATH}:/home/$USER/.local/easybuild/modules/all
# User specific aliases and functions
alias qs='qstat -a'

Lukáš Krupčík
committed
# load default intel compilator !!! is not recommended !!!
ml intel
# Display information to standard output - only in interactive ssh session
if [ -n "$SSH_TTY" ]
then

Lukáš Krupčík
committed
ml # Display loaded modules
Do not run commands outputting to standard output (echo, module list, etc) in .bashrc for non-interactive SSH sessions. It breaks fundamental functionality (SCP, PBS) of your account! Take care for SSH session interactivity for such commands as stated in the previous example.

Lukáš Krupčík
committed
In order to configure your shell for running particular application on clusters we use Module package interface.
Application modules on clusters are built using [EasyBuild][1]. The modules are divided into the following structure:
base: Default module class
bio: Bioinformatics, biology and biomedical
cae: Computer Aided Engineering (incl. CFD)
chem: Chemistry, Computational Chemistry and Quantum Chemistry
compiler: Compilers
data: Data management & processing tools
debugger: Debuggers
devel: Development tools
geo: Earth Sciences
ide: Integrated Development Environments (e.g. editors)
lang: Languages and programming aids
lib: General purpose libraries
math: High-level mathematical software
mpi: MPI stacks
numlib: Numerical Libraries
perf: Performance tools
phys: Physics and physical systems simulations
system: System utilities (e.g. highly depending on system OS and hardware)
toolchain: EasyBuild toolchains
tools: General purpose tools
vis: Visualization, plotting, documentation and typesetting

Lukáš Krupčík
committed
OS: singularity image
python: python packages
```
!!! note
The modules set up the application paths, library paths and environment variables for running particular application.
The modules may be loaded, unloaded and switched, according to momentary needs. For details see [lmod][2].