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/01 17:51] – Document moved from computing:department:windows:remotefiles allan | computing:department:storage:access_adfiles_remotely [2013/04/29 16:25] (current) – removed allan | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== How to access your Active Directory Files Remotely ====== | ||
- | |||
- | ===== Windows ===== | ||
- | |||
- | 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. | ||
- | |||
- | ===== 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:/ | ||
- | | ||
- | |||
- | |||