Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • sc/RStudio-Docu
  • fs40gaho/RStudio-Docu
2 results
Show changes
Commits on Source (3)
......@@ -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
......