rsync 符号链接帮助

发布于 2024-10-19 02:16:28 字数 328 浏览 2 评论 0原文

我正在尝试设置 rsync 以使用符号链接。

客户端到服务器: 例如,在我的客户端计算机上,我有一个符号链接,当我同步到服务器时,它会同步实际文件,这就是我想要的。

服务器到客户端: 在服务器上,如果我更新文件并从服务器同步到客户端,它将用该文件替换我的符号链接,这不是我想要的。

问题: 我需要客户端符号链接保持完整,并需要 rsync 来更新客户端上的实际文件。

我一直在摆弄这些选项,但无法做出正确的选择。

有什么想法吗?

谢谢。

I'm trying to setup rsync to work with symlinks.

Client to Server:
For example on my client machine I have a symlink, when I sync to server, it syncs the actual file, which is what I want.

Server to Client:
On the server, if I update the file and sync from server to client, it's replacing my symlink with the file, this is not what I want.

Problem:
I need the client symlink to remain intact, and rsync to update the actual file on the client instead.

I've been messing around with the options and can't get it right.

Any ideas?

Thanks.

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

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

发布评论

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

评论(2

森林散布 2024-10-26 02:16:28

使用 rsync-l 来保留链接!

use rsync with -l to preserve links!

缘字诀 2024-10-26 02:16:28

-l (--links) 和 -L (--copy-links) 无法保留符号目标上的链接(符号链接),如果源上有文件,则不是符号链接。它应该是类似 -K (--keep-dirlinks) 的选项,但用于文件符号链接。而且我也找不到。

-l (--links) and -L (--copy-links) not works to preserve symbolic links (symlinks) on the target, if on the source there are files, not symlinks. It should be option like -K (--keep-dirlinks), but for file symlinks. And I can't find it too.

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