Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些使用 rsnaphson 的备份过程,他自己使用 rsync。一些大数据文件已经更改了所有者/权限,并被 rsync 检测为文件更改。
我想禁用此功能,例如,将权限从 755 更改为 775 的文件不会被 rsync 识别为已更改并保持在目标目录中。
我的 rsync 调用目前有以下选项:
-a --delete --numeric-ids --relative --delete-excluded --compress-level=5 --stats
你的问题是:
-a, --archive archive mode; equals -rlptgoD (no -H,-A,-X)
您明确告诉rsync检查权限。例如:
rsync
-p, --perms preserve permissions
根据需要摆脱-a和定制您的选项。
-a