scp 到 rsync 转换

发布于 2024-11-14 08:25:58 字数 677 浏览 2 评论 0原文

以下内容按预期工作。

scp -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner {} [email protected]:/home/fner/ 

但同一命令的 rsync 版本不起作用:

rsync -av -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner /home/companyuser/  [email protected]:/home/fner/ 

我使用 find -exec >> scp 在第一个示例中复制文件。我可以将所有文件复制到一个位置。 但 rsync 将允许我在目标上拥有与主主机完全相同的相同目录结构。

The following is working as expected.

scp -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner {} [email protected]:/home/fner/ 

But the rsync version of the same command does not work:

rsync -av -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner /home/companyuser/  [email protected]:/home/fner/ 

I use find -exec >> scp to copy files in the first example. I can copy all the files in one location.
But rsync will allow me to have the same directory structure on destination exactly like master host.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

百合的盛世恋 2024-11-21 08:25:58

您可以尝试使用 -e 指定传输类型

rsync -avze "ssh -o IdentityFile=/path/to/file" /sync/here/ root@remotehost:/to/here

you might try specifying the transfer type with -e

rsync -avze "ssh -o IdentityFile=/path/to/file" /sync/here/ root@remotehost:/to/here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文