922 B
922 B
title, type, tags, date
| title | type | tags | date | |||
|---|---|---|---|---|---|---|
| rsync | entity |
|
2026-04-16 |
Aliases
- Rsync
- Remote Sync
Definition
rsync(Remote Sync)是 Linux/Unix 系统上的增量同步工具,支持本地和远程同步。它通过只传输源端与目标端之间差异的部分(Delta Transfer),实现高效的数据备份。
Key Features
- 增量传输:仅传输变化的文件内容,减少网络带宽和时间消耗
- 保留权限:支持保留文件权限、所有者、时间戳等属性
- 压缩传输:支持 gzip 压缩传输,减少网络流量
- 不关机运行:可在系统运行时执行,不影响业务
Usage Example
rsync -azR --delete /source/ /destination/