For a quick / one-time use, consider using the SFTP client built in many file managers (Caja has one) by opening : sftp://sshServer/path/to/remote/dir
ssh -o Compression=no,auto_cachebecomes (4th /etc/fstab field) :
Compression=no,auto_cache
It _may_ be possible to specify these settings in ~/.ssh/config for the corresponding host
Which gives :stuart@sshServer:/path/to/remote/dir /mount/point fuse.sshfs cipher=chacha20-poly1305@openssh.com,compression=no,auto_cache,noauto,user,default_permissions,uid=1000,gid=1000,noatime 0 0
umount: /mount/point: Permission denied
read: Connection reset by peerIn such situation, add the debug and sshfs_debug options to increase verbosity (source).
#!/usr/bin/env bash sshServer='mySshServer' # full details in ~/.ssh/config sshRemoteDir='/path/to/remote/dir' mountPoint='/mount/point' case "$1" in m) mount | grep -q "$mountPoint" && { echo 'Already mounted'; exit 1; } || sshfs -o idmap=user "$sshServer":"$sshRemoteDir" "$mountPoint" ;; u) mount | grep -q "$mountPoint" || { echo 'Not mounted'; exit 1; } && fusermount -u "$mountPoint" ;; *) echo 'wut?' exit 1 ;; esac
command-line line 0: Bad SSH2 cipher spec 'arcfour'. ==> has been disabled by default in recent versions of SSH. man -P 'less -p encryption' ssh_config https://wiki.csnu.org/index.php/SSH_ciphers_speed_comparison man -P 'less -p ciphers' ssh_config