Skip to content

Commit 6d38761

Browse files
committed
Edit 365
* removal of a needed comma * wording change for one line
1 parent 6bd965f commit 6d38761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/books/learning_rsync/01_rsync_overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ What are the backup methods?
2323

2424
## rsync in brief
2525

26-
On a server, I backed up the first partition to the second partition, which is commonly known as "Local backup." The specific backup tools are `tar` , `dd` , `dump` , `cp `, etc. can be achieved. But in fact, it is still "Put the eggs in the same basket." Once the hardware fails and cannot boot and start normally, the data still cannot be retrieved. In order to solve the local backup For this problem, we introduced another kind of backup --- "remote backup".
26+
On a server, I backed up the first partition to the second partition, which is commonly known as "Local backup." The specific backup tools are `tar` , `dd` , `dump` , `cp `, etc. can be achieved. But you shouldn't "put all of your eggs in the same basket." Once the hardware fails and cannot start normally, the data still cannot be retrieved." In order to solve the local backup For this problem, we introduced another kind of backup --- "remote backup".
2727

2828
Some people will say, can't I just use the `tar` or `cp` command on the first server and send it to the second server via `scp` or `sftp`?
2929

@@ -51,7 +51,7 @@ The original `rsync` was maintained by the Australian programmer <font color=red
5151

5252
How does `rsync` achieve efficient one-way data synchronization backup?
5353

54-
The core of `rsync` is its **Checksum algorithm** . If you are interested,you can go to [How Rsync works](https://rsync.samba.org/how-rsync-works.html) and [The rsync algorithm](https://rsync.samba.org/tech_report/) for more information, This section is beyond the author's competence and will not be covered too much.
54+
The core of `rsync` is its **Checksum algorithm**. If you are interested, you can go to [How Rsync works](https://rsync.samba.org/how-rsync-works.html) and [The rsync algorithm](https://rsync.samba.org/tech_report/) for more information, This section is beyond the author's competence and will not be covered too much.
5555

5656
The characteristics of `rsync` are:
5757

0 commit comments

Comments
 (0)