SSHFS安装数字海洋

时间:2014-10-18 11:12:20

标签: digital-ocean sshfs

我正在使用Mac OS特立独行。我试图按照

中提到的说明进行操作

https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh

但是,这样做之后

sudo sshfs root@xxx.xxx.xxx.xxx:/ ~/mnt/droplet

我无法访问文件夹Droplet。它从发现者身上消失了。

有谁知道为什么?

1 个答案:

答案 0 :(得分:4)

我在Snow Leopard上遇到过同样的问题。这是一个MacFUSE问题。您需要添加一个额外的选项来告诉MacFUSE允许外部程序处理它。您还需要告诉它推迟权限检查。

这对我有用:

sudo sshfs me@my.remote.server.edu:/ /Users/ME/MyMOUNT -o allow_other,defer_permissions

有关macfuse选项的更多信息:

http://jann.is/daily/archives/757-ExtraAdvanced-options-for-MacFuseMacFusion.html

在这里: https://code.google.com/p/macfuse/wiki/OPTIONS

另一位用户遇到同样的问题(以稍微不同的方式解决): https://superuser.com/questions/772405/why-does-directory-vanish-when-i-do-sshfs-how-to-setup-sshfs-share-on-max-osx-1