Rsync 备份任务:软链接问题、文件排除 和 速率控制
软链接问题
复制实际的目标文件而不是软链接本身,可以使用 -L 或 --copy-links 选项。
rsync -aL --delete testRsyncSrc/ testRsyncDst/
如果Src存在失效的软链接,会报错:symlink has no referent
可以先处理一下再复制
find testRsyncSrc/ -type l
find testRsyncSrc/ -type l -exec test ! -e {} \; -delete
rsync -aL --delete testRsyncSrc/ testRsyncDst/
排除 --exclude
排除特定的日志文件:--exclude='*.log'
排除特定的日志目录:--exclude='/path/to/logs/'
排除多个模式:--exclude='*.log' --exclude='/path/to/logs/'
使用排除规则文件 .rsync-exclude
:
*.log
/var/log/
/other/path/logs/
带宽控制 --bwlimit
--bwlimit=1024
表示限制带宽为1024 KB/s == 1MB/s ==8Mbps
================# 水平有限 欢迎指正 #=================