sshfs:没有那个文件或目录

sshfs:没有那个文件或目录

我刚刚安装sshfs并尝试测试它:

sudo apt-get install sshfs
mkdir ~/foo
ssh $server_IP mkdir ~/foo
sshfs $server_IP:~/foo ~/foo

我立即明白了$server_IP:~/foo: No such file or directory。我做错什么了吗?

答案1

这也发生在我身上,所以我使用了完整路径而不是路径~/some/path,而且它起作用了。所以而不是:

sshfs $server_IP:~/foo ~/foo

使用

sshfs $server_IP:/Users/bar/foo ~/foo

相关内容