无法通过 sshfs 主目录挂载的用户进行 ssh

无法通过 sshfs 主目录挂载的用户进行 ssh

有 2 位用户机器#0用户#0用户#1。我可以从用户#0机器#0正在执行:

sshfs user@hostname:/home/folder /home/folder

问题是 /home/folder 有某条路径/user#1 里面是用户#1.但当我尝试

ssh user1@machine0

输入密码后,它说 Connection to machine0 closed. 如果我切换主页用户1到另一个本地目录,我登录时没有问题。为什么会发生这种情况以及如何解决?谢谢!

答案1

好的,我找到了解决方案。

  1. 在我的例子中(嵌入式 Linux),需要添加用户1aid_inetaid_net_raw团体/etc/组文件。

  2. 允许其他在挂载 fs 时必须启用选项,就像这样:

    sshfs 用户@主机名:/home/folder /home/folder -o allow_other

谢谢!

相关内容