forked from Lainports/freebsd-ports
SSHFS allows you to mount a remote directory over a normal ssh connection. WWW: http://sourceforge.net/projects/fuse/ PR: ports/87168 Submitted by: Anish Mistry <amistry@am-productions.biz> Reviewed by: Csaba Henk <csaba.henk@creo.hu> (fuse SoC participant)
19 lines
490 B
Text
19 lines
490 B
Text
Basic Instructions:
|
|
Load the fuse kernel module (as root):
|
|
# %%PREFIX%%/etc/rc.d/fuse.sh start
|
|
|
|
Then mount something via sshfs (as an ordinary user if you set
|
|
vfs.usermount=1).
|
|
|
|
There are two ways to do this:
|
|
|
|
1)
|
|
% env FUSE_DEV_NAME=/dev/fuse0 sshfs -o uid=<local uid> -o gid=<local gid> \
|
|
username@example.org:
|
|
% mount_fusefs /dev/fuse0 /path/to/mount/point
|
|
|
|
or
|
|
|
|
2)
|
|
% mount_fusefs auto /path/to/mount/point sshfs -o uid=<local uid> \
|
|
-o gid=<local gid> username@example.org:
|