2005-10-19 10:21:28 +02:00
|
|
|
Basic Instructions:
|
2006-01-18 20:48:56 +01:00
|
|
|
There are three ways to do this:
|
2005-10-19 10:21:28 +02:00
|
|
|
|
2006-01-18 20:48:56 +01:00
|
|
|
Daemon initiated
|
2005-10-19 10:21:28 +02:00
|
|
|
|
|
|
|
1)
|
2006-01-18 20:48:56 +01:00
|
|
|
% sshfs -o idmap=user username@example.org: /path/to/mount/point
|
2005-10-19 10:21:28 +02:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
2)
|
2006-01-18 20:48:56 +01:00
|
|
|
% mount_fusefs auto /path/to/mount/point sshfs -o idmap=user \
|
|
|
|
username@example.org:
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
3)
|
|
|
|
% env FUSE_DEV_NAME=/dev/fuse0 sshfs -o idmap=user \
|
|
|
|
username@example.org:
|
|
|
|
% mount_fusefs /dev/fuse0 /path/to/mount/point
|
2005-10-31 13:49:43 +01:00
|
|
|
|
|
|
|
For further options see ``sshfs -h''.
|