sshfs mount使用fabric run命令失败

时间:2014-06-19 22:41:25

标签: python ssh fabric sshfs

我正在尝试使用以下运行命令挂载SSHFS

  

运行(" sshfs -o reconnect -C -o workaround = all localhost:/ home / test / / mnt")

并且失败并出现以下错误

  

fuse:错误挂载点`/ mnt':传输端点未连接

然而,如果我妖魔化它的作品。有什么工作吗?。

1 个答案:

答案 0 :(得分:2)

我终于发现SSH存在问题,需要传递pty = False标志。

  

run(“sshfs -o reconnect -C -o workaround = all localhost:/ home / test /   到/ mnt”,PTY =假)