工做中,老是常常須要傳輸文件,有不少工具很是好用,scp、sftp等。但是這些工具沒有斷點續傳的功能,一旦網絡中斷,所傳的文件都白費了,還 得從新傳輸。下面我用rsync來完成斷點續傳。注意下面要傳的文件必定要和以前的文件同樣,並且拷貝到某個主機的目錄也要一致。下面是個人一個例子。
網絡
[root@johnny]# rsync -avzP file root@172.20.7.219:/root/tmp (我這裏file指要傳送的文件)ide
Password:
building file list ...
1 file to consider
file 746602496 100% 324.23kB/s 0:37:28 (xfer#1, to-check=0/1)
sent 127779788 bytes received 170765 bytes 56279.11 bytes/sec
total size is 746602496 speedup is 5.84工具