查看rsync服务是否启动有两种方法 //第一种 ps -ef | grep rsync root 1483 1 0 14:11 ? 00:00:00 /usr/bin/rsync --daemon root 1487 1304 0 14:12 pts/0 00:00:00 grep --color=auto rsync //第二种 netstat…
rsync命令参数: -v:--verbose,显示输出过程 -z:--compress,压缩 -a:--archive,多参数集合,也叫归档模式,包括多个参数,相当于:-rlptgoD(no -H,-A,-X)。 -r:--recursive,递归 -t:--times,保持修改时间属性 -o:--owner …
rsync常用的错误代码: 0 Success 1 Syntax or usage error 2 Protocol incompatibility 3 Errors selecting input/output files, dirs 4 Requested action not supporte…