我正在尝试使用创建虚拟驱动器池适用于 OS X 的 FUSE和mhddfs
。
此命令对我有用:
sudo mhddfs /Volumes/D01,/Volumes/D12,/Volumes/D103,/Volumes/D110 /mnt/DrivePoolA -o allow_other,volname=DrivePoolA
但是,我相信我也应该能够使用命令完成相同的操作mount
,但我没有成功。我尝试了各种类似于下面代码的方法。我遗漏了什么?
sudo mount -t mhddfs -o allow_other,volname=DrivePoolA /Volumes/D01,/Volumes/D12,/Volumes/D103,/Volumes/D110
最后,最重要的是,我尝试使用 来安装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`
但是,当我运行sudo mount -a
它时fstab
,我收到一条错误消息,指出:
此程序不能直接调用。OSXFUSE 库会调用它。可用的挂载选项:[后面是挂载选项列表]
现在,我假设该错误来自 osxfuse_mounter,因为我在 github 上的“support”项目的源代码中找到了错误文本。我假设错误被传回程序mount
,程序将其吐回命令行。
我还尝试了以下内容fstab
,省略了options
、dump
和pass
:
# <file system> <mount point> <type> <options> <dump> <pass>
mhddfs#/Volumes/D01,/Volumes/D12/,/Volumes/D103/,/Volumes/D110 /mnt/DrivePoolA osxfusefs
使用此配置运行后 sudo mount -a
,我没有收到任何错误,但似乎什么也没有发生。
有什么建议么?