Allow_Other 有 fusepy 吗?
Allow_Other with fusepy?
我有一个 16.04 ubuntu 服务器 b2_fuse 安装了我的 b2 云存储桶,它使用 pyfuse。问题是,我不知道如何像 FUSE 一样传递 allow_other 参数!这是一个问题,因为不同用户下的其他服务运行看不到挂载的驱动器。
这里有没有人对此有一些经验可以为我指明正确的方向?
文件内部 b2fuse.py
如果您更改行:
FUSE(filesystem, mountpoint, nothreads=True, foreground=True)
到
FUSE(filesystem, mountpoint, nothreads=True, foreground=True,**{'allow_other': True})
卷将安装 allow_other
。
我有一个 16.04 ubuntu 服务器 b2_fuse 安装了我的 b2 云存储桶,它使用 pyfuse。问题是,我不知道如何像 FUSE 一样传递 allow_other 参数!这是一个问题,因为不同用户下的其他服务运行看不到挂载的驱动器。
这里有没有人对此有一些经验可以为我指明正确的方向?
文件内部 b2fuse.py
如果您更改行:
FUSE(filesystem, mountpoint, nothreads=True, foreground=True)
到
FUSE(filesystem, mountpoint, nothreads=True, foreground=True,**{'allow_other': True})
卷将安装 allow_other
。