Skip to content
Prev 26385 / 398503 Next

Running R on a Local Area Network

Henri Tourneur wrote:
We are running R completely from a server (all machines, both server and 
clients, are NT-based, i.e. WinNT, WinXP), and it works without any 
problems.

But you should consider the following points:

- Use a sensible network share (i.e. regularly it's not a good idea to 
share the whole drive).
- Don't use any blanks in the paths. (e.g., we have installed R at the 
following UNC path: "\\server\software\R")
- Assign a drive letter to the UNC path at the client side, e.g. with a 
startup script that includes the line:
  net use s: \\server\software
So you can create a shortcut that starts R at the following location: 
s:\R\bin\RGui.exe

Uwe Ligges