您的位置:首页 > 其它

Mount a remote file system using sshfs and fuse - How to install sshfs

2012-05-15 15:40 621 查看
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 fuseNext 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
4000
all.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐