Debian SSH – SFTP Connection via Gigolo on Debian 10 Buster

debiansftpssh

Trying here to establish sftp connection via Gigolo on Debian 10 "Buster" with Gigolo application, but when connecting at sftp://user@192.168.41.72, for example, receives here Location is not mountable error message.

Already installed gvfs-fuse package, created fuse group and added user in it, before trying to stablish sftp connection without success.

Any idea of how to connect it?

Best Answer

Just managed here on how to do it, as follows:

a) It's install sshfs package, via:

$ sudo apt install sshfs

b) Add username in fuse group, via:

$ gpasswd -a username fuse

c) If error message is displayed, create group before it:

$ sudo groupadd fuse

d) Then install gvfs-backends package:

$ sudo apt install gvfs-backends

e) Go in Edit tab, Preferences option, then enter preffered File Manager, which may be thunar that's installed by default.

f) Finally enter ssh server info and connect it.

Related Question