Mount a remote file system using sshfs and fuse - How to install sshfs
You can access a remote file system securely using sshfs and fuse which is a command to mount a remote filesystem encrypted through ssh.
This way you will be able to access remote files as if they were on you machine, just remember that if the connection between the computers is slow, the access will also be pretty slow.
Package needed
sshfs
fuse-utils
Installation
Get the packages
- For Debian: apt-get install fuse-utils sshfs
- For Ubuntu: sudo apt-get install fuse-utils sshfs
- For Fedora and Centos: yum install fuse-utils sshfs
- For Mandriva: urpmi: urpmi fuse-utils sshfs
Next step is to mount the fuse module
modprobe fuse
Next create the mount point
mkdir /mnt/remote-fs
chown [your-user]:[your-group] /mnt/remote-fs/
Add yourself to the fuse group
adduser [your-user] fuse
Untill here all the command should be issued as root, now switch to your users and mount the remote filesystem.
sshfs remote-user@remote.server:/remote/directory /mnt/remote-fs/
It will now ask you accept the key if this is the first time you connect to that PC using ssh, and then the password, or only the password if this is not the first time you use ssh to connect to the remote.server
that should be all.
Trackback URL for this post:
If you like this article, subscribe to our full rss
Please post your question in our forum and use comments only to leave your comments about the article, thanks.













Hi, I use Ubuntu edgy 6.12 I
Hi,
I use Ubuntu edgy 6.12
I installed sshfs like this : sudo apt-get install sshfs
But if now I run sshfs, I have this error :
sshfs: /usr/lib/libfuse.so.2: version `FUSE_2.6' not found (required by sshfs)
Do you know how could I fix it ?
hi, please check here:
hi, please check here: http://www.go2linux.org/forum/index.php?topic=5.0
Guillermo Garron
Very easy an nice. But
Very easy an nice.
But config of repository missing for me.
JH
Hi, For what
Hi,
For what distribution?
Guillermo Garron
Hi. I use CentOS 5.0. I
Hi.
I use CentOS 5.0. I did'n succesfull yesterday, but today I find link - http://dag.wieers.com/rpm/packages/fuse-sshfs/
Thank you
JH
Post new comment