Campuses:
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
computing:department:storage:access_adfiles_remotely [2012/04/05 19:10] – 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 ====== | ||
- | |||
- | You can only access our Windows file server directly (using normal Microsoft file sharing) from within the Tate Lab network. If connecting from " | ||
- | |||
- | You can use ssh to access your AD home directory, or other AD drives such as research data. | ||
- | |||
- | ===== Windows ===== | ||
- | |||
- | Use [[http:// | ||
- | |||
- | Alternatively you could try mapping a drive letter using either [[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:/ | ||
- | | ||
- | |||
- | |||