Linux下的数据备份工具rsync

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下的数据备份工具rsync相关的知识,希望对你有一定的参考价值。

rsync(remote sync): 远程同步,可以本地同步数据,不会覆盖以前的数据,而是先判断已经存在的数据和新数据的差异,只有数据不同时才会把不相同的部分覆盖。

# yum install rsync.x86_64 -y

本地同步

[[email protected] ~]# rsync -av /etc/passwd /tmp/password
sending incremental file list
passwd

sent 959 bytes  received 31 bytes  1980.00 bytes/sec
total size is 885  speedup is 0.89

远程同步(同步到另一台机器,另一台机器也需要安装rsnyc)

[[email protected] ~]# rsync -av /etc/passwd 192.168.221.20:/tmp/password
[email protected]'s password: 
sending incremental file list
passwd

sent 959 bytes  received 31 bytes  220.00 bytes/sec
total size is 885  speedup is 0.89

rsync的命令格式 

rsync [option]... src dest
rsync [option]... src [[email protected]]host:dest
rsync [option]... [[email protected]]host:src dest
rsync [option]... [[email protected]]host::src dest
rsync [option]... src [[email protected]]host::dest


以上是关于Linux下的数据备份工具rsync的主要内容,如果未能解决你的问题,请参考以下文章

31.Linux下的数据备份工具rsync

rsync Linux系统下的数据镜像备份工具

Linux下的数据备份工具rsync

Linux下的数据备份工具rsync

Linux centos7 rsync工具介绍rsync常用选项rsync通过ssh同步

Linux中详细搭建rsync服务