我正试图通过sshfs在mac上永久地挂载卷。我试着遵循how-to-get-automount-and-sshfs-osxfuse-working-with-yosemite中的指令(虽然我有Sierra,但是我找不到它的说明,所以我想用Yosemite指令试一试)。然而,我被困在这一步:
如果您没有看到
mount_sshfs,那么您需要执行这个步骤。这是一个关键的步骤,因为它很容易被遗忘,并可能造成头痛。sudo ln -s $(which sshfs) /sbin/mount_sshfs。
以下是错误:
$ sudo ln -s $(which sshfs) /sbin/mount_sshfs
ln: /sbin/mount_sshfs: Operation not permitted我找不到解决这个问题的方法。
发布于 2018-10-02 20:11:23
苹果通过“系统完整性保护(SIP)”保护一些关键文件夹,您可以使用这里给出的说明暂时禁用它( https://apple.stackexchange.com/questions/208478/how-do-i-disable-system-integrity-protection-sip-aka-rootless-on-macos-os-x )
https://stackoverflow.com/questions/44678957
复制相似问题