blob: 187edabe7faf9247e5df361a876559bbaee6b580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
[
{ type: install
message: <<EOM
Basic Instructions:
There are three ways to do this:
1)
% sshfs -o idmap=user username@example.org: /path/to/mount/point
or
2)
% 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
For further options see ``sshfs -h''.
EOM
}
]
|