rsync
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rsync相关的知识,希望对你有一定的参考价值。
八周二次课(9月19日)
10.28 rsync工具介绍
10.29/10.30 rsync常用选项
10.31 rsync通过ssh同步
10.28 rsync工具介绍
rsync增量同步
rsync -av /etc/passwd /tmp/1.txt
sending incremental file list
passwd
sent 2165 bytes received 31 bytes 4392.00 bytes/sec
total size is 2091 speedup is 0.95
V可视化。
rsync -av /etc/passwd [email protected]:/tmp/1.txt远程拷贝。
10.29/10.30 rsync常用选项
-a包含-rtplgoD
a里面包含了l如果在a后面加上L则l失效
--delete会把目的文件夹里面多余的删掉。
--exclude "*.txt" 把 包含.txt的过滤掉
-P可以加上显示的比v更加详细
远程同步使用方法
rsync -avP -e "ssh -p 24" ./aming/ 192.168.230.133:/tmp/123/ 指定端口
以上是关于rsync的主要内容,如果未能解决你的问题,请参考以下文章