Ubuntu 上的 rsync - 远程计算机上的 root 权限?

发布于 2024-09-16 23:28:27 字数 266 浏览 5 评论 0原文

我正在尝试使用递归 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小草泠泠 2024-09-23 23:28:27

您必须在另一台计算机上启用 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 run

sudo passwd root

And type in your password. Ubuntu, by default, uses the sudo system, which doesn't use the root account but instead raises the current user's privileges.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文