Strumenti Utente

Strumenti Sito


calcoloscientifico:userguide:sshfs

SSHFS

SSHFS (SSH Filesystem) is a filesystem client to mount and interact with directories and files located on a remote server or workstation over a normal ssh connection. The client interacts with the remote file system via the SSH File Transfer Protocol (SFTP), a network protocol providing file access, file transfer, and file management functionality over any reliable data stream that was designed as an extension of the Secure Shell protocol (SSH) version 2.0.

SSHFS for Linux

Mount point:

sudo mkdir -p </local/mount/point>
sudo chown <local_username>:<local_group> </local/mount/point>

Mount:

sshfs <hpc_username>@login.hpc.unipr.it:[/hpc/home/<hpc_username>] </local/mount/point>

Umount:

fusermount -u </local/mount/point>

SSHFS for MacOS

Mount point:

sudo mkdir -p </local/mount/point>
sudo chown <local_username>:<local_group> </local/mount/point>

Mount:

sshfs <hpc_username>@login.hpc.unipr.it:[/hpc/home/<hpc_username>] </local/mount/point>

Umount:

umount </local/mount/point>

SSHFS for Windows

SSHFS for Windows

Installation:

calcoloscientifico/userguide/sshfs.txt · Ultima modifica: 06/10/2023 17:28 da fabio.spataro