<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cp Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/cp/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 11 Oct 2019 20:23:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Synchronous data Using rsync Command in Linux</title>
		<link>https://www.osradar.com/synchronous-data-using-rsync-command-in-linux/</link>
					<comments>https://www.osradar.com/synchronous-data-using-rsync-command-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Fri, 11 Oct 2019 20:23:23 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[cp]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14494</guid>

					<description><![CDATA[<p>Introduction Rsync, remote synchronize is known as a remote synchronization function of the software, it synchronizes files at the same time, can maintain the original file permissions, time, hard and soft links and other additional information. it is a &#8220;sync algorithm&#8221; that provides a quick way to synchronize files between clients and remote file servers, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/synchronous-data-using-rsync-command-in-linux/">Synchronous data Using rsync Command in Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image is-resized"><img loading="lazy" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/39305640991_17be320f7b_o.jpg" alt="rsync" class="wp-image-14533" width="700" height="366" srcset="https://www.osradar.com/wp-content/uploads/2019/10/39305640991_17be320f7b_o.jpg 640w, https://www.osradar.com/wp-content/uploads/2019/10/39305640991_17be320f7b_o-300x157.jpg 300w" sizes="(max-width: 700px) 100vw, 700px" /></figure>



<h2 id="introduction"><strong>Introduction</strong></h2>



<p>Rsync, remote synchronize is known as a remote synchronization function of the software, it synchronizes files at the same time, can maintain the original file permissions, time, hard and soft links and other additional information. it is a &#8220;sync algorithm&#8221; that provides a quick way to synchronize files between clients and remote file servers, and can also be transferred via SSH, which is also very confidential, supports breakpoint continuation, data can be pushed or pulled, and is free of chargeS.</p>



<p>Rsync advantages：</p>



<ul><li>Ability to update entire directories and trees and file systems;</li><li>Selectively maintain symbolic links, hard links, file ownership, permissions, devices, and   time for folders and files;</li><li>For installation, there are no special permission requirements;</li><li>For multiple files, the internal pipeline reduces the file wait delay;</li><li>Can use RSH, SSH or direct port as the transfer port;</li><li>Support anonymous Rsync synchronization files are the ideal mirror tool;</li></ul>



<h2><strong>Installation</strong></h2>



<p>Installing rsync is pretty easy, it doesn&#8217;t rely on any special libraries at all, so you can install it directly with yum.</p>



<pre class="wp-block-preformatted">yum install -y rsync </pre>



<p>The command rsync will appear once the installation is complete</p>



<h2><strong>Rsync works</strong></h2>



<p>Rsync works in three ways：<br>1.synchronization on the local file system. <br>2.the local host USES the remote shell to communicate with the remote host. <br>3.localhost connects rsync daemon on a remote host via network socket. </p>



<p>Here is the syntax  works for each rsync:</p>



<pre class="wp-block-preformatted">Local:  
      rsync [OPTION...] SRC... [DEST]   
Access via remote shell:   
      Pull: rsync [OPTION...] [USER@]HOST:SRC... [DEST]   
      Push: rsync [OPTION...] SRC... [USER@]HOST:DEST   
Access via rsync daemon:   
      Pull: rsync [OPTION...] [USER@]HOST::SRC... [DEST]         
            rsync [OPTION...] rsync://[USER@]HOST[:PORT]/SRC... [DEST]   
      Push: 
            rsync [OPTION...] SRC... [USER@]HOST::DEST         
            rsync [OPTION...] SRC... rsync://[USER@]HOST[:PORT]/DEST </pre>



<h2><strong>Option</strong></h2>



<pre class="wp-block-preformatted">man rsync</pre>



<pre class="wp-block-preformatted">Options
 -v, --verbose               increase verbosity
 -q, --quiet                 suppress non-error messages
     --no-motd               suppress daemon-mode MOTD (see manpage caveat)
 -c, --checksum              skip based on checksum, not mod-time &amp; size
 -a, --archive               archive mode; equals -rlptgoD (no -H,-A,-X)
     --no-OPTION             turn off an implied OPTION (e.g. --no-D)
 -r, --recursive             recurse into directories
 -R, --relative              use relative path names
     --no-implied-dirs       don't send implied dirs with --relative
 -b, --backup                make backups (see --suffix &amp; --backup-dir)
     --backup-dir=DIR        make backups into hierarchy based in DIR
     --suffix=SUFFIX         set backup suffix (default ~ w/o --backup-dir)
 -u, --update                skip files that are newer on the receiver
     --inplace               update destination files in-place (SEE MAN PAGE)
     --append                append data onto shorter files
     --append-verify         like --append, but with old data in file checksum
 -d, --dirs                  transfer directories without recursing
 -l, --links                 copy symlinks as symlinks
 -L, --copy-links            transform symlink into referent file/dir
     --copy-unsafe-links     only "unsafe" symlinks are transformed
     --safe-links            ignore symlinks that point outside the source tree
 -k, --copy-dirlinks         transform symlink to a dir into referent dir
 -K, --keep-dirlinks         treat symlinked dir on receiver as dir
 -H, --hard-links            preserve hard links
 -p, --perms                 preserve permissions
 -E, --executability         preserve the file's executability
     --chmod=CHMOD           affect file and/or directory permissions
 -A, --acls                  preserve ACLs (implies --perms)
 -X, --xattrs                preserve extended attributes
 -o, --owner                 preserve owner (super-user only)
 -g, --group                 preserve group
     --devices               preserve device files (super-user only)
     --copy-devices          copy device contents as regular file
     --specials              preserve special files
 -D                          same as --devices --specials
 -t, --times                 preserve modification times
 -O, --omit-dir-times        omit directories from --times
     --super                 receiver attempts super-user activities
     --fake-super            store/recover privileged attrs using xattrs
 -S, --sparse                handle sparse files efficiently
 -n, --dry-run               perform a trial run with no changes made
 -W, --whole-file            copy files whole (without delta-xfer algorithm)
 -x, --one-file-system       don't cross filesystem boundaries
 -B, --block-size=SIZE       force a fixed checksum block-size
 -e, --rsh=COMMAND           specify the remote shell to use
     --rsync-path=PROGRAM    specify the rsync to run on the remote machine
     --existing              skip creating new files on receiver
     --ignore-existing       skip updating files that already exist on receiver
     --remove-source-files   sender removes synchronized files (non-dirs)
     --del                   an alias for --delete-during
     --delete                delete extraneous files from destination dirs
     --delete-before         receiver deletes before transfer, not during
     --delete-during         receiver deletes during the transfer
     --delete-delay          find deletions during, delete after
     --delete-after          receiver deletes after transfer, not during
     --delete-excluded       also delete excluded files from destination dirs
     --ignore-errors         delete even if there are I/O errors
     --force                 force deletion of directories even if not empty
     --max-delete=NUM        don't delete more than NUM files
     --max-size=SIZE         don't transfer any file larger than SIZE
     --min-size=SIZE         don't transfer any file smaller than SIZE
     --partial               keep partially transferred files
     --partial-dir=DIR       put a partially transferred file into DIR
     --delay-updates         put all updated files into place at transfer's end
 -m, --prune-empty-dirs      prune empty directory chains from the file-list
     --numeric-ids           don't map uid/gid values by user/group name
     --timeout=SECONDS       set I/O timeout in seconds
     --contimeout=SECONDS    set daemon connection timeout in seconds
 -I, --ignore-times          don't skip files that match in size and mod-time
     --size-only             skip files that match in size
     --modify-window=NUM     compare mod-times with reduced accuracy
 -T, --temp-dir=DIR          create temporary files in directory DIR
 -y, --fuzzy                 find similar file for basis if no dest file
     --compare-dest=DIR      also compare destination files relative to DIR
     --copy-dest=DIR         … and include copies of unchanged files
     --link-dest=DIR         hardlink to files in DIR when unchanged
 -z, --compress              compress file data during the transfer
     --compress-level=NUM    explicitly set compression level
     --skip-compress=LIST    skip compressing files with a suffix in LIST
 -C, --cvs-exclude           auto-ignore files the same way CVS does
 -f, --filter=RULE           add a file-filtering RULE
 -F                          same as --filter='dir-merge /.rsync-filter'
                             repeated: --filter='- .rsync-filter'
     --exclude=PATTERN       exclude files matching PATTERN
     --exclude-from=FILE     read exclude patterns from FILE
     --include=PATTERN       don't exclude files matching PATTERN
     --include-from=FILE     read include patterns from FILE
     --files-from=FILE       read list of source-file names from FILE
 -0, --from0                 all *-from/filter files are delimited by 0s
 -s, --protect-args          no space-splitting; only wildcard special-chars
     --address=ADDRESS       bind address for outgoing socket to daemon
     --port=PORT             specify double-colon alternate port number
     --sockopts=OPTIONS      specify custom TCP options
     --blocking-io           use blocking I/O for the remote shell
     --stats                 give some file-transfer stats
 -8, --8-bit-output          leave high-bit chars unescaped in output
 -h, --human-readable        output numbers in a human-readable format
     --progress              show progress during transfer
 -P                          same as --partial --progress
 -i, --itemize-changes       output a change-summary for all updates
     --out-format=FORMAT     output updates using the specified FORMAT
     --log-file=FILE         log what we're doing to the specified FILE
     --log-file-format=FMT   log updates using the specified FMT
     --password-file=FILE    read daemon-access password from FILE
     --list-only             list the files instead of copying them
     --bwlimit=KBPS          limit I/O bandwidth; KBytes per second
     --write-batch=FILE      write a batched update to FILE
     --only-write-batch=FILE like --write-batch but w/o updating destination
     --read-batch=FILE       read a batched update from FILE
     --protocol=NUM          force an older protocol version to be used
     --iconv=CONVERT_SPEC    request charset conversion of filenames
     --checksum-seed=NUM     set block/file checksum seed (advanced)
 -4, --ipv4                  prefer IPv4
 -6, --ipv6                  prefer IPv6
     --version               print version number
(-h) --help                  show this help (-h is --help only if used alone)</pre>



<p>Although there are many options, the most common combination of options is &#8220;avz&#8221;, which compresses and displays some information and transmits it in archive mode.</p>



<h2><strong>Use of rsync</strong></h2>



<p><strong>Synchronize data on the local disk</strong></p>



<p>The following commands synchronize individual files on your local computer from one location to another.</p>



<pre class="wp-block-preformatted">rsync -zvh backup.tar /tmp/backup/</pre>



<figure class="wp-block-image"><img loading="lazy" width="646" height="90" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/rsync.png" alt="" class="wp-image-14522" srcset="https://www.osradar.com/wp-content/uploads/2019/10/rsync.png 646w, https://www.osradar.com/wp-content/uploads/2019/10/rsync-300x42.png 300w" sizes="(max-width: 646px) 100vw, 646px" /><figcaption>rsync</figcaption></figure>



<p>We can use it &#8216;&#8211;progress &#8216;option. It shows the file that was transferred and the time remaining.</p>



<pre class="wp-block-preformatted">rsync -zvh backup.tar /tmp/backup/ --progress</pre>



<figure class="wp-block-image is-resized"><img loading="lazy" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/progress.png" alt="" class="wp-image-14521" width="693" height="128" srcset="https://www.osradar.com/wp-content/uploads/2019/10/progress.png 646w, https://www.osradar.com/wp-content/uploads/2019/10/progress-300x55.png 300w" sizes="(max-width: 693px) 100vw, 693px" /><figcaption> transferred and the time remaining </figcaption></figure>



<p>The commands will transfer or synchronize all files in the same directory to different directories on the same computer.</p>



<pre class="wp-block-preformatted">rsync -avzh /root/tomcat/ /tmp/backup/tomcat/ --progress</pre>



<figure class="wp-block-image"><img loading="lazy" width="828" height="141" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/dic.png" alt="" class="wp-image-14523" srcset="https://www.osradar.com/wp-content/uploads/2019/10/dic.png 828w, https://www.osradar.com/wp-content/uploads/2019/10/dic-300x51.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/dic-768x131.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/dic-696x119.png 696w" sizes="(max-width: 828px) 100vw, 828px" /></figure>



<h4>Use the &#8211;include and &#8211;exclude options  </h4>



<p><br>These two options allow us to include exclude files and folders by specifying parameters with which these options can help us specify which files and folders to include and exclude during synchronization. You do not want to be moved to these files or directories.<br>Here, in this example, the rsync command will include only those files and directories that end with a &#8220;log&#8221; and exclude end with a &#8220;war&#8221;  files and directories.</p>



<pre class="wp-block-preformatted">rsync -avzh  --include '*<em>log' --exclude '</em>*war' /root/tomcat/ /tmp/backup/tomcat/ --progress</pre>



<figure class="wp-block-image is-resized"><img loading="lazy" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_15707657927042.png" alt="" class="wp-image-14524" width="691" height="445" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707657927042.png 644w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707657927042-300x193.png 300w" sizes="(max-width: 691px) 100vw, 691px" /><figcaption>show</figcaption></figure>



<h4> Use the &#8211;delete</h4>



<p>If the file or directory does not exist at the source but already exists at the destination, you may need to delete the existing file/directory at the destination during synchronization.</p>



<p>We can use the &#8216;&#8211;delete&#8217; option to delete files that do not exist in the source directory. Source and target are synchronized. Now, create a new target file, test.txt.</p>



<pre class="wp-block-preformatted">touch /tmp/backup/tomcat/123.txt
ls /tmp/backup/tomcat/          
rsync -avzh --delete  /root/tomcat/ /tmp/backup/tomcat/ --progress
ls /tmp/backup/tomcat/                                            </pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="184" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_15707736326750-1024x184.png" alt="" class="wp-image-14525" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707736326750-1024x184.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707736326750-300x54.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707736326750-768x138.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707736326750-696x125.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707736326750.png 1067w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption> &#8216;&#8211;delete&#8217; option to delete files </figcaption></figure>



<p>The target has the name test.txt, and when synchronizing the new file with the source of the &#8216;-delete&#8217; option, it removes the file test.txt.</p>



<h4>Sets the maximum size of the file to transfer</h4>



<p>You can do this with the &#8212; max-size option. Here, in this example, the maximum file size is 200K, so the command will only pass smaller files equal to or greater than 200K.</p>



<pre class="wp-block-preformatted">rsync -avzh --max-size='200k'  /root/tomcat/ /tmp/backup/tomcat/ --progress</pre>



<figure class="wp-block-image"><img loading="lazy" width="937" height="369" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_1570774452934.png" alt="" class="wp-image-14526" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_1570774452934.png 937w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_1570774452934-300x118.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_1570774452934-768x302.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_1570774452934-696x274.png 696w" sizes="(max-width: 937px) 100vw, 937px" /><figcaption>  file size &lt;200k</figcaption></figure>



<h4>Set bandwidth limits and transfer files</h4>



<p>You can transfer data from one machine to another at the same time with the help of the &#8216;&#8211;bwlimit&#8217; option. This option helps limit I/O bandwidth.</p>



<pre class="wp-block-preformatted">rsync -avzh --bwlimit=10  /root/tomcat/ /tmp/backup/tomcat/ --progress
rsync -avzh --bwlimit=50  /root/tomcat/ /tmp/backup/tomcat/ --progress</pre>



<figure class="wp-block-image"><img loading="lazy" width="996" height="160" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_15707748512246.png" alt="" class="wp-image-14527" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707748512246.png 996w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707748512246-300x48.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707748512246-768x123.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707748512246-696x112.png 696w" sizes="(max-width: 996px) 100vw, 996px" /><figcaption>Different bandwidth Settings have different speeds</figcaption></figure>



<h3><strong> Remotely synchronize data  using ssh-based rsync</strong></h3>



<p>Through the introduction of synchronizing data on a local disk, we learned about the most common options. The options for remote transport are the same as for local transport. So we&#8217;ll cover only the basic format of remote transmission. If you need to use other options, you can choose according to the above description</p>



<h4>Use SSH to copy files from the local server to the remote server</h4>



<p>To specify the protocol to use rsync, you need to give the protocol you want to use the &#8220;-e&#8221; option. Here, in this example, we will use &#8220;SSH&#8221; with the &#8220;-e&#8221; option &#8220;-p&#8221; to specify the transport port and perform the data transfer.</p>



<pre class="wp-block-preformatted">rsync -zvh -e "ssh -p12598" backup.tar root@172.16.6.250:/tmp/backup/ --progress</pre>



<figure class="wp-block-image"><img loading="lazy" width="1002" height="177" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_15707760268792.png" alt="" class="wp-image-14528" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707760268792.png 1002w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707760268792-300x53.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707760268792-768x136.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707760268792-696x123.png 696w" sizes="(max-width: 1002px) 100vw, 1002px" /></figure>



<h4>Copy files from remote server to local server via SSH </h4>



<pre class="wp-block-preformatted">rsync -zvh -e "ssh -p12598"  root@172.16.6.250:/tmp/backup/*  /tmp/  --progress</pre>



<figure class="wp-block-image"><img loading="lazy" width="948" height="98" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_15707764389100.png" alt="" class="wp-image-14529" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707764389100.png 948w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707764389100-300x31.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707764389100-768x79.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15707764389100-696x72.png 696w" sizes="(max-width: 948px) 100vw, 948px" /></figure>



<h2><strong>conclusion</strong></h2>



<p>The above article introduced two working modes of rsync: local transmission and remote transmission via SSH protocol. The third working mode is transmission via rsync Daemon. <a href="https://www.google.com/search?q=rsync+daemon">Rsync Daemon</a> commands are basically the same as using SSH. The only change is that the destination address is transferred according to the alias defined in Rsync Daemon instead of IP. </p>



<p>If you want to know more about rsync, please leave me a message To learn more about Linux, please follow <a href="https://www.osradar.com/author/sky/">my link</a>. Thank you </p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/synchronous-data-using-rsync-command-in-linux/">Synchronous data Using rsync Command in Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/synchronous-data-using-rsync-command-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
