2016-07-30 105 views
0

我有一個16.04 Ubuntu服務器,b2_fuse安裝我使用pyfuse的b2雲存儲桶。問題是,我不知道如何使用FUSE來傳遞allow_other參數!這是一個問題,因爲在不同用戶下運行的其他服務無法看到裝入的驅動器。Allow_Other與保險絲?

有沒有人在這裏有一些經驗,可以指出我在正確的方向嗎?

回答

2

內部文件b2fuse.py的,如果你改變線路:

FUSE(filesystem, mountpoint, nothreads=True, foreground=True) 

FUSE(filesystem, mountpoint, nothreads=True, foreground=True,**{'allow_other': True}) 

將安裝與allow_other音量。

+0

只需在'FUSE()'參數中加入'allow_other = True'就可以了... – kgutwin