Redhat Enterprise Linux securely mount remote Linux / UNIX directory or file system using SSHFS

by Vivek Gite on May 9, 2007 · 13 comments

You can easily mount remote server file system or your own home directory using special sshfs and fuse tools.

FUSE - Filesystem in Userspace

FUSE is a Linux kernel module also available for FreeBSD, OpenSolaris and Mac OS X that allows non-privileged users to create their own file systems without the need to write any kernel code. This is achieved by running the file system code in user space, while the FUSE module only provides a "bridge" to the actual kernel interfaces. FUSE was officially merged into the mainstream Linux kernel tree in kernel version 2.6.14.

You need to use SSHFS to access to a remote filesystem through SSH or even you can use Gmail account to store files.

Following instructions are tested on CentOS, Fedora Core and RHEL 4/5 only. But instructions should work with any other Linux distro without a problem.

Step # 1: Download and Install FUSE

Visit fuse home page and download latest source code tar ball. Use wget command to download fuse package:
# wget http://superb-west.dl.sourceforge.net/sourceforge/fuse/fuse-2.6.5.tar.gz
Untar source code:
# tar -zxvf fuse-2.6.5.tar.gz
Compile and Install fuse:
# cd fuse-2.6.5
# ./configure
# make
# make install

Step # 2: Configure Fuse shared libraries loading

You need to configure dynamic linker run time bindings using ldconfig command so that sshfs command can load shared libraries such as libfuse.so.2:
# vi /etc/ld.so.conf.d/fuse.conf
Append following path:
/usr/local/lib
Run ldconfig:
# ldconfig

Step # 3: Install sshfs

Now fuse is loaded and ready to use. Now you need sshfs to access and mount file system using ssh. Visit sshfs home page and download latest source code tar ball. Use wget command to download fuse package:
# wget http://easynews.dl.sourceforge.net/sourceforge/fuse/sshfs-fuse-1.7.tar.gz
Untar source code:
# tar -zxvf sshfs-fuse-1.7.tar.gz
Compile and Install fuse:
# cd sshfs-fuse-1.7
# ./configure
# make
# make install

Mounting your remote filesystem

Now you have working setup, all you need to do is mount a filesystem under Linux. First create a mount point:
# mkdir /mnt/remote
Now mount a remote server filesystem using sshfs command:
# sshfs vivek@rock.nixcraft.in: /mnt/remote
Where,

  • sshfs : SSHFS is a command name
  • vivek@rock.nixcraft.in: - vivek is ssh username and rock.nixcraft.in is my remote ssh server.
  • /mnt/remote : a local mount point

When promoted supply vivek (ssh user) password. Make sure you replace username and hostname as per your requirements.

Now you can access your filesystem securely using Internet or your LAN/WAN:
# cd /mnt/remote
# ls
# cp -a /ftpdata . &

To unmount file system just type:
# fusermount -u /mnt/remote
or
# umount /mnt/remote

Further readings:

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 13 comments… read them below or add one }

1 Ritesh Raj Sarraf May 10, 2007

I didn’t know that RedHat/CentOS didn’t include Fuse/SSHFS.

In Debian, we do things simply as:
`apt-get install sshfs fuse-utils`

sshfs host:/mount/point /mount/point

Ritehs

Reply

2 Devin May 10, 2007

Another option is to install fuse RPMs via the ATrpms repository:

http://atrpms.net/

Then you can install the fuse-sshfs RPM from Fedora Core 6:

ftp://mirror.switch.ch/mirror/fedora/linux/extras/6/i386/fuse-sshfs-1.7-2.fc6.i386.rpm

Reply

3 Komi May 14, 2007

sshfs is nice, but I experienced problems when working with cvs on a mounted filesystem over sshfs. CVS just refused to work with something like “unable to get working directory” or something similar.

Reply

4 Justin June 19, 2007

what is the recommended way for this to operate in true user (aka w/o root permissions) or autofs type mode? I’d rather not suid fusermount

Reply

5 venkatakrishnan.p January 23, 2008

it is very good but i want more detail to configure
in redhat 5 edition ……………

Reply

6 vivek January 23, 2008

venkatakrishnan,

This is more than sufficient to install and use the sshfs. Do you have any problem?

Reply

7 taco January 21, 2009

I am unable to read the files from an apache cgi script. That’d be great if I could… If I run the script via ssh, I can read the mounted files. If I run the script via a web browser, it’s a no go.

Reply

8 durba July 31, 2009

This is really helpful. But I cant view the files of my mounted directory unless I log in as root. How can I get rid of this problem? Any help will be appreciated

Reply

9 domidc November 20, 2009

At step 3 when execute ./configure I get this error:
configure: error: Package requirements (fuse >= 2.2 glib-2.0) were not met.
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Somehow the dynamic linking failed. Anybody knows how to solve this?

Reply

10 Balamurugan May 5, 2011

Hi,

Even I faced the same problem. Downloading “glib-2.0″ and installing it would do the needful. Mail to me if you need some detailed explanation.

Balamurugan.

Reply

11 Dislo Aasi August 15, 2010

I kept on running into problems with missing packages. Specifically missing glib and gthread. The command that fixed it for me on RHEL 5 was:

yum install glib2-devel

Reply

12 தங்கமணிஅருண் April 21, 2011

on ubuntu 10.04

# sudo apt-get install sshfs fuse-utils

then go head to mounting the same.

–Arun

Reply

13 jalal hajigholamali July 13, 2011

thanks
really helpful

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">




Previous post:

Next post: