มีหลายวิธีที่จะทำสิ่งที่คุณต้องการ วิธีที่ง่ายที่สุดคือใช้pìpe:
tar zcvf - MyBackups | ssh user@server "cat > /path/to/backup/foo.tgz"
ที่นี่การบีบอัดจะถูกจัดการโดยการtar
โทรgzip
( z
แฟล็ก) คุณสามารถใช้compress
( Z
) และbzip
( j
) สำหรับ7z
ทำสิ่งนี้:
tar cf - MyBackups | 7za a -si -mx=9 -ms=on MyBackups.tar.7z |
ssh user@server "cat > /path/to/backup/foo.7z"
ที่ดีที่สุดวิธี rsync
แต่น่าจะเป็น
Rsync is a fast and extraordinarily versatile file copying tool. It can copy
locally, to/from another host over any remote shell, or to/from a remote rsync dae‐
mon. It offers a large number of options that control every aspect of its behavior
and permit very flexible specification of the set of files to be copied. It is
famous for its delta-transfer algorithm, which reduces the amount of data sent over
the network by sending only the differences between the source files and the exist‐
ing files in the destination. Rsync is widely used for backups and mirroring and
as an improved copy command for everyday use.
rsync
มีวิธีที่ตัวเลือกมากเกินไป มันคุ้มค่าที่จะอ่านผ่านพวกเขา แต่พวกเขาน่ากลัวตั้งแต่แรกเห็น สิ่งที่คุณใส่ใจในบริบทนี้คือ:
-z, --compress compress file data during the transfer
--compress-level=NUM explicitly set compression level
-z, --compress
With this option, rsync compresses the file data as it is sent to the desti‐
nation machine, which reduces the amount of data being transmitted --
something that is useful over a slow connection.
Note that this option typically achieves better compression ratios than can
be achieved by using a compressing remote shell or a compressing transport
because it takes advantage of the implicit information in the matching data
blocks that are not explicitly sent over the connection.
ดังนั้นในกรณีของคุณคุณต้องการสิ่งนี้:
rsync -z MyBackups user@server:/path/to/backup/
ไฟล์จะถูกบีบอัดในระหว่างการขนส่งและมาถึงการแตกไฟล์ที่ปลายทาง
ตัวเลือกเพิ่มเติม:
scp
ตัวเองสามารถบีบอัดข้อมูล
-C Compression enable. Passes the -C flag to ssh(1) to
enable compression.
$ scp -C source user@server:/path/to/backup
อาจมีวิธีในการรับrsync
และ7za
เล่นได้ดี แต่ไม่มีประโยชน์ในการทำเช่นนั้น ประโยชน์ของrsync
มันคือมันจะคัดลอกบิตที่มีการเปลี่ยนแปลงระหว่างไฟล์ท้องถิ่นและระยะไกล อย่างไรก็ตามการเปลี่ยนแปลงโลคัลขนาดเล็กอาจส่งผลให้ไฟล์บีบอัดแตกต่างกันมากดังนั้นจึงไม่มีประโยชน์ในการใช้ไฟล์rsync
นี้ มันซับซ้อนเพียงเรื่องที่ไม่มีประโยชน์ เพียงใช้โดยตรงssh
ดังที่แสดงด้านบน หากคุณจริงๆต้องการที่จะทำเช่นนี้คุณสามารถลองโดยให้ subshell rsync
เป็นอาร์กิวเมนต์ไปยัง ในระบบของฉันฉันไม่สามารถใช้7za
มันได้เพราะมันไม่อนุญาตให้คุณเขียนข้อมูลที่บีบอัดไปยังเทอร์มินัล บางทีการใช้งานของคุณอาจแตกต่างกัน ลองสิ่งที่ชอบ ( สิ่งนี้ไม่ได้ผลสำหรับฉัน ):
rsync $(tar cf - MyBackups | 7za a -an -txz -si -so) \
user@server:/path/to/backup
ประเด็นก็คือว่า7z
ไม่ควรนำมาใช้สำหรับการสำรองข้อมูลบน Linux ตามที่ระบุไว้ใน7z
หน้าคน:
ห้ามใช้รูปแบบ 7-zip เพื่อการสำรองข้อมูลบน Linux / Unix เพราะ:
- 7-zip ไม่ได้จัดเก็บเจ้าของ / กลุ่มของไฟล์
-z
จะช้าอย่างน้อยสองเท่า สำหรับความเร็วที่มากกว่า rsyncing over ssh ให้ตั้งค่า rsync daemon และ rsync โดยใช้-W
แฟ