From f6c965af72cd219c42f1a3975d40bd87eeb82b40 Mon Sep 17 00:00:00 2001 From: Dirk Sarpe <dirk.sarpe@idiv.de> Date: Thu, 11 Mar 2021 14:55:17 +0000 Subject: [PATCH] update path where rstudio stores its data --- rstudio1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rstudio1.md b/rstudio1.md index 0c9a835..74eada2 100644 --- a/rstudio1.md +++ b/rstudio1.md @@ -65,7 +65,7 @@ The home directory is a good place for your scripts, which you hopefully have in a git repository already. RStudio stores several files like suspended sessions, graph history etc. in -`~/.rstudio`. This folder is purged every 90 days to remove "forgotten" +`~/.local/share/rstudio`. This folder is purged every 90 days to remove "forgotten" suspended sessions and reduce wasted space. R itself stores workspace objects in `.RData` of your current working directory if you end your session or call `save.image()` without further arguments. Please ensure that you do not save @@ -129,10 +129,10 @@ If you can not access the machine via ssh please [ask the GSU](mailto:it-support@idiv.de?subject=kill%20my%20rstudio%20session) to kill your session. Do not forget to include your username. -If you have problems to resume a old session and get the message `Error occurred during transmission` you might need to remove the old session data, which is located in the `~/.rstudio` folder. Usually it is sufficient to remove the sessions folder. The command via `ssh`: +If you have problems to resume a old session and get the message `Error occurred during transmission` you might need to remove the old session data, which is located in the `~/.local/share/rstudio` folder. Usually it is sufficient to remove the sessions folder. The command via `ssh`: ```bash -ssh ab12cdef@rstudio1.idiv.de 'rm -r ~/.rstudio/sessions/' +ssh ab12cdef@rstudio1.idiv.de 'rm -r ~/.local/share/rstudio/sessions/' ``` If you can not access the machine via ssh please [ask the -- GitLab