这篇文章将为大家详细讲解有关Linux下rsync怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
rsync 是一个常用的 Linux 应用程序,用于文件同步,它可以在本地计算机与远程计算机之间,或者两个本地目录之间同步文件(但不支持两台远程计算机之间的同步)。它也可以当作文件复制工具,替代cp
和mv
命令。
#rsysnc [options] source path destination path
[root@localhost /]# rsync -zvr /home/aloft/ /backuphomedirbuilding file list ... donebash_logout bash_profile bashrc sent 472 bytes received 86 bytes 1116.00 bytes/sec total size is 324 speedup is 0.58
上面的rsync命令使用了-z来启用压缩,-v是可视化,-r是递归。上面在本地的/home/aloft/和/backuphomedir之间同步。
[root@localhost /]# rsync -azvr /home/aloft/ /backuphomedirbuilding file list ... done/ bash_logout bash_profile bashrc sent 514 bytes received 92 bytes 1212.00 bytes/sec total size is 324 speedup is 0.53
上面我们使用了-a选项,它保留了所有人和所属组、时间戳、软链接、权限,并以递归模式运行。
root@localhost /]# rsync -avz /home/aloft/ azmath@192.168.1.4:192.168.1.4:/share/rsysnctest/Password: building file list ... done/ bash_logout bash_profile bashrc sent 514 bytes received 92 bytes 1212.00 bytes/sec total size is 324 speedup is 0.53
上面的命令允许你在本地和远程机器之间同步。你可以看到,在同步文件到另一个系统时提示你输入密码。在做远程同步时,你需要指定远程系统的用户名和IP或者主机名。
[root@localhost /]# rsync -avz azmath@192.168.1.4:192.168.1.4:/share/rsysnctest/ /home/aloft/Password: building file list ... done/ bash_logout bash_profile bashrc sent 514 bytes received 92 bytes 1212.00 bytes/sec total size is 324 speedup is 0.53
上面的命令同步远程文件到本地。
[root@localhost backuphomedir]# rsync -avzi /backuphomedir /home/aloft/building file list ... donecd+++++++ backuphomedir/ >f+++++++ backuphomedir/.bash_logout >f+++++++ backuphomedir/.bash_profile >f+++++++ backuphomedir/.bashrc >f+++++++ backuphomedir/abc >f+++++++ backuphomedir/xyz sent 650 bytes received 136 bytes 1572.00 bytes/sec total size is 324 speedup is 0.41
rsync命令可以用来备份linux。
你可以在cron中使用rsync安排备份。
0 0 * * * /usr/local/sbin/bkpscript &> /dev/null vi /usr/local/sbin/bkpscript rsync -avz -e ‘ssh -p2093′ /home/test/ root@192.168.1.150:/oracle/data/
关于“Linux下rsync怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。