RStudio Server on Ubuntu

A short description of the post.

Rodney Dyer https://dyerlab.org (Center for Environmental Studies)https://ces.vcu.edu
2019-03-08

Ubuntu server is a nice platform for server-related activities. Here is a short tutorial of how I updated my most current version to the latest available by rstudio.org. Here is how I got it going.

If this is your first install, you need to grab the gdebi stuff

sudo apt-get install gdebi-core 

Next download the latest deb from rstudio. I typically like to try out the preview release, often stable enough to get what you want done while at the same time highlighting the latest features. When writing, it was the 1.2.1321 version.

wget https://s3.amazonaws.com/rstudio-ide-build/server/trusty/amd64/rstudio-server-1.2.1321-amd64.deb

Make sure to check the md5sum!

If you already have it running, stop it with

sudo rstudio-server stop

then install the new version

sudo gdebi rstudio-server-1.2.1321-amd64.deb 

This went out and grabbed some other libraries and installed everything for me then turned it back on. Since I had it already installed, that was the end of it. If this is the first time you are installing it, you can configure it following the installation guide here.

Richmond, Virginia
 

Citation

For attribution, please cite this work as

Dyer (2019, March 8). The Dyer Laboratory: RStudio Server on Ubuntu. Retrieved from https://dyerlab.github.io/DLabWebsite/posts/2019-03-08-rstudio-server-on-ubuntu/

BibTeX citation

@misc{dyer2019rstudio,
  author = {Dyer, Rodney},
  title = {The Dyer Laboratory: RStudio Server on Ubuntu},
  url = {https://dyerlab.github.io/DLabWebsite/posts/2019-03-08-rstudio-server-on-ubuntu/},
  year = {2019}
}