Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/books/learning_rsync/01_rsync_overview.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ update: 2021-11-04

![ 安德鲁-特里杰尔 ](images/Andrew_Tridgell.jpg) ![ 韦恩-戴维森 ](images/Wayne_Davison.jpg)

!!! note "注意" **Rsync本身只是一个增量备份工具,不具备实时数据同步功能(需要其他程序做补充)。 此外,同步是单向的。 如果要实现双向同步,需要配合其他工具。**
!!! note "注意!" **Rsync本身只是一个增量备份工具,不具备实时数据同步功能(需要其他程序做补充)。 此外,同步是单向的。 如果要实现双向同步,需要配合其他工具。**

### 基本原理和特点

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Last login: Tue Nov 2 21:42:44 2021 from 192.168.100.5
[testrsync@Rocky ~]$
```

!!! tip "注意!" !!! tip "注意!" 服务器的配置文件 **/etc/ssh/sshd_config** 应该打开 <font color=red>PubkeyAuthentication yes</font>
!!! tip "注意!" 服务器的配置文件 **/etc/ssh/sshd_config** 应该打开 <font color=red>PubkeyAuthentication yes</font>

## rsync协议免密验证登录

Expand Down Expand Up @@ -93,4 +93,4 @@ sent 30 bytes received 193 bytes 148.67 bytes/sec
total size is 883 speedup is 3.96
```

!!! tip "提示!" !!! tip "提示!" 您可以将这个变量写入到 **/etc/profile** 当中,让其永久生效。 内容为:`export RSYNC_PASSWORD=13579`
!!! tip "提示!" 您可以将这个变量写入到 **/etc/profile** 当中,让其永久生效。 内容为:`export RSYNC_PASSWORD=13579`
4 changes: 2 additions & 2 deletions docs/books/learning_rsync/06_rsync_inotify.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ update: 2021-11-04

# 编译安装

在服务器中执行以下操作, 在你的环境中,可能会缺少一些依赖的包, 在服务器中执行以下操作,在你的环境中,可能会缺少一些依赖的包,安装上——`dnf -y install autoconf automake libtool`
在服务器中执行以下操作, 在你的环境中,可能会缺少一些依赖的包, 使用以下方式安装它们: `dnf -y install autoconf automake libtool`

```bash
[root@Rocky ~]# wget -c https://github.com/inotify-tools/inotify-tools/archive/refs/tags/3.21.9.6.tar.gz
Expand Down Expand Up @@ -76,7 +76,7 @@ inotifywait 主要有以下选项:
-e 指定监控数据的事件类型,多个事件类型用英文状态的逗号隔开
```

事件有这些,如下
事件类型如下

| 事件类型 | 说明 |
| ------------- | -------------------------- |
Expand Down