DOC: "OS X" -> "macOS"

This commit is contained in:
partev 2021-08-07 19:10:39 -04:00 committed by Ivan Andreev
parent 88b35bc32d
commit bb6b44d199
1 changed files with 6 additions and 6 deletions

View File

@ -18,7 +18,7 @@ FUSE.
First set up your remote using `rclone config`. Check it works with `rclone ls` etc. First set up your remote using `rclone config`. Check it works with `rclone ls` etc.
On Linux and OSX, you can either run mount in foreground mode or background (daemon) mode. On Linux and macOS, you can either run mount in foreground mode or background (daemon) mode.
Mount runs in foreground mode by default, use the `--daemon` flag to specify background mode. Mount runs in foreground mode by default, use the `--daemon` flag to specify background mode.
You can only run mount in foreground mode on Windows. You can only run mount in foreground mode on Windows.
@ -47,7 +47,7 @@ When running in background mode the user will have to stop the mount manually:
# Linux # Linux
fusermount -u /path/to/local/mount fusermount -u /path/to/local/mount
# OS X # macOS
umount /path/to/local/mount umount /path/to/local/mount
The umount operation can fail, for example when the mountpoint is busy. The umount operation can fail, for example when the mountpoint is busy.
@ -238,7 +238,7 @@ Hubic) do not support the concept of empty directories, so empty
directories will have a tendency to disappear once they fall out of directories will have a tendency to disappear once they fall out of
the directory cache. the directory cache.
Only supported on Linux, FreeBSD, OS X and Windows at the moment. Only supported on Linux, FreeBSD, macOS and Windows at the moment.
## rclone mount vs rclone sync/copy ## rclone mount vs rclone sync/copy
@ -602,8 +602,8 @@ rclone mount remote:path /path/to/mountpoint [flags]
--no-checksum Don't compare checksums on up/download. --no-checksum Don't compare checksums on up/download.
--no-modtime Don't read/write the modification time (can speed things up). --no-modtime Don't read/write the modification time (can speed things up).
--no-seek Don't allow seeking in files. --no-seek Don't allow seeking in files.
--noappledouble Ignore Apple Double (._) and .DS_Store files. Supported on OSX only. (default true) --noappledouble Ignore Apple Double (._) and .DS_Store files. Supported on macOS only. (default true)
--noapplexattr Ignore all "com.apple.*" extended attributes. Supported on OSX only. --noapplexattr Ignore all "com.apple.*" extended attributes. Supported on macOS only.
-o, --option stringArray Option for libfuse/WinFsp. Repeat if required. -o, --option stringArray Option for libfuse/WinFsp. Repeat if required.
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s) --poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--read-only Mount read-only. --read-only Mount read-only.
@ -621,7 +621,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
--vfs-used-is-size rclone size Use the rclone size algorithm for Used size. --vfs-used-is-size rclone size Use the rclone size algorithm for Used size.
--vfs-write-back duration Time to writeback files after last use when using cache. (default 5s) --vfs-write-back duration Time to writeback files after last use when using cache. (default 5s)
--vfs-write-wait duration Time to wait for in-sequence write before giving error. (default 1s) --vfs-write-wait duration Time to wait for in-sequence write before giving error. (default 1s)
--volname string Set the volume name. Supported on Windows and OSX only. --volname string Set the volume name. Supported on Windows and macOS only.
--write-back-cache Makes kernel buffer writes before sending them to rclone. Without this, writethrough caching is used. Not supported on Windows. --write-back-cache Makes kernel buffer writes before sending them to rclone. Without this, writethrough caching is used. Not supported on Windows.
``` ```