rsync 符号链接帮助
我正在尝试设置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
rsync
和-l
来保留链接!use
rsync
with-l
to preserve links!-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.