mirror of
https://github.com/rclone/rclone.git
synced 2025-02-16 10:32:39 +01:00
docs/mount: add note that to execute programs one must set custom filesystem permissions (#5771)
This commit is contained in:
parent
cf2c2792e6
commit
a8059b8a90
@ -158,11 +158,16 @@ By default, the owner and group will be taken from the current user, and the bui
|
|||||||
group "Everyone" will be used to represent others. The user/group can be customized
|
group "Everyone" will be used to represent others. The user/group can be customized
|
||||||
with FUSE options "UserName" and "GroupName",
|
with FUSE options "UserName" and "GroupName",
|
||||||
e.g. |-o UserName=user123 -o GroupName="Authenticated Users"|.
|
e.g. |-o UserName=user123 -o GroupName="Authenticated Users"|.
|
||||||
|
The permissions on each entry will be set according to [options](#options)
|
||||||
|
|--dir-perms| and |--file-perms|, which takes a value in traditional
|
||||||
|
[numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation).
|
||||||
|
|
||||||
The permissions on each entry will be set according to
|
The default permissions corresponds to |--file-perms 0666 --dir-perms 0777|,
|
||||||
[options](#options) |--dir-perms| and |--file-perms|,
|
i.e. read and write permissions to everyone. This means you will not be able
|
||||||
which takes a value in traditional [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation),
|
to start any programs from the the mount. To be able to do that you must add
|
||||||
where the default corresponds to |--file-perms 0666 --dir-perms 0777|.
|
execute permissions, e.g. |--file-perms 0777 --dir-perms 0777| to add it
|
||||||
|
to everyone. If the program needs to write files, chances are you will have
|
||||||
|
to enable [VFS File Caching](#vfs-file-caching) as well (see also [limitations](#limitations)).
|
||||||
|
|
||||||
Note that the mapping of permissions is not always trivial, and the result
|
Note that the mapping of permissions is not always trivial, and the result
|
||||||
you see in Windows Explorer may not be exactly like you expected.
|
you see in Windows Explorer may not be exactly like you expected.
|
||||||
|
Loading…
Reference in New Issue
Block a user