SSHFS(Secure SHell FileSystem) – Securely Mount remote filesystem over ssh

0
812

Overview :

In Linux like operating system we can securely mount remote file system over ssh  protocol  using sshfs command. SSHFS stands fro Secure SHell FileSystem. SSHFS enable us to mount remote file system and interact with remote directories and files on a local machine.

On  the local computer where the SSHFS is mounted, the implementation makes use of the FUSE (File system in User space) kernel module. The practical effect of this is that the end user can seamlessly interact with  remote  files  being  securely served  over  SSH  just  as if they were local files on his/her computer. On the remote computer the SFTP subsystem of SSH is used.

Installation of SSHFS on CentOS 6.X / RHEL 6.X / Fedora

As sshfs package is not available in the default repositories, so first enable the epel repository and then use yum command to install sshfs .

# wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
# yum install sshfs

 

Installation of SSHFS on Ubuntu

$ sudo apt-get install sshfs

Mount the Remote File System using below command .

Syntax : # sshfs [user@]host:[dir] mountpoint

Example :

[root@mail11 ~]# sshfs root@mail9.nsitmail.com:/  /home/nextstep4it/

In the above command we are mounting  ” / ” file system of remote host(mail9.nsitmail.com) on local the folder (/home/nextstep4it). Verify the whether remote filesystem is mounted or not using command (df -hT)

sshfs-df

Permanently Mount Remote File system

When we mount remote filesystem using sshfs, and for some reasons if your local machine gets rebooted, then after reboot remote filesystem will not be available, so to permanently mount remote filesystem, add the below entries in the /etc/fstabfile.

root@mail9.nsitmail.com:/  /home/nextstep4it/   fuse defaults 0 0

Now run below command to reflect the changes of fstab file

# mount -a

To Umount the Remote File system, use Below command :

# umount /home/nextstep4it

OR

# fusermount -u mountpoint


SHARE

LEAVE A REPLY