aboutsummaryrefslogtreecommitdiff
path: root/sysutils/fusefs-sshfs/pkg-message
diff options
context:
space:
mode:
authorSimon Barner <barner@FreeBSD.org>2005-10-19 08:21:28 +0000
committerSimon Barner <barner@FreeBSD.org>2005-10-19 08:21:28 +0000
commitbac96c84c1af081dcd7a31ae64b9336b969a48f0 (patch)
tree4fde3e005d4f938425951ee6ea606742ec1d1733 /sysutils/fusefs-sshfs/pkg-message
parentf5f5f5e5d899e966c5b29d5bbcacb8c6e57977b2 (diff)
downloadports-bac96c84c1af081dcd7a31ae64b9336b969a48f0.tar.gz
ports-bac96c84c1af081dcd7a31ae64b9336b969a48f0.zip
Add new port for fusefs-sshfs:
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)
Notes
Notes: svn path=/head/; revision=145833
Diffstat (limited to 'sysutils/fusefs-sshfs/pkg-message')
-rw-r--r--sysutils/fusefs-sshfs/pkg-message19
1 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/fusefs-sshfs/pkg-message b/sysutils/fusefs-sshfs/pkg-message
new file mode 100644
index 000000000000..648b854e7af7
--- /dev/null
+++ b/sysutils/fusefs-sshfs/pkg-message
@@ -0,0 +1,19 @@
+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: