rsync语法有三种,分别是本地到本地形式Local to Local,本地到远程Local to Remote,远程到本地Remote to Local。 其中OPTION是rsync选项。SRC是源目录。DEST是目标目录。USER是远程用户名。HOST是远程主机名名称,可以是IP地址或者可解释的域名。 LocaltoLocal:rsync[OPTION]...[SRC]...DESTLocaltoRemote:rsync[OPT...
-e “ssh [-p22]”:指定所使用的传输通道在(需要加"") 模式1:local 格式:rsync [OPTION…] SRC… [DEST] 模式2:Access via remote shell: 格式: 拉取:Pull: rsync [OPTION…] [USER@]HOST:SRC… [DEST] 推送:Push: rsync [OPTION…] SRC… [USER@]HOST:DEST 说明: 在传递文件的时候,会首先对比...
root@winhome:/mnt/d/gitrepo# rsync -a /mnt/d/gitrepo/nacos-server-2.3.0 root@192.168.2.114:/home/renguoqiang/gitee_base/ * [How To Use Rsync to Sync Local and Remote Directories | DigitalOcean](https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote...
rsync -avz --exclude 'logs/' /path/directory username@remoteIP:/path/remote/directory 5:保留文件权限和所有权: 在同步期间要保留文件权限和所有权,可以在命令中添加--perms和选项--owner rsync -avz --perms --owner /path/to/local/directory username@remoteIP:/path/to/remote/directory 例如: 将远程...
rsync -avz /path/to/local/directory user@remote.server1:/path/to/remote/directory user@remote.server2:/path/to/remote/directory 1. 在此命令中,rsync命令将同时同步/path/to/local/directory目录到remote.server1和remote.server2服务器的/path/to/remote/directory目录中。
rsync-ausername@remote_host:/home/username/dir1place_to_sync_on_local_machine Copy Likecpand similar tools, the source is always the first argument, and the destination is always the second. Using Other Rsync Options Rsync provides many options for altering the default behavior of the utility,...
rsync 全名 Remote Sync,是类 UNIX 系统下的数据镜像备份工具。可以方便的实现本地,远程备份,rsync 提供了丰富的选项来控制其行为。rsync 优于其他工具的重要一点就是支持增量备份。 rsync - a fast, versatile, remote (and local) file-copying tool
$ rsync-av-e'ssh -p 2234'source/user@remote_host:/destination 上面命令中,-e参数指定 SSH 使用2234端口。 5.2 rsync 协议 除了使用 SSH,如果另一台服务器安装并运行了 rsync 守护程序,则也可以用rsync://协议(默认端口873)进行传输。具体写法是服务器与目标目录之间使用双冒号分隔::。
1、Local:rsync[OPTION...]SRC...[DEST]2、Access via remote shell:Pull:rsync[OPTION...][USER@]HOST:SRC...[DEST]Push:rsync[OPTION...]SRC...[USER@]HOST:DEST3、Access via rsync daemon:Pull:rsync[OPTION...][USER@]HOST::SRC...[DEST]rsync[OPTION...]rsync://[USER@]HOST[:PORT]/SRC...
Here "destination-host" should be a resolvable name (not an IP address) for the host you're copying to, either a Bonjour name (*.local) or a unicast domain name. This command will make the remote "Playlists" folder an exact copy of the local one, which means that everything not in...