In this page:
Overview
As you work in RStudio, occasionally you might need to reset RStudio's state. This is useful if, for example, your RStudio cache is corrupted and you can't start an RStudio instance.
RStudio and R store users' session information in several directories. Renaming those directories will reset the state of RStudio and often let you start RStudio again. The table below lists the directories and information stored by them. It is often sufficient to rename only the first 2 directories in the table (~/.rstudio and ~/.local/share/rstudio) in order to fix RStudio's corrupted cache.
Location of the directories | Information stored |
---|---|
~/.rstudio | All user settings, open files and tabs, as well as active and suspended sessions. This folder was automatically created if you have used RStudio version 1.3 or older in the past. In IDAS, that corresponds to R version 3.6.1. |
~/.local/share/rstudio | All open files and tabs, as well as active and suspended sessions. This folder was automatically created if you have used RStudio version 1.4 or later. In IDAS, that corresponds to R versions 4.0.2 and 4.1.1. |
~/.config/rstudio | All user settings (Global Options). This folder was automatically created if you have used RStudio version 1.4 or later. In IDAS, that corresponds to R versions 4.0.2 and 4.1.1. |
.RData (can be in various folders, depending on where you saved your .RData files in the past) | R data and objects |
.Rhistory (can be in various folders, depending on the location where you started RStudio in the past) | R command history |
Resetting RStudio
1. Log in to IDAS from https://notebooks.hpc.uiowa.edu/.
2. Start a Terminal session in IDAS. There are 2 ways to do this:
a) If you spawned an RStudio instance in IDAS: Click the "Terminal" tab, which is next to the "Console" tab in RStudio.
b) If you spawned a Jupyter Hub instance in IDAS:
- After logging in to IDAS from https://notebooks.hpc.uiowa.edu/, you will be at the Jupyter Hub tree page.
- In the upper right corner of the page, click New / Terminal to start a bash session:
3. In Terminal, use the "mv" Linux command to rename the necessary directories:
mv ~/.rstudio ~/.rstudio-old
mv ~/.config/rstudio ~/.config/rstudio-old
mv ~/.local/share/rstudio ~/.local/share/rstudio-old
mv .RData .RData-old
mv .Rhistory .Rhistory-old
Contact
If you have any questions or comments, please contact research-computing@uiowa.edu.