Linux命令---rsync
用途:
rsync 主要用於備份和映象。具有速度快、避免複製相同內容和支援符號連結的優點。
rsync 和 scp 區別:
用 rsync 做檔案的複製要比 scp 的速度快,rsync 只對差異檔案做更新。scp 是把所有檔案都複製過去。
基本語法:
rsync -rvl /usr/local/xxx.txt root@hadoop201:/usr/local
說明:
- rsync:命令
- -rvl:
-r
遞迴-v
顯示覆制過程-l
拷貝符號連結 - /usr/local/xxx.txt:要拷貝的檔案路徑/名稱
- root:目的主機使用者名稱(此處以
root
為例,也可以是其他使用者名稱) - @:必填,不能省略
- hadoop201:目的主機地址(可以是ip,可以配置hosts)
- 冒號:必填,不能省略
- /usr/local:目的地路徑
用法:
把 hadoop201機器上的 /opt/software 目錄同步到 hadoop202 伺服器的 root 使用者下的 /opt/ 目錄
[root@hadoop201 opt]$ rsync -rvl /opt/software/ root@hadoop202:/opt/software
相關文章
- rsync 命令及其示例
- rsync命令快速刪大檔案
- 【Linux】Rsync的剖析與使用Linux
- Linux中什麼是Rsync?Linux
- Linux 檔案同步工具之 rsyncLinux
- Linux下rsync安裝與配置Linux
- linux 利用rsync實現檔案增量同步Linux
- 完全解析Rsync命令的17個備份選項
- Linux之rsync同步分發指令碼編寫.Linux指令碼
- Linux 中 rsync 備份資料使用例項Linux
- Linux中rsync備份資料使用例項Linux
- rsync
- 常用命令--複製-備份--cp--mv--scp--rsync
- 慎用rsync
- 【Linux命令】grep命令Linux
- Linux命令—–CP命令Linux
- Linux-中-rsync-備份資料使用例項Linux
- linux命令大全-linux命令使用和管理Linux
- Linux命令Linux
- Linux命令(1)——xargs命令Linux
- Linux命令之lldptool命令Linux
- Linux命令篇 - sed 命令Linux
- Linux命令篇 - grep 命令Linux
- Linux命令篇 - tar 命令Linux
- Linux下如何使用Rsync備份伺服器重要資料Linux伺服器
- rsync和NFS有哪些面試題?Linux面試題分享NFS面試題Linux
- Rsync安全配置
- rsync 用法教程
- rsync 使用示例
- Linux命令之rz命令與sz命令Linux
- linux每日命令(5):mkdir命令Linux
- linux-mysql命令,tomcat命令LinuxMySqlTomcat
- linux每日命令(2):cd命令Linux
- linux每日命令(18):whereis命令Linux
- linux每日命令(12):nl命令Linux
- linux每日命令(10):touch命令Linux
- linux每日命令(11):cat命令Linux
- linux每日命令(38):iostat命令LinuxiOS