This is a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there's nothing to do. On the client side mounting the filesystem is as easy as logging into the server with ssh.
- Login to your linux server as root
- Install fuse-sshfs
#yum install fuse-sshfs -y
- Create a mount directory
#mkdir /mnt/mountdir
- Mount the remote directory
#sshfs user@192.168.0.1:/mountatremote /mnt/mountdir/
SSHFS will then ask you to authenticate with the password for the user account you supplied - To unmount the drive:
#umount /sshfs/mount/
No comments:
Post a Comment