我正在尝试使用以下运行命令挂载SSHFS
运行(" sshfs -o reconnect -C -o workaround = all localhost:/ home / test / / mnt")
并且失败并出现以下错误
fuse:错误挂载点`/ mnt':传输端点未连接
然而,如果我妖魔化它的作品。有什么工作吗?。
答案 0 :(得分:2)
我终于发现SSH存在问题,需要传递pty = False标志。
run(“sshfs -o reconnect -C -o workaround = all localhost:/ home / test / 到/ mnt”,PTY =假)