为什么无法使用Mac上的sshfs连接到BeagleBone?我可以ssh到这个IP地址就好了。
我是否需要以某种方式创建特殊的挂载点?插座未连接是什么意思?
sudo sshfs [email protected]: /Volumes/
remote host has disconnected
mount_osxfusefs: failed to mount /Volumes@/dev/osxfuse0: Socket is not connected
仅供参考,我使用
brew cask sshfs
安装了sshfs 最佳答案
这是我过去的做法。 (我不确定这是否与您使用的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
希望对您的情况有所帮助。