4.1 Restarting RStudio Session

4.1.1 Within RStudio

Session > Restart R (Ctrl + Shift + F10)

4.1.2 From the terminal

When RStudio locks up and you need to restart it. Note you will need to be on the VPN if you are not on the VT wireless.

  1. Open a terminal
  2. ssh into lightfoot: ssh pid@lightfoot.vbi.vt.edu
  3. Look for your rstudio process by runing: ps aux | grep <YOUR PID> | grep rstudio
  1. Note which process rstudio is running on by looking at the 2nd column in the output (next to your pid), in this example the process number is 163630
  2. Stop the process: kill -9 <Process number here>