在CentOS中使用rsync命令進行文件同步非常簡單。以下是一個簡單的示例:
sudo yum install rsync
rsync -avzh /path/to/source/folder/ username@remote_host:/path/to/destination/folder/
在上面的命令中,將/path/to/source/folder/
替換為本地源文件夾的路徑,username
替換為遠程主機的用戶名,remote_host
替換為遠程主機的IP地址或主機名,/path/to/destination/folder/
替換為遠程目標(biāo)文件夾的路徑。
這樣,你就可以使用rsync命令在CentOS中進行文件同步了。