rclone 挂载 Onedrive

参考 rclone 的 mount 文档,命令如下:

/usr/bin/rclone mount onedrive: /mnt/onedrive --daemon --vfs-cache-mode writes

--vfs-cache-mode 是控制 NFS 的缓存选项,可以让 NFS 更像是本地文件系统,它有下面的选项:

--cache-dir string                   Directory rclone will use for caching.
--vfs-cache-max-age duration         Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string              Cache mode off|minimal|writes|full (default "off")
--vfs-cache-poll-interval duration   Interval to poll the cache for stale objects. (default 1m0s)

每一种方式都有利有弊,官方文档很详细,可以根据场景选择合适的方式。

和 fuse 挂载方式一样,rclone 也可以指定用户和用户组,参数分别是 --uid 和 --gid。

你可能感兴趣的:(rclone 挂载 Onedrive)