使用rsync远程安全传输文件
2022-03-28 本文已影响0人
风静花犹落
简介
rsync速度快、支持限速、断点续传、增量备份、压缩传输等
安装rsync
yum install -y rsync
迁移数据
rsync -avW --progress -e "ssh -p 22" /source username@remote_host:/destination
rsync速度快、支持限速、断点续传、增量备份、压缩传输等
yum install -y rsync
rsync -avW --progress -e "ssh -p 22" /source username@remote_host:/destination