-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1878203
commit 43c1a47
Showing
7 changed files
with
15 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,11 @@ | |
<meta name="maintainer" content="[email protected]" its:translate="no"/> | ||
<abstract> | ||
<para> | ||
Files stored in multiple devices or directories must be in synchronization with each other to ensure accuracy and maintainability of data. rsync is a tool used for transferring or copying files locally and remotely. rsync is unidirectional and it copies files only in one direction, it does not synchronize data. | ||
Instead of transmitting all the contents in the file, rsync minimizes the amount of data copied by moving only the changes within the file. Hence, this supports transfer of data over slow network connection.</para> | ||
You can use the <literal>rsync</literal> tool for transferring or copying files locally and remotely. <literal>rsync</literal> is unidirectional and it copies files only in one direction, it does not synchronize data. | ||
Instead of transmitting all the contents in the file, <literal>rsync</literal> minimizes the amount of data copied by moving only the changes within the file. Hence, this supports transfer of data over slow network connection.</para> | ||
</abstract> | ||
</info> | ||
<para>To use rsync for large files, detecting changes requires certain computing power. So ensure that machines on both source and destination have enough resources, including RAM. </para> | ||
<para>You can use rsync when large amounts of data containing only minor changes need to be transmitted regularly. Hence, this is useful when working with backups. rsync can also be useful for mirroring staging servers that store complete directory trees of Web servers to a Web server in a DMZ.</para> | ||
<para>This article includes examples that shows the usage of the rsync command to copy files locally and remotely. This document also explains how to configure and use an rsync server.</para> | ||
<para>For copying large files using <literal>rsync</literal>, detecting changes requires certain computing power. So ensure that machines on both source and destination have enough resources, including RAM. </para> | ||
<para>You can use rsync when large amount of data containing only minor changes need to be transmitted regularly. Hence, this is useful when working with backups. <literal>rsync</literal> can also be useful for mirroring staging servers that store complete directory trees of Web servers to a Web server in a DMZ.</para> | ||
<para>This article includes examples that shows the usage of the <literal>rsync</literal> to copy files locally and remotely. This document also explains how to configure and use an <literal>rsync</literal> server.</para> | ||
</topic> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,11 @@ | |
<title>Copy files with rsync</title> | ||
<meta name="maintainer" content="[email protected]" its:translate="no"/> | ||
<abstract> | ||
<para>You can use rsync on any remote machine you have access and write permissions.</para></abstract> | ||
<para>You can use <literal>rsync</literal> on any machine you have access and write permissions.</para></abstract> | ||
</info> | ||
<para>Copy files from source location to destination location by using the following example:</para> | ||
<para>Run the following command. </para> | ||
<screen>rsync [OPTION] SOURCE [SOURCE]... DESTINATION</screen> <para>You can have multiple <filename>SOURCE</filename> entries and the <filename>SOURCE</filename> and <filename>DESTINATION</filename> placeholders can be paths, URLs or both.</para> | ||
<para>The trailing slash after the directory denotes the content of the directory. No trailing slash denotes the directory itself.</para> | ||
<para>The trailing slash after the directory denotes the content of the directory and not the directory itself.</para> | ||
<para>The commonly used <filename>OPTIONS</filename> are listed below: </para> | ||
<itemizedlist> | ||
<listitem> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.