Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
# Example: mount all SLAC NFS on your desktop/laptop

mkdir -p ~/sshfs/nfs
sshfs $USER@dtn01.slac.stanford.edu:/nfs ~/sshfs/nfs

# Example: mount all SLAC AFS on your desktop/laptop

mkdir -p ~/sshfs/afs/slac
sshfs $USER@dtn01.slac.stanford.edu:/afs/slac.stanford.edu ~/sshfs/afs/slac

...

To unmount when you are finished:

Code Block
cd                                     # move outside the mount point
/bin/fusermount -u ~/sshfs/nfs         # CentOS 7
/sbin/umount ~/sshfs/nfs               # MacOS

cd                                     # move outside the mount point
/bin/fusermount -u ~/sshfs/afs/slac    # CentOS 7
/sbin/umount ~/sshfs/afs/slac          # MacOS

Additional Notes:

  • For RHEL 6 and CentOS 6, you may need to add your username to the local fuse group in the /etc/group file, or else use sudo with the sshfs and fusermount commands.
  • If you use SSHFS to mount remote SLAC AFS space, be aware that the AFS token you get during authentication lasts for 25 hours.

...