Ubuntu 上的 rsync - 远程计算机上的 root 权限?
我正在尝试使用递归 rsync 从远程计算机(Ubuntu)上安装的只读磁盘获取一些文件。我是远程和本地计算机的管理员。对于一些文件,我被告知我没有足够的权限来访问它们的目录。我尝试以 root@hostname 进行 rsync,但它拒绝我通常用作 sudo 的密码(此方法在我使用的 OS X 计算机上工作正常)。在我的 sshd_config 文件中,PermitRootLogin 设置为 yes(这不是 sshd 重新启动的问题),并且没有列出 DenyUsers 列表。我还有办法尝试获取这些文件吗?谢谢。
I am trying to get some files from a mounted read-only disk on a remote computer (Ubuntu) using recursive rsync. I am the administrator on both the remote and local machine. For a few files, I am told that I don't have sufficient privileges to access their directories. I tried to rsync as root@hostname, but it rejects the password I normally use as sudo (this method works ok on an OS X machine I use). In my sshd_config file, PermitRootLogin is set to yes (and it's not an issue of sshd restart), and there list no list of DenyUsers. Is there still a way I can try to get these files? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在另一台计算机上启用 root 帐户。
ssh
作为普通用户并运行sudo passwd root
并输入您的密码。 Ubuntu 默认使用
sudo
系统,该系统不使用root
帐户,而是提升当前用户的权限。You have to enable the root account on the other machine.
ssh
as your normal user and runsudo passwd root
And type in your password. Ubuntu, by default, uses the
sudo
system, which doesn't use theroot
account but instead raises the current user's privileges.