SSHFS - jniedzie/SVJanalysis_wiki GitHub Wiki
You can use SSHFS to navigate through you files on the T3 you can use sshfs
.
First install sshfs
(this depends on your OS):
- For Linux:
sudo apt-get install sshfs
- For MacOS: Download and install the 2 packages on this page: https://osxfuse.github.io/. You will have to allow the extension to run. This can be painful on old MacOS version.
Then create a folder somewhere on your laptop where you want to access the T3, e.g.:
mkdir ~/t3work
And then mount the T3 /work
folder in this folder (replace <username>
by your T3 username):
sudo sshfs -o allow_other <username>@t3ui01.psi.ch:/work/<username>/ ~/t3work
You can mount any folder on the T3 that is under /work
and /t3home
by changing the path to the T3 that you mount. You MUST NOT mount the storage element!
Now you can open the folder on ~/t3work
directly on your laptop (using your usual file explorer, e.g. Finder on MacOS).
Interrupting the internet connection of the laptop can mess up with sshfs
. To avoid issues, you can unmount the T3:
sudo fusermount -u ~/t3work