How to mount a remote directory over SSH on Linux

Last updated on November 25, 2020 by Dan Nanni

Suppose you would like to mount a remote directory locally. However, you only have SSH access to the host where the remote directory resides, and there is no network file system (e.g., NFS, Samba) available to export the directory with. In this case, you can actually mount a remote directory over SSH, and access the directory via file system interfaces.

Mounting a remote folder over SSH is handled by FUSE kernel module, which allows one to create a virtual file system in user space. sshfs and gvfs are two such virtual file systems built on FUSE that allow one to mount a remote file system over SSH. In this post, I will show how to mount a remote directory over SSH with sshfs and gvfs.

Install sshfs on Linux

To install sshfs on Ubuntu or Debian:

$ sudo apt-get install sshfs

To install sshfs on CentOS, RHEL or Fedora, first enable EPEL repository on your system, and then run the following.

$ sudo yum install sshfs

Mount a Remote Directory over SSH with sshfs

If you want to use sshfs as a non-root user, you need to add the user to a group called fuse. That is:

$ sudo usermod -a -G fuse <user_name>

Run the following to make group membership change activated.

$ exec su -l $USER

Finally, you can mount a remote directory using sshfs as follows.

$ sshfs my_user@remote_host:/path/to/directory <local_mount_point>

The above command will ask you for SSH password for the remote host. Once you enter the password, a remote directory will become available at the local mount point. If you want to set up passwordless mounting, all you have to do is to set up passwordless ssh login to my_user@remote_host.

To unmount an ssh-mounted directory:

$ fusermount -u <local_mount_point>

If you would like to automatically mount over ssh upon boot, set up passwordless ssh login, and append the following in /etc/fstab.

$ sudo vi /etc/fstab
sshfs#my_user@remote_host:/path/to/directory <local_mount_point> fuse user 0 0

Mount a Remote Directory Over SSH on GNOME Desktop

If you are using GNOME desktop, mounting over SSH is quite easy. Nautilus, the official file manager for GNOME desktop, already supports mounting over SSH. Underneath it, Nautilus uses gvfs virtual file system which can expose gvfs mounts over SSH using FUSE.

To mount a remote folder over SSH with Nautilus, go to FileConnect to Server on Nautilus. Then type in the remote SSH server information, remote folder path, as well as ssh login credentials as follows.

Once you click on Connect button, a local mount point will automatically be generated, and a remote directory will be mounted there via gvfs. To check a gvfs mount point, run the following.

$ mount
gvfsd-fuse on /run/user/xmodulo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=xmodulo)
$ ls /run/user/xmodulo/gvfs
sftp:host=remote_host.com,user=xmodulo

In this example, the local gvfs mount point is as follows. You can access a remote directory either via command-line at this mount point, or through Nautilus GUI.

/run/user/xmodulo/gvfs/sftp:host=remote_host.com,user=xmodulo/

Support Xmodulo

This website is made possible by minimal ads and your gracious donation via PayPal or credit card

Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.

Xmodulo © 2021 ‒ AboutWrite for UsFeed ‒ Powered by DigitalOcean