rsync同步指定目录
时间: 2023-08-07 17:06:04 浏览: 255
rsync只同步指定目录的方法(已测)
你可以使用rsync命令同步指定目录。rsync是一个功能强大的文件同步工具,它可以在本地计算机和远程计算机之间同步文件和目录。
以下是同步指定目录的rsync命令示例:
```
rsync -avz /path/to/source/directory/ /path/to/destination/directory/
```
其中,/path/to/source/directory/是要同步的源目录的路径,/path/to/destination/directory/是目标目录的路径。-a选项表示以归档模式同步目录,-v选项表示输出详细信息,-z选项启用压缩传输。
如果你需要同步远程服务器上的目录,可以使用以下命令:
```
rsync -avz username@remote_host:/path/to/source/directory/ /path/to/destination/directory/
```
其中,username是远程服务器的用户名,remote_host是远程服务器的主机名或IP地址,/path/to/source/directory/是要同步的源目录的路径,/path/to/destination/directory/是目标目录的路径。
阅读全文