ฉันมีไฟล์เดียวกันสองไฟล์บนเครื่องโลคัลและไฟล์รีโมต ขนาดของมันเท่ากันและไฟล์บนเครื่องโลคัลใหม่กว่าบนรีโมต - แต่ rsync ยังคงพยายามที่จะคัดลอกไฟล์
ฉันขอ rsync ดังนี้
rsync -nv -e "ssh -p 2222" user@host:/data/file.fif data/file.fif
(ถ้าฉันไม่ได้ใช้-n
ตัวเลือกมันจะเริ่มต้นการดำเนินการคัดลอก)
เอกสาร Rsync ระบุอย่างชัดเจนว่าไม่ควรเกิดขึ้น:
Rsync finds files that need to be transferred using a "quick check" algorithm (by default) that looks for files that have changed in size or in last-modified time.
ผลลัพธ์จากstat
:
# remote file
File: `data/fif/Skovorodko_Olga_45_raw.fif'
Size: 1137551966 Blocks: 2221784 IO Block: 4096 regular file
Device: fd00h/64768d Inode: 286338 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1037/ platon) Gid: ( 1047/ platon)
Access: 2013-08-08 18:40:16.907581658 +0400
Modify: 2013-07-16 12:01:09.158763284 +0400
Change: 2013-07-16 12:01:09.158763284 +0400
# local file
File: `data/fif/Skovorodko_Olga_45_raw.fif'
Size: 1137551966 Blocks: 2221792 IO Block: 4096 regular file
Device: 801h/2049d Inode: 12987232 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1005/ platon) Gid: ( 1003/ platon)
Access: 2013-08-08 19:02:57.146223369 +0400
Modify: 2013-08-08 19:02:57.146223369 +0400
Change: 2013-08-08 19:02:57.146223369 +0400
ทำไมสิ่งนี้ถึงเกิดขึ้น
UPDATE:
การทำrsync --size-only
ไฟล์ผลลัพธ์ไม่ถูกคัดลอก:
delta-transmission enabled
Skovorodko_Olga_45_raw.fif is uptodate
total: matches=0 hash_hits=0 false_alarms=0 data=0
sent 14 bytes received 114 bytes 85.33 bytes/sec
total size is 1137551966 speedup is 8887124.73 (DRY RUN)
-t
ตั้งค่าสถานะดังนั้นจึงไม่ได้ตั้งเวลาแก้ไขที่เหมาะสมในไฟล์ใหม่และการขอ rsync ต่อมากำลังพยายามอัปเดตไฟล์ใหม่ ขอบคุณ!