SSHFS for Mac

  1. Install OSXFuse and SSHFS from https://osxfuse.github.io (choose the stable release packages).
    1. You'll need to have admin access to the computer to install OSXFuse
    2. When you install OSXFuse, you'll need to allow the system extension. Click "OK" at this popup:
      SSHFS_Mac_1.png
    3. From the installer, click the button that says "Open Security & Privacy System Preferences":
      SSHFS_Mac_2.png
    4. In the Security & Privacy System Preference pane, click "Allow" to let your Mac load the system extension:
      SSHFS_Mac_3.png
  2. Open the Terminal on your Mac. It is usually located under Applications > Utilities and the icon looks like this:
    Terminal.png
  3. When you open your terminal, you'll be in your home folder. This is a good place to put your SSH mount. Run the following command to make a folder named tux in your home directory:
mkdir tux

4. Run the following command to mount your Tux home directory in your tux folder that you just created. Replace <<Username>> with your Tux username.

sshfs -o allow_other,defer_permissions <<Username>>@tux.cs.drexel.edu:/home/<<Username>>/ tux/

5. To disconnect from Tux, go to your home folder (cd ~ from the terminal) and type 

umount tux/