Home Rsync-文件同步
Post
Cancel

Rsync-文件同步

安装

服务器和本地都需要安装的有

1
sudo apt-get install rsync

远程同步到本地

1
2
3
4
5
# dir文件夹同步到home目录下,即 /home/dir
sudo rsync -avz root@xxx.xxx.xxx.xxx:/root/dir /home

# dir文件夹里的内容同步到/home/dir目录下,即 /home/dir
sudo rsync -avz root@xxx.xxx.xxx.xxx:/root/dir/ /home/dir
This post is licensed under CC BY 4.0 by the author.