美文网首页LinuxLinux
4-10.1 Linux 中的文件同步传输 --- rsync

4-10.1 Linux 中的文件同步传输 --- rsync

作者: 捌千里路雲和月 | 来源:发表于2021-07-25 15:21 被阅读0次
    • 本地使用 rsync 进行传输,熟悉 rsync 常用参数功能 。
    • 4-10-1 内容:
      1、rsync 不加参数传输文件。
      2、-a,--archive:归档模式,递归传输和保存文件属性。
      3、源文件与目标文件大小、时间属性一致。rsync -a / --archive 目标文件不会发生变化。
      4、源文件和目标文件大小、时间属性不一致,rsync -a / --archive 目标文件会更新为源文件。
      5、源文件与目标文件大小、时间属性一致。但,权限属性不一致。rsync -a / --archive 目标文件也会更新为源文件一致的权限属性。

    • 首先创建测试资料。~ 家目录下新建一个 test 目录作为测试资料的装载目录(父目录)。test 目录下新建 SRC 目录用作源文件的目录。SRC 目录下新建三个文件,分别是 demo1.txt、demo2.txt 和 demo3.txt。
    [root@localhost ~]# mkdir test    ## 家目录下新建 test 目录
    [root@localhost ~]# 
    [root@localhost ~]# cd test/
    [root@localhost test]# 
    [root@localhost test]# mkdir SRC    ## test 目录下新建 SRC 目录
    [root@localhost test]# 
    [root@localhost test]# cd SRC/
    [root@localhost SRC]# 
    
    ## SRC 目录下新建 demo1.txt、demo2.txt 和 demo3.txt 三个文件
    [root@localhost SRC]# touch demo1.txt ; touch demo2.txt ; touch demo3.txt    
    [root@localhost SRC]# 
    [root@localhost SRC]# ll    ## 查看新建的文件
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    0 directories, 3 files
    
    • 安装 tree 工具,树形显示目录结构,方便查看,yum -y install tree。
    [root@localhost test]# 
    [root@localhost test]# rpm -qa tree      ## 查看系统有没有安装 tree 包
    
    ## 没有返回空,有会返回 rpm包。有 tree包不用再安装。
    [root@localhost test]#                  
    [root@localhost test]# yum -y install tree      ## yum 安装 tree 包。
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.aliyun.com
     * extras: mirrors.aliyun.com
     * updates: mirrors.aliyun.com
    base                                                                            | 3.6 kB  00:00:00     
    extras                                                                          | 2.9 kB  00:00:00     
    updates                                                                         | 2.9 kB  00:00:00     
    Resolving Dependencies
    --> Running transaction check
    ---> Package tree.x86_64 0:1.6.0-10.el7 will be installed
    --> Finished Dependency Resolution
    
    Dependencies Resolved
    
    =======================================================================================================
     Package              Arch                   Version                        Repository            Size
    =======================================================================================================
    Installing:
     tree                 x86_64                 1.6.0-10.el7                   base                  46 k
    
    Transaction Summary
    =======================================================================================================
    Install  1 Package
    
    Total download size: 46 k
    Installed size: 87 k
    Downloading packages:
    tree-1.6.0-10.el7.x86_64.rpm                                                    |  46 kB  00:00:00     
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
    Warning: RPMDB altered outside of yum.
      Installing : tree-1.6.0-10.el7.x86_64                                                            1/1 
      Verifying  : tree-1.6.0-10.el7.x86_64                                                            1/1 
    
    Installed:
      tree.x86_64 0:1.6.0-10.el7      ## 安装完成会显示 tree 包的版本                                                                           
    
    Complete!
    
    ## test 目录下输入 tree 就可以树形结构显示 test 目录下的文件信息。
    [root@localhost test]# tree
    .
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    1 directory, 3 files
    [root@localhost test]# 
    
    

    1、rsync 不加参数传输文件。

    • 步骤如下:
    • ~ 家目录下创建一个 backup_null_option 目录,用作目标目录(备份目录)。
    • 查看当前目录结构和 SRC 目录下的文件详情。
    • rsync 不加参数和 cp 不加参数传输文件对比。
    • 查看 backup_null_option 、SRC 目录下的文件进行对比,查看当前目录结构。
    ## 第一阶段:创建 backup_null_option 目标目录
    
    [root@localhost test]# mkdir backup_null_option   
    [root@localhost test]# 
    -----------------------------------------------------------------
    
    ## 第二阶段:查看当前目录结构和 SRC 目录下的文件详情。
    
    [root@localhost test]# tree    ## 当前目录结构
    .
    ├── backup_null_option
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    2 directories, 3 files
    [root@localhost test]# 
    
    [root@localhost test]# 
    [root@localhost test]# ll SRC/    ## SRC 源目录下的文件详情
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    ------------------------------------------------------------------
    
    ## 第三阶段:rsync 不加参数和 cp 不加参数传输 SRC文件对比。
    
    [root@localhost test]# 
    ## rsync 不加参数传输 SRC 目录下 demo1.txt 文件到 backup_null_option/ 目录。
    [root@localhost test]# rsync SRC/demo1.txt backup_null_option/    
    [root@localhost test]# 
    ## cp 不加参数传输 SRC 目录下 demo2.txt 文件到 backup_null_option/ 目录。
    [root@localhost test]# cp SRC/demo2.txt backup_null_option/
    [root@localhost test]# 
    -------------------------------------------------------------------
    
    ##  第四阶段:查看 backup_null_option 、SRC 目录下的文件进行对比,和查看当前目录结构。
    
    [root@localhost test]# ll backup_null_option/    ## backup_null_option 目标目录下的文件详情
    total 0
    ## demo1.txt、demo2.txt 文件时间和 SRC 源目录下的不一致。
    -rw-r--r--. 1 root root 0 Jul 22 23:31 demo1.txt    
    -rw-r--r--. 1 root root 0 Jul 22 23:31 demo2.txt
    [root@localhost test]# 
    [root@localhost test]# tree    ## 现时目录结构
    .
    ├── backup_null_option
    │   ├── demo1.txt
    │   └── demo2.txt
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    2 directories, 5 files
    [root@localhost test]# 
    
    • 通过上述的测试,不加参数的 rsync 传输文件 和 cp 不加参数效果一样,目标目录的文件都是跟系统时间,时间属性相对于源文件时间属性有所改变。

    2、-a,--archive:归档模式,递归传输和保存文件属性。

    • 步骤如下:
    • test 目录下创建一个 backups_a 用作目标目录。
    • test 目录下新建 SRC 目录用作装载源文件的目录。SRC 目录下新建三个文件,分别是 demo1.txt、demo2.txt 和 demo3.txt。
    • 目录结构如 tree 所示。
    • 列出 SRC 目录下的文件详细信息,留意源文件的时间。
    • 分别使用 rsync -a、rsync --archive 和 cp -p 把 SRC 目录下的源文件传输到 backups_a 目录。
    • 执行完上述命令后,用 tree 查看新的目录结构。
    • 查看 backups_a 目标目录接收的文件 对比 SRC 下的源文件属性是否一致。
    ## 第一阶段:
    ## test 目录下创建一个 backups_a 用作目标目录。
    ## test 目录下新建 SRC 目录用作装载源文件的目录。
    ## SRC 目录下新建三个文件,分别是 demo1.txt、demo2.txt 和 demo3.txt。
    ## 目录结构如 tree 所示。
    ## 列出 SRC 目录下的文件详细信息,留意源文件的时间。
    
    [root@localhost test]# tree
    .
    ├── backups_a
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    2 directories, 3 files
    [root@localhost test]# ll SRC/
    total 0
    -rw-r--r--. 1 root root 0 Jul 23 11:11 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 23 11:11 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 23 11:11 demo3.txt
    ------------------------------------------------------------------
    
    ## 第二阶段:
    ## 分别使用 rsync -a、rsync --archive 和 cp -p 把 SRC 目录下的源文件传输到 backups_a 目录。
    
    [root@localhost test]# 
    [root@localhost test]# 
    [root@localhost test]# rsync -a SRC/demo1.txt backups_a/
    [root@localhost test]# 
    [root@localhost test]# rsync --archive SRC/demo2.txt backups_a/
    [root@localhost test]# 
    [root@localhost test]# cp -p SRC/demo3.txt backups_a/
    [root@localhost test]#
    ---------------------------------------------------------------------------
    
    ## 第三阶段:
    ## 执行完上述命令后,用 tree 查看新的目录结构。
    ## 查看 backups_a 目标目录接收的文件 对比 SRC 下的源文件属性是否一致。 
    
    [root@localhost test]# tree
    .
    ├── backups_a
    │   ├── demo1.txt
    │   ├── demo2.txt
    │   └── demo3.txt
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    2 directories, 6 files
    [root@localhost test]# 
    [root@localhost test]# ll backups_a/
    total 0
    -rw-r--r--. 1 root root 0 Jul 23 11:11 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 23 11:11 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 23 11:11 demo3.txt
    [root@localhost test]# 
    
    

    通过上述的测试,rsync -a、rsync --archive 和 cp -p 效果一致,都可以原属性一起传输 或 复制到目标目录。


    3、当源文件与目标文件大小、时间属性一致时,rsync -a / --archive 目标文件不会发生变化。

    [root@localhost test]# tree    ##当前目录结构
    .
    ├── backups_a
    │   ├── demo1.txt
    │   ├── demo2.txt
    │   └── demo3.txt
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    2 directories, 6 files
    [root@localhost test]# 
    [root@localhost test]#
    [root@localhost test]# ll backups_a/    ## backups_a 目标目录文件详情
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    [root@localhost test]#
    [root@localhost test]# ll SRC/    ## SRC 源目录文件详情
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    ## 留意目标目录的文件 和 源目录的文件一模一样。
    ---------------------------------------------------------------------
    ## 此时执行 rsync -a / --archive 再从 SRC源目录传输一次文件到 backups_a目标目录
    ## 由于 rsync 检查发送方和接收方已有的文件大小、时间一致,所以不会更新 backups_a 的文件。
    ## SRC 目录和 backups_a 目录的文件仍然保持一致。
    [root@localhost test]#
    [root@localhost test]# rsync -a SRC/demo1.txt backups_a/
    [root@localhost test]# 
    [root@localhost test]# rsync --archive SRC/demo2.txt backups_a/
    [root@localhost test]# 
    
    ## backups_a 目标目录文件详情,与源目录文件一样。
    [root@localhost test]# ll backups_a/    
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    [root@localhost test]# ll SRC/    ## SRC 源目录文件详情
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    [root@localhost test]# tree    ## 目录结构也和原来一样
    .
    ├── backups_a
    │   ├── demo1.txt
    │   ├── demo2.txt
    │   └── demo3.txt
    └── SRC
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    2 directories, 6 files
    [root@localhost test]# 
    
    

    4、源文件和目标文件大小、时间属性不一致,rsync -a / --archive 目标文件会更新为源文件。

    • 首先把 SRC 源目录下的文件 rsync -a 备份到 SRC_backups 目录。(没有 SRC_backups 目录会自动创建)
    ## SRC 源目录下的文件备份到 SRC_backups 目录
    [root@localhost test]# rsync -a SRC/* SRC_backups    
    [root@localhost test]# 
    [root@localhost test]# tree    ## 目录结构
    .
    ├── backups_a
    │   ├── demo1.txt
    │   ├── demo2.txt
    │   └── demo3.txt
    ├── SRC
    │   ├── demo1.txt
    │   ├── demo2.txt
    │   └── demo3.txt
    └── SRC_backups
        ├── demo1.txt
        ├── demo2.txt
        └── demo3.txt
    
    3 directories, 9 files
    [root@localhost test]# ll SRC
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    [root@localhost test]# ll SRC_backups/      ## SRC_backups下的文件和 SRC目录下的文件一致
    total 0
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    
    
    • vim 编辑 SRC/demo1.txt 文件。输入demo1.txt ,Esc 输入 :wq! 保存退出。SRC/demo1.txt 文件的大小和时间会有所改变,修改时间会更改为文件保存的时间。
    [root@localhost test]# 
    [root@localhost test]# vim SRC/demo1.txt 
    demo1.txt                                                                                         
    ~                                                                                                             
    ~                                                                                                             
    :wq!
    
    [root@localhost test]# 
    [root@localhost test]# ll SRC
    total 4
    -rw-r--r--. 1 root root 10 Jul 29 00:50 demo1.txt    ## 大小变为 10,时间更新为 Jul 29 00:50
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo3.txt
    
    
    • 查看 backups_a 备份目录的 demo1.txt 详情(留意大小和时间)。然后, rsync -a SRC 目录下的 demo1.txt 到 backups_a/ 目录。rsync 检查发送方和接收方已有的文件大小、时间不一致,所以,把发送方 SRC 的 demo1.txt 文件传输到 backups_a/ 目录覆盖旧的 demo1.txt 文件。
    [root@localhost test]# 
    [root@localhost test]# ll backups_a/
    total 0
    
     ## 原 demo1.txt 大小为 0,时间为 Jul 22 22:44
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo1.txt   
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root 0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    
    ## 把 SRC 目录下添加内容的 demo1.txt 全属性传输到 backups_a 目录下
    [root@localhost test]# rsync -a SRC/demo1.txt backups_a/
    [root@localhost test]# 
    [root@localhost test]# ll backups_a/    
    total 4
    
    ## 新的 demo1.txt 大小为 10,时间为Jul 29 00:50
    -rw-r--r--. 1 root root 10 Jul 29 00:50 demo1.txt    
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
                       
    

    5、源文件与目标文件大小、时间属性一致。但,权限属性不一致。rsync -a / --archive 目标文件也会更新为源文件一致的权限属性。文件大小、时间属性不会改变。

    • 首先,查看目标目录 backups_a 和 源目录 SRC 的 demo1.txt 文件信息是一致的(大小、时间)。
    ## backups_a 的 demo1.txt 和 SRC 的 demo1.txt 信息一致。
    
    [root@localhost test]# ll backups_a/    
    total 4
    -rw-r--r--. 1 root root 10 Jul 29 00:50 demo1.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    [root@localhost test]# ll SRC
    total 4
    -rw-r--r--. 1 root root 10 Jul 29 00:50 demo1.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    
    • 修改 SRC/demo1.txt 文件权限为所属组添加写的权限 g+w,其他人添加写的权限 o+w。更改权限不会改变文件的大小和时间。
    [root@localhost test]# chmod g+w,o+w SRC/demo1.txt     ## 添加权限 g+w,o+w
    [root@localhost test]# 
    [root@localhost test]# ll SRC
    total 4
    -rw-rw-rw-. 1 root root 10 Jul 29 00:50 demo1.txt    ## 权限已经修改 -rw-rw-rw-
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    
    • rsync -a 把修改了权限的 SRC/demo1.txt 文件传输到 backups_a。backups_a 目录的 demo1.txt 权限会更新。
    [root@localhost test]# rsync -a SRC/demo1.txt backups_a/
    [root@localhost test]# 
    [root@localhost test]# ll backups_a/
    total 4
    -rw-rw-rw-. 1 root root 10 Jul 29 00:50 demo1.txt    ## 权限已经更新 -rw-rw-rw-
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo2.txt
    -rw-r--r--. 1 root root  0 Jul 22 22:44 demo3.txt
    [root@localhost test]# 
    
    

    相关文章

      网友评论

        本文标题:4-10.1 Linux 中的文件同步传输 --- rsync

        本文链接:https://www.haomeiwen.com/subject/amoymltx.html