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/24 15:41] – rubin | 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 ===== | ||
- | |||
- | ==== Windows Share ==== | ||
- | |||
- | 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. | ||
- | |||
- | You should be able to connect to your user folder at '' | ||
- | or your group space at '' | ||
- | |||
- | For username, enter '' | ||
- | |||
- | === Troubleshooting === | ||
- | You must be connected to the physics wired network and be registered (go to MyPhys to do this). | ||
- | |||
- | Non-UMN Windows XP installs *may* need NTLMv2 auth policy set in gpedit.msc. | ||
- | |||
- | * Click on the Start menu and select Run... | ||
- | * Type gpedit.msc and click OK. | ||
- | * Navigate to '' | ||
- | * Double click on '' | ||
- | * Set the value to '' | ||
- | * Click the '' | ||
- | * Restart the computer. | ||
- | |||
- | ==== 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:/ | ||
- | | ||
- | |||
- | |||