forked from Lainports/freebsd-ports
ChangeLog summary:
* bugfixes
* Add remote uid detection and translation ('idmap=user' option).
Idea and implementation details worked out by Jean-Marc Valin
(Since this is rather untested, it's not yet mentioned in pkg-message).
* Add support for SSH protocol version 1. Bug reported by Miklos Bagi Jr.
* Add atomic create+open and ftruncate operation. This should fix
issues with 'cp' and other programs failing with "Permission
denied". To be effective, needs FUSE version 2.5 and kernel
version 2.6.15 (just a guess, since neither of them is released yet).
(Investigations are made whether this is possible/necessary for fuse4bsd)
- User lower case in first letter of IGNORE
Submitted by: Anish Mistry (maintainer)
PR: ports/88265
21 lines
529 B
Text
21 lines
529 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:
|
|
|
|
For further options see ``sshfs -h''.
|