Lmod

Lmod is a module system that is used to load additional software on Klone compute nodes.

Lmod is run with the command module. This command is only available on compute nodes and will not run on the login node, so you need to launch a SLURM job on Klone to run the command.

Show help for Lmod

module help

Checking all available modules

module avail

Load a module

module load <module_name> # To load the default version of a module
module load <module_name>/<version> # To load a specific version of a module

If the version is not specified, Lmod will load a default version marked with D.

Show help for a module

module help <module>

List loaded modules

module list

Unload a module

module unload <module>

Unload all modules

module purge

Show module description

module whatis <module>