在 MacOS 上挂载文件夹

在 MacOS 上挂载文件夹

我想在 macOS Catalina 中挂载一个文件夹(特别是挂载而不是软链接)。

我试过:

mount -t ufs <path to src folder> <path to dst where I want my mount point>

我得到的回报是:

mount: exec ....../mount_ufc for <path to dst where I want my mount point>: No such file or directory

所以我创建了文件夹

mkdir <path to dst where I want my mount point>

再次运行命令,仍然得到 mount: exec ....../mount_ufc for <path to dst where I want my mount point>: No such file or directory

如何在 macOS 中挂载/硬链接文件夹?

相关内容