Is there a GUI utility to mount remote filesystems over SSH (SSHFS)?
4 Answers
It's not clear to me if you are strictly bound to using sshfs, but by default the GVFS in GNOME supports SSH connections. In the file manager go to File -> Connect to server:

This will mount the remote SSH server in a folder you can access from the file manager. If you need to access the mount in the command line it's in .gvfs.
You can also mount it in Nautilus. Just hit CTRL+L and in the address bar type: ssh://server-ip/somepath/
- 73,717
Gigolo
Gigolo is a front-end to easily manage connections to remote filesystems using GIO/GVfs. It allows you to quickly connect/mount a remote filesystem and manage bookmarks of such.
To install Gigolo in all currently supported versions of Ubuntu open the terminal and type:
sudo apt install gigolo
- 122,292
- 133
- 301
- 332
- 4,544
If you just need to access the remote filesystem, you should be able to go to sftp://hostname.example.com in your file browser without having to mount it.
- 9,286