seaweedfs/weed/command/fuse.go

31 lines
1.0 KiB
Go
Raw Normal View History

package command
func init() {
cmdFuse.Run = runFuse // break init cycle
}
var cmdFuse = &Command{
2021-05-26 23:07:36 +08:00
UsageLine: "fuse /mnt/mount/point -o \"filer=localhost:8888,filer.path=/\"",
2021-07-01 16:21:14 +08:00
Short: "Allow use weed with linux's mount command",
Long: `Allow use weed with linux's mount command
You can use -t weed on mount command:
mv weed /sbin/mount.weed
2021-05-26 23:07:36 +08:00
mount -t weed fuse /mnt -o "filer=localhost:8888,filer.path=/"
Or you can use -t fuse on mount command:
mv weed /sbin/weed
2021-05-26 23:07:36 +08:00
mount -t fuse.weed fuse /mnt -o "filer=localhost:8888,filer.path=/"
mount -t fuse "weed#fuse" /mnt -o "filer=localhost:8888,filer.path=/"
To use without mess with your /sbin:
2021-05-26 23:07:36 +08:00
mount -t fuse./home/user/bin/weed fuse /mnt -o "filer=localhost:8888,filer.path=/"
mount -t fuse "/home/user/bin/weed#fuse" /mnt -o "filer=localhost:8888,filer.path=/"
2021-05-29 11:37:25 +08:00
To pass more than one parameter use quotes, example:
mount -t weed fuse /mnt -o "filer='192.168.0.1:8888,192.168.0.2:8888',filer.path=/"
To check valid options look "weed mount --help"
`,
}