...
Warning | ||
---|---|---|
EasyBuild requires no modules to be loaded ! Please execute:
|
Change the default tmp directory
Easybuild produces a lot of temporary content (logs, intermediate build files, etc)
The default /tmp
dir on the GW offers quite small capacity. Once tmp is full, system cannot work properly.
It is strongly recommended to change the default /tmp
to a directory in $ITMWORK
Code Block | ||||
---|---|---|---|---|
| ||||
tmpdir=$ITMWORK/tmp
export TMP=${tmpdir}
export TEMP=${tmpdir}
export TMPDIR=${tmpdir} |
Increasing the length of error/warning message
...