SSHFS挂载远程ssh服务器导致分段错误:在Mac OS上为11

时间:2018-09-03 21:16:01

标签: macos fuse sshfs

我正在尝试遵循this tutorial在macOS上安装SSH服务器。我安装了

brew install cask osxfuse

和带有

的SSHFS
brew install sshfs

但是当我尝试将远程文件夹安装到本地文件夹时

sshfs foo@bar:/remote/folder ~/local/folder

我得到了错误:

  

分段错误:11

我的操作系统是

  

macOS High Siera 10.13.6(17G65)

如果您能帮助我知道问题出在哪里以及如何解决,我将不胜感激。

2 个答案:

答案 0 :(得分:0)

好吧,我不知道问题出在哪里,但是我尝试了here

sudo sshfs -o allow_other,defer_permissions foo@bar:/remote/folder ~/local/folder -p 22

然后folder消失,出现一个名为OSXFUSE Volume 0(sshfs)的新驱动器:

enter image description here

尽管它仍然非常不稳定并且经常断开连接。

答案 1 :(得分:0)

碰到这个问题,我的原因是冒号和目录开始之间缺少空格。

sshfs foo@bar: /remote/folder ~/local/folder