项目作者: ficoos

项目描述 :
FUSE implementation of the SpiderOak public share API
高级语言: Go
项目地址: git://github.com/ficoos/fusermount-spideroak.git
创建时间: 2018-03-29T14:01:38Z
项目社区:https://github.com/ficoos/fusermount-spideroak

开源协议:BSD 3-Clause "New" or "Revised" License

下载


fusermount-spideroak

FUSE implementation to allow accessing a SpiderOak public share without having to synchornize is locally.

Usage

  1. Usage of fusermount-spideroak: -share-id <SHAREID> -room-key <ROOMKEY> [option]... <MOUNTPOINT>
  2. -cache-dir string
  3. cache directory (default ".cache")
  4. -cache-size value
  5. size of the cache (default 1G)
  6. -h display this help and exit
  7. -help
  8. display this help and exit
  9. -room-key string
  10. share's room key
  11. -share-id string
  12. name of the share

FAQ

  • Q: My cache is is effectively bigger than the requested cache size

    A: Cache size is a recommendation more than a hard limit.
    Files are not actually cleared until they are closed.
    As a rule of thumb the actual cache size should not exceed cache-size + biggest file accessed + all open files.
  • Q: I update things on the share but I don’t see an update until I remount

    A: The current cache implementation assumes the share never changes. We do intend to fix that.