🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 1.介绍 rsync 是可以实现增量备份的工具。 ## 2.编译环境安装 ``` yum -y install epel-release yum clean yum makecache ``` ``` yum -y install gcc g++ gawk autoconf automake python3-pip yum -y install acl libacl-devel yum -y install attr libattr-devel yum -y install xxhash-devel yum -y install libzstd-devel yum -y install lz4-devel yum -y install openssl-devel python3 -mpip install --user commonmark ``` ## 3.下载rsync源码包 [官网地址](https://rsync.samba.org/) ## 4.编译安装 ``` ./configure make && make install ``` ## 4.编译参数选择 ``` ./configure --help // 获取参数详情 --with-rsyncd-conf // 定义配置文件路径 ```