mhddfs+osxfuse 通过 fstab?

joh*_*all 7 mount fstab fuse macfuse

我正在尝试使用FUSE for OS Xmhddfs.

这个命令对我有用:

sudo mhddfs /Volumes/D01,/Volumes/D12,/Volumes/D103,/Volumes/D110 /mnt/DrivePoolA -o allow_other,volname=DrivePoolA
Run Code Online (Sandbox Code Playgroud)

但是,我相信我也应该能够使用该mount命令完成相同的操作,但是我没有运气。我已经尝试了各种类似于下面一行的东西。我错过了什么?

sudo mount -t mhddfs -o allow_other,volname=DrivePoolA /Volumes/D01,/Volumes/D12,/Volumes/D103,/Volumes/D110
Run Code Online (Sandbox Code Playgroud)

最后,也是最重要的是,我正在尝试drivePool使用fstab. 我的fstab看起来像这样:

# <file system>  <mount point> <type>  <options>       <dump>  <pass>  
mhddfs#/Volumes/D01,/Volumes/D12/,/Volumes/D103/,/Volumes/D110    /mnt/DrivePoolA    osxfusefs    allow_other,volname=DrivePoolA 0 0`
Run Code Online (Sandbox Code Playgroud)

但是,当我运行sudo mount -a它时fstab,我收到一条错误消息,其中指出:

该程序不打算直接调用。OSXFUSE 库调用它。可用的挂载选项:[后跟挂载选项列表]

现在,我假设该错误来自 osxfuse_mounter,因为我在 github 上的“支持”项目的源代码中找到了错误文本。我假设错误正在传递回mount程序,该程序将其从命令行中吐出。

我也试过以下fstab,省略optionsdumppass

# <file system>  <mount point> <type>  <options>       <dump>  <pass>  
mhddfs#/Volumes/D01,/Volumes/D12/,/Volumes/D103/,/Volumes/D110    /mnt/DrivePoolA    osxfusefs
Run Code Online (Sandbox Code Playgroud)

sudo mount -a使用此配置运行后 ,我没有收到任何错误,但似乎什么也没发生。

有什么建议?