कई तरीके हैं जो आप चाहते हैं। सबसे आसान एक 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
जैसा कि ऊपर दिखाया गया है वैसे ही डायरेक्ट इस्तेमाल करें । यदि आप वास्तव में ऐसा करना चाहते हैं, तो आप एक तर्क के रूप में एक उपधारा देकर कोशिश कर सकते हैं rsync
। मेरे सिस्टम पर, मुझे यह काम करने के लिए नहीं मिला 7za
क्योंकि यह आपको एक टर्मिनल पर संपीड़ित डेटा लिखने की अनुमति नहीं देता है। शायद आपका कार्यान्वयन अलग है। ऐसा कुछ करने की कोशिश करें ( यह मेरे लिए काम नहीं करता है ):
rsync $(tar cf - MyBackups | 7za a -an -txz -si -so) \
user@server:/path/to/backup
एक अन्य बिंदु यह है कि 7z
लिनक्स पर बैकअप के लिए उपयोग नहीं किया जाना चाहिए । जैसा कि 7z
मैन पेज पर कहा गया है :
लिनक्स / यूनिक्स पर बैकअप उद्देश्य के लिए 7-ज़िप प्रारूप का उपयोग न करें क्योंकि:
- 7-ज़िप फ़ाइल के स्वामी / समूह को संग्रहीत नहीं करता है।
-z
कम से कम दो बार धीमा है। Ssh पर rsyncing से भी अधिक गति के लिए,-W
झंडा का उपयोग करके rsync डेमॉन और rsync की स्थापना करें (प्रतियां पूरी (w / o डेल्टा-xfer एल्गोरिथ्म फ़ाइलें)।