Update home authored by van Vliet's avatar van Vliet
......@@ -130,12 +130,63 @@ Direct client download [putty](https://www.chiark.greenend.org.uk/~sgtatham/putt
#### A remote desktop
- x2go [x2g](https://wiki.x2go.org/doku.php)
- x2go
[x2g](https://wiki.x2go.org/doku.php)
Install the **X2Go** [client](https://code.x2go.org/releases/binary-win32/x2goclient/releases/4.1.2.0-2018.06.22/x2goclient-4.1.2.0-2018.06.22-setup.exe):
## Module environment
- List all available modules
```
module av
----------------------------------------------------------------------------------------------- /share/modulefiles ------------------------------------------------------------------------------------------------
BRAINimaging/fsl/fsleyes BRAINimaging/fsl/5.0.9 BRAINimaging/fsl/6.0.3 (D) library/cuda/9.1 mpi/mpich/3.3.2/gcc-8.2.1 singularity/3.4.2
BRAINimaging/fsl/fslview BRAINimaging/fsl/5.0.10 MATLAB/R2018b library/cuda/9.2 mpi/openmpi/3.1.5/gcc-8.2.1 singularity/3.5.1 (D)
BRAINimaging/fsl/5.0.4 BRAINimaging/fsl/5.0.11 MATLAB/R2019b (D) library/cuda/10.0 mpi/openmpi/4.0.2/gcc-8.2.1 system/hwloc/1.11.13/gcc-8.2.1
BRAINimaging/fsl/5.0.6 BRAINimaging/fsl/6.0.0 library/cuda/7.5 library/cuda/10.1 pmi/openpmix/2.2.3/gcc-8.2.1 system/hwloc/2.1.0/gcc-8.2.1
BRAINimaging/fsl/5.0.7 BRAINimaging/fsl/6.0.1 library/cuda/8.0 library/cuda/10.2 (D) pmi/openpmix/3.1.4/gcc-8.2.1 system/knem/1.1.3/gcc-8.2.1
BRAINimaging/fsl/5.0.8 BRAINimaging/fsl/6.0.2 library/cuda/9.0 library/openblas/0.3.7/gcc-8.2.1 pmi/openpmix/4.0.0/gcc-8.2.1
---------------------------------------------------------------------------------------- /share/software/easybuild/modules ----------------------------------------------------------------------------------------
all/EasyBuild/4.0.1 tools/EasyBuild/4.0.1
-------------------------------------------------------------------------------------- /usr/share/lmod/lmod/modulefiles/Core --------------------------------------------------------------------------------------
lmod settarg
Where:
D: Default Module
Use "module spider" to find all possible modules and extensions.
Use "module keyword key1 key2 ..." to search for all possible modules matching any of the "keys".
```
- load a module
```
module load mpi/openmpi/4.0.2/gcc-8.2.1
```
- show loaded modules
```
module li
Currently Loaded Modules:
1) mpi/openmpi/4.0.2/gcc-8.2.1
```
- Delete one module
```
module del mpi/openmpi/4.0.2/gcc-8.2.1
```
- Purge all modules
```
module purge
```
## Compiling programs
## Submitting jobs
......
......