Update FAQ authored by Villerius's avatar Villerius
...@@ -51,6 +51,12 @@ The load the R module version you want to use. ...@@ -51,6 +51,12 @@ The load the R module version you want to use.
`module load R/3.1.1` `module load R/3.1.1`
**Howto set your own R library location**
Create a writable R directory in your /exports directory.
set the environment variable R_LIBS=/to/your/created/R/path
Now you can use this path for your own library's.
To permenently set this variable edit your ~/.bashrc file and add
export R_LIBS=/to/your/created/R/path
**Can I restrict java to a fixed number of cpu's?** **Can I restrict java to a fixed number of cpu's?**
* Yes, java -XX:ParallelGCThreads=1 (set 1 to the number of cpu you want) * Yes, java -XX:ParallelGCThreads=1 (set 1 to the number of cpu you want)
... ...
......