挂载 sshfs 并提升权限 (sudo)

挂载 sshfs 并提升权限 (sudo)

我使用以下命令挂载远程目录sshfs

sshfs myuser@myserver:/ /path/to/mountpoint

这很好用。

但我需要访问myserver只能由 root 访问的目录。

  • root出于安全原因,登录被禁用。
  • sudo是无密码的myuser,这工作正常。

因此,我需要在使用 登录后提升权限,与使用 时的操作sshfs非常相似。--rsync-path="sudo rsync"rsync

怎么做?

(仅供参考:服务器是debian,客户端是Ubuntu

答案1

它适用于添加以下选项sshfs

-o sftp_server="sudo /usr/lib/openssh/sftp-server"

路径sftp-server可能因操作系统而异。

(通过这个10多岁的回答服务器故障

相关内容