19

Is there a GUI utility to mount remote filesystems over SSH (SSHFS)?

4 Answers4

26

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:

alt text

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/

Jorge Castro
  • 71,754
  • 3
    You can also mount it in Nautilus. Just hit CTRL+L and in the address bar type: ssh://server-ip/somepath/ – Javier Rivera Sep 23 '10 at 15:12
  • 1
    @JavierRivera I've read about that's only a wrapping on the file explorer. It's not the same than real filesystem integration. SSHFS is just what really works for that. But im not sure about GVFS. I will check it, thanks. – m3nda May 18 '15 at 03:11
  • This apparently connects as SFTP with no option for SSH in Ubuntu 15.04? – geilt Jul 13 '15 at 23:31
4

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
karel
  • 114,770
  • 1
    This is not the answer since the software you mentioned only do sftp and does not mount sshfs. (I don't downvote, but technically you have not answered the question) – Mehrad Mahmoudian Sep 02 '19 at 09:24
2

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.

1

Nautilus can do it: File-->Connect to a server

  • 1
    This is not a ssh filesystem integration. The goal of the sshfs is that you can access files with the usual way, ie: /myserver and not ssh://blablabla. – m3nda May 18 '15 at 03:12