Header left.png

Remote Access for Z Drives

From Systems Group
Revision as of 20:16, 14 April 2020 by Aaronolah (Talk | contribs)

Jump to: navigation, search

In progress

Windows

  1. Connect to the CS VPN. Instructions on doing so can be found here.
  2. Open Windows File Explorer either by right clicking the “Start” button and selecting “File Explorer” or by pressing ⊞WIN + E
  3. Right click “This PC” and select “Map network drive…”
    Windows-Z Drive-Step 1.png

  4. Type the network path (folder) of your drive, select “Connect using different credentials,” and click “Finish.” If you don’t know the network path of your drive, see the table below. Be sure to replace “username” with your CS username:
    Windows-Z Drive-Step 2.png

  5. Enter your CS account credentials prepended by “cs\” and click “OK”
    Windows-Z Drive-Step 3.png

  6. Your Z drive should now be connected. Note that it will not be available if you disconnect from the VPN.
    Windows-Z Drive-Step 4.png

Linux

CIFS

Note that this method will require super user privileges. If you are not a privileged user, see SSHFS below.

  1. Install the cifs-utils package from your distribution's package manager
  2. Create a directory to mount the share over:
    $ sudo mkdir /media/zdrive
  3. Mount the share using your network path from the table below. For example:
    $ sudo mount -t cifs -o username=username,uid=$(id -u) //cifs-dgs.cs.odu.edu/Undergrad/username /media/zdrive
  4. To unmount the share:
    $ sudo umount /media/zdrive

SSHFS

  1. Install sshfs from your distribution's package manager
  2. Create a directory to mount the share over:
    $ mkdir ~/zdrive
  3. Mount the share; rather than use a network path, SSHFS uses a server followed by the directory's path on that server. For example:
    $ sshfs username@linux.cs.odu.edu:/home/username ~/zdrive
  4. To unmount the share:
    $ fusermount -u ~/zdrive

MacOS

  1. From the Go menu, select "Connect to Server"
  2. Type in your unix network path from the table below prepended by smb:For example:
    $ smb://cifs-dgs.cs.odu.edu/Undergrad/username

Network paths

Account type Windows network path Unix network path (cifs)
Undergraduate \\cifs-dgs.cs.odu.edu\Undergrad\username //cifs-dgs.cs.odu.edu/Undergrad/username
Graduate \\cifs-ecs.cs.odu.edu\Grad\username //cifs-ecs.cs.odu.edu/Grad/username
Staff \\cifs-dgs.cs.odu.edu\Staff\username //cifs-dgs.cs.odu.edu/Staff/username
Faculty \\cifs-ecs.cs.odu.edu\Faculty\username //cifs-ecs.cs.odu.edu/Faculty/username

Be sure to replace "username" with your computer science username.