如何在我的Mac上使用sshfs挂载远程驱动器(BeagleBone)?

时间:2014-10-25 06:23:06

标签: macos ssh fuse sshfs

为什么我不能使用我的mac中的sshfs连接到我的BeagleBone?我可以ssh到这个IP地址就好了。 我需要以某种方式创建一个特殊的挂载点吗?套接字没有连接是什么意思?

sudo sshfs root@192.168.7.1: /Volumes/
remote host has disconnected
mount_osxfusefs: failed to mount /Volumes@/dev/osxfuse0: Socket is not connected

仅供参考我使用brew cask sshfs

安装了sshfs

1 个答案:

答案 0 :(得分:4)

以下是我过去的表现。 (我不确定它是否与您使用的sshfs实现相同)

我有一把私钥(我称之为mykey.pem) 确保其权限为600

我还有一个我将要安装的文件夹(它将在/ usr / remote)

然后我运行:

sshfs -o IdentityFile=/path/to/key/mykey.pem remote_user@ip_address:/remote/folder -o allow_other /usr/remote

我希望这对你的情况有帮助。