IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> rsync命令的用法 -> 正文阅读

[系统运维]rsync命令的用法

相比scp,多了一个重复检测,当自己本来就有时,不复制,大大减少了复制时间

(虚拟机)

先用scp

再用rsync

对比二者复制速度,可以看出rsync的速度更快

快是因为省略了一部分东西

(真机)

创建文件

?满权力

给用户和组都改成westos

?做了个链接

查看:

?(虚拟机)

?注意,/mnt? 后面带/表示光复制mnt目录里面的内容,不带/表示带着目录整个复制过来:

[root@localhost mnt]# rm -fr *
[root@localhost mnt]# history -c
[root@localhost mnt]# rsync -r root@172.25.254.111:/mnt /mnt/
root@172.25.254.111's password: 
skipping non-regular file "mnt/xizi"
[root@localhost mnt]# ls
mnt
[root@localhost mnt]# rm -fr *
[root@localhost mnt]# rsync -r root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
skipping non-regular file "xizi"
[root@localhost mnt]# ls
westosfile1  westosfile2  westosfile3  westosfile4  westosfile5
[root@localhost mnt]# 

?一般情况下跳过链接

[root@localhost mnt]# rsync -r root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
skipping non-regular file "xizi"

?如果想不跳过链接:(加l)

[root@localhost mnt]# rsync -lr root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
[root@localhost mnt]# ls
westosfile1  westosfile2  westosfile3  westosfile4  westosfile5  xizi
[root@localhost mnt]# ll
总用量 0
-rwx------. 1 root root  0 1月  12 22:26 westosfile1
-rwx------. 1 root root  0 1月  12 22:26 westosfile2
-rwx------. 1 root root  0 1月  12 22:26 westosfile3
-rwx------. 1 root root  0 1月  12 22:26 westosfile4
-rwx------. 1 root root  0 1月  12 22:26 westosfile5
lrwxrwxrwx. 1 root root 16 1月  12 22:26 xizi -> /mnt/westosfile1

但是,会发现权限没有完全过来

要想要权限完全过来:(p)

[root@localhost mnt]# rsync -lpr root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
[root@localhost mnt]# ll
总用量 0
-rwxrwxrwx. 1 root root  0 1月  12 22:30 westosfile1
-rwxrwxrwx. 1 root root  0 1月  12 22:30 westosfile2
-rwxrwxrwx. 1 root root  0 1月  12 22:30 westosfile3
-rwxrwxrwx. 1 root root  0 1月  12 22:30 westosfile4
-rwxrwxrwx. 1 root root  0 1月  12 22:30 westosfile5
lrwxrwxrwx. 1 root root 16 1月  12 22:26 xizi -> /mnt/westosfile1

用户过来:(o)

[root@localhost mnt]# rsync -lpor root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
[root@localhost mnt]# ll
总用量 0
-rwxrwxrwx. 1 westos root  0 1月  12 22:32 westosfile1
-rwxrwxrwx. 1 westos root  0 1月  12 22:32 westosfile2
-rwxrwxrwx. 1 westos root  0 1月  12 22:32 westosfile3
-rwxrwxrwx. 1 westos root  0 1月  12 22:32 westosfile4
-rwxrwxrwx. 1 westos root  0 1月  12 22:32 westosfile5
lrwxrwxrwx. 1 root   root 16 1月  12 22:26 xizi -> /mnt/westosfile1

组过来:(加g)

[root@localhost mnt]# rsync -lporg root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
[root@localhost mnt]# ll
总用量 0
-rwxrwxrwx. 1 westos westos  0 1月  12 22:33 westosfile1
-rwxrwxrwx. 1 westos westos  0 1月  12 22:33 westosfile2
-rwxrwxrwx. 1 westos westos  0 1月  12 22:33 westosfile3
-rwxrwxrwx. 1 westos westos  0 1月  12 22:33 westosfile4
-rwxrwxrwx. 1 westos westos  0 1月  12 22:33 westosfile5
lrwxrwxrwx. 1 root   root   16 1月  12 22:26 xizi -> /mnt/westosfile1

时间过来:(加t)

[root@localhost mnt]# rsync -lporgt root@172.25.254.111:/mnt/ /mnt/
root@172.25.254.111's password: 
[root@localhost mnt]# ll
总用量 0
-rwxrwxrwx. 1 westos westos  0 1月  12 22:08 westosfile1
-rwxrwxrwx. 1 westos westos  0 1月  12 21:12 westosfile2
-rwxrwxrwx. 1 westos westos  0 1月  12 21:12 westosfile3
-rwxrwxrwx. 1 westos westos  0 1月  12 21:12 westosfile4
-rwxrwxrwx. 1 westos westos  0 1月  12 21:12 westosfile5
lrwxrwxrwx. 1 root   root   16 1月  12 22:11 xizi -> /mnt/westosfile1

(真机) 默认情况下,设备文件同步不了

下面的字符文件,同步不过来

(虚拟机) 一般情况下自动跳过字符设备,加个D即可

[root@localhost mnt]# rsync -r root@172.25.254.111:/dev/pts/ /mnt/
root@172.25.254.111's password: 
skipping non-regular file "0"
skipping non-regular file "1"
skipping non-regular file "ptmx"
[root@localhost mnt]# rsync -rD root@172.25.254.111:/dev/pts/ /mnt/
root@172.25.254.111's password: 
[root@localhost mnt]# ls
0  1  ptmx  westosfile1  westosfile2  westosfile3  westosfile4  westosfile5  xizi
[root@localhost mnt]# ll
总用量 0
crw-------. 1 root   root   136, 0 1月  12 22:43 0
crw-------. 1 root   root   136, 1 1月  12 22:43 1
c---------. 1 root   root     5, 2 1月  12 22:43 ptmx
-rwxrwxrwx. 1 westos westos      0 1月  12 22:08 westosfile1
-rwxrwxrwx. 1 westos westos      0 1月  12 21:12 westosfile2
-rwxrwxrwx. 1 westos westos      0 1月  12 21:12 westosfile3
-rwxrwxrwx. 1 westos westos      0 1月  12 21:12 westosfile4
-rwxrwxrwx. 1 westos westos      0 1月  12 21:12 westosfile5
lrwxrwxrwx. 1 root   root       16 1月  12 22:11 xizi -> /mnt/westosfile1

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-01-14 02:25:19  更:2022-01-14 02:25:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 6:24:21-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码