Last modified: | March 19, 2025 |
---|
Please help me make this page better! Send recommendations to support-neuro@berkeley.edu.
You may mount data from the Neuro Cluster to your desktop, which is important if you want to run software that doesn’t exist on the Neuro Cluster. However, if you want me to install software on the Neuro Cluster, please don’t hesitate to email support-neuro@berkeley.edu to request it.
SSHFS is a program to access remote data securely. SSHFS readily available for Mac and linux. If you have a Windows OS, please contact me for documentation and assistance.
If you’re using a Mac, install both MacFUSE and SSHFS from from osxfuse.github.io.
If you haven’t done so already, enable 2-step authentication
Open a terminal window and create a local folder to mount data from the neuro cluster, for example:
mkdir /tmp/neurocluster-home
Mount the Neuro cluster directory via sshfs using the syntax:
sshfs -o idmap=user username@remote:/remote/directory /mount/point
For example,:
sshfs -o idmap=user sam@nx2.neuro.berkeley.edu:/home/jagust/sam /tmp/neurocluster-home
when you’re finished, unmount the local directory with the ‘fusermount -u’ command, for example:
fusermount -u /tmp/neurocluster-home