Campuses:
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
computing:department:storage:access_adfiles_remotely [2011/08/02 11:09] – allan | computing:department:storage:access_adfiles_remotely [2013/04/29 16:25] (current) – removed allan | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== How to access your Physics Active Directory Files Remotely ====== | ||
- | |||
- | ===== Windows ===== | ||
- | |||
- | You can only access our Windows file server directly (using normal Microsoft file sharing) from within the Tate Lab network. If connecting from outside (including wireless), you need to connect using ssh. | ||
- | |||
- | Use [[http:// | ||
- | |||
- | Alternatively you could try [[http:// | ||
- | |||
- | ===== Mac OSX ===== | ||
- | |||
- | * First install [[http:// | ||
- | * Then download sshfs for your version of OS X ([[http:// | ||
- | * Open a terminal and do the following to install [[http:// | ||
- | |||
- | mv ~/ | ||
- | chmod a+x ~/sshfs | ||
- | |||
- | Then, to make a folder " | ||
- | |||
- | mkdir -p ~/ | ||
- | ~/sshfs -o uid=$UID youx500internetID@spa-home.spa.umn.edu:/ | ||
- | | ||
- | The key is -o uid=$UID to map the username from your AD account to your local mac user, without this the files will not be accessible. | ||
- | |||
- | There' | ||
- | ===== From Linux ===== | ||
- | |||
- | From most linux distributions (including departmental linux systems) you can simply run: | ||
- | mkdir targetdir | ||
- | sshfs -o uid=$UID youx500internetID@spa-home.spa.umn.edu:/ | ||
- | | ||
- | |||
- | |||