You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

SSHFS allows you to access SLAC Unix storage using SFTP.   You can mount a directory on rhel6-64 (like /nfs) on your local desktop or laptop.

 

CentOS 7 Installation:

yum install sshfs

this will install the fuse-sshfs RPM which comes from the EPEL software repository (Extra Packages for Enterprise Linux).
The fuse-sshfs dependencies, fuse and fuse-libs, come from the CentOS base software repository.

Usage:

mkdir ~/nfs
sshfs $USER@rhel6-64.slac.stanford.edu:/nfs ~/nfs

Make sure $USER is your SLAC Unix username.  If your local desktop or laptop username is different, replace $USER with your SLAC Unix username.
The above SSHFS command will mount rhel6-64.slac.stanford.edu:/nfs at your local mount point.  now you can access SLAC's /nfs/slac/... or /nfs/farm/... like this:

cd ~/nfs/slac
cd ~/nfs/farm

To unmount when you are finished:

cd
fusermount -u ~/nfs # For CentOS 7

 

 

  • No labels