You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
983 B

  1. package main
  2. type MountOptions struct {
  3. filer *string
  4. dir *string
  5. }
  6. var (
  7. mountOptions MountOptions
  8. )
  9. func init() {
  10. cmdMount.Run = runMount // break init cycle
  11. cmdMount.IsDebug = cmdMount.Flag.Bool("debug", false, "verbose debug information")
  12. mountOptions.filer = cmdMount.Flag.String("filer", "localhost:8888", "weedfs filer location")
  13. mountOptions.dir = cmdMount.Flag.String("dir", "", "mount weed filer to this directory")
  14. }
  15. var cmdMount = &Command{
  16. UsageLine: "mount -filer=localhost:8888 -dir=/some/dir",
  17. Short: "mount weed filer to a directory as file system in userspace(FUSE)",
  18. Long: `mount weed file system to userspace.
  19. Pre-requisites:
  20. 1) have a weed file system running
  21. 2) have a "weed filer" running
  22. These 2 requirements can be achieved with one command "weed server -filer=true"
  23. This uses bazil.org/fuse, whichenables writing FUSE file systems on
  24. Linux, and OS X.
  25. On OS X, it requires OSXFUSE (http://osxfuse.github.com/).
  26. `,
  27. }