आप rsync का उपयोग कर सकते हैं।
Listing one: make_snapshot.sh
#!/bin/bash
# ----------------------------------------------------------------------
# mikes handy rotating-filesystem-snapshot utility
# ----------------------------------------------------------------------
# this needs to be a lot more general, but the basic idea is it makes
# rotating backup-snapshots of /home whenever called
# ----------------------------------------------------------------------
unset PATH # suggestion from H. Milz: avoid accidental use of $PATH
# ------------- system commands used by this script --------------------
ID=/usr/bin/id;
ECHO=/bin/echo;
MOUNT=/bin/mount;
RM=/bin/rm;
MV=/bin/mv;
CP=/bin/cp;
TOUCH=/bin/touch;
RSYNC=/usr/bin/rsync;
# ------------- file locations -----------------------------------------
MOUNT_DEVICE=/dev/hdb1;
SNAPSHOT_RW=/root/snapshot;
EXCLUDES=/usr/local/etc/backup_exclude;
# ------------- the script itself --------------------------------------
# make sure we're running as root
if (( `$ID -u` != 0 )); then { $ECHO "Sorry, must be root. Exiting..."; exit; } fi
# attempt to remount the RW mount point as RW; else abort
$MOUNT -o remount,rw $MOUNT_DEVICE $SNAPSHOT_RW ;
if (( $? )); then
{
$ECHO "snapshot: could not remount $SNAPSHOT_RW readwrite";
exit;
}
fi;
# rotating snapshots of /home (fixme: this should be more general)
# step 1: delete the oldest snapshot, if it exists:
if [ -d $SNAPSHOT_RW/home/hourly.3 ] ; then \
$RM -rf $SNAPSHOT_RW/home/hourly.3 ; \
fi ;
# step 2: shift the middle snapshots(s) back by one, if they exist
if [ -d $SNAPSHOT_RW/home/hourly.2 ] ; then \
$MV $SNAPSHOT_RW/home/hourly.2 $SNAPSHOT_RW/home/hourly.3 ; \
fi;
if [ -d $SNAPSHOT_RW/home/hourly.1 ] ; then \
$MV $SNAPSHOT_RW/home/hourly.1 $SNAPSHOT_RW/home/hourly.2 ; \
fi;
# step 3: make a hard-link-only (except for dirs) copy of the latest snapshot,
# if that exists
if [ -d $SNAPSHOT_RW/home/hourly.0 ] ; then \
$CP -al $SNAPSHOT_RW/home/hourly.0 $SNAPSHOT_RW/home/hourly.1 ; \
fi;
# step 4: rsync from the system into the latest snapshot (notice that
# rsync behaves like cp --remove-destination by default, so the destination
# is unlinked first. If it were not so, this would copy over the other
# snapshot(s) too!
$RSYNC \
-va --delete --delete-excluded \
--exclude-from="$EXCLUDES" \
/home/ $SNAPSHOT_RW/home/hourly.0 ;
# step 5: update the mtime of hourly.0 to reflect the snapshot time
$TOUCH $SNAPSHOT_RW/home/hourly.0 ;
# and thats it for home.
# now remount the RW snapshot mountpoint as readonly
$MOUNT -o remount,ro $MOUNT_DEVICE $SNAPSHOT_RW ;
if (( $? )); then
{
$ECHO "snapshot: could not remount $SNAPSHOT_RW readonly";
exit;
} fi;
और दूसरा:
Listing two: daily_snapshot_rotate.sh
#!/bin/bash
# ----------------------------------------------------------------------
# mikes handy rotating-filesystem-snapshot utility: daily snapshots
# ----------------------------------------------------------------------
# intended to be run daily as a cron job when hourly.3 contains the
# midnight (or whenever you want) snapshot; say, 13:00 for 4-hour snapshots.
# ----------------------------------------------------------------------
unset PATH
# ------------- system commands used by this script --------------------
ID=/usr/bin/id;
ECHO=/bin/echo;
MOUNT=/bin/mount;
RM=/bin/rm;
MV=/bin/mv;
CP=/bin/cp;
# ------------- file locations -----------------------------------------
MOUNT_DEVICE=/dev/hdb1;
SNAPSHOT_RW=/root/snapshot;
# ------------- the script itself --------------------------------------
# make sure we're running as root
if (( `$ID -u` != 0 )); then { $ECHO "Sorry, must be root. Exiting..."; exit; } fi
# attempt to remount the RW mount point as RW; else abort
$MOUNT -o remount,rw $MOUNT_DEVICE $SNAPSHOT_RW ;
if (( $? )); then
{
$ECHO "snapshot: could not remount $SNAPSHOT_RW readwrite";
exit;
}
fi;
# step 1: delete the oldest snapshot, if it exists:
if [ -d $SNAPSHOT_RW/home/daily.2 ] ; then \
$RM -rf $SNAPSHOT_RW/home/daily.2 ; \
fi ;
# step 2: shift the middle snapshots(s) back by one, if they exist
if [ -d $SNAPSHOT_RW/home/daily.1 ] ; then \
$MV $SNAPSHOT_RW/home/daily.1 $SNAPSHOT_RW/home/daily.2 ; \
fi;
if [ -d $SNAPSHOT_RW/home/daily.0 ] ; then \
$MV $SNAPSHOT_RW/home/daily.0 $SNAPSHOT_RW/home/daily.1; \
fi;
# step 3: make a hard-link-only (except for dirs) copy of
# hourly.3, assuming that exists, into daily.0
if [ -d $SNAPSHOT_RW/home/hourly.3 ] ; then \
$CP -al $SNAPSHOT_RW/home/hourly.3 $SNAPSHOT_RW/home/daily.0 ; \
fi;
# note: do *not* update the mtime of daily.0; it will reflect
# when hourly.3 was made, which should be correct.
# now remount the RW snapshot mountpoint as readonly
$MOUNT -o remount,ro $MOUNT_DEVICE $SNAPSHOT_RW ;
if (( $? )); then
{
$ECHO "snapshot: could not remount $SNAPSHOT_RW readonly";
exit;
} fi;
अपनी आवश्यकताओं के लिए स्क्रिप्ट बनाने के बाद इसे क्रोन नौकरियों में जोड़ें।
Crontab -e
निम्नलिखित जोड़ें:
0 * / 4 * * * /usr /local/bin/make_snapshot.sh
० १३ * * * * /rr/local/bin/daily_snapshot_rotate.sh
वे make_snapshot.sh को हर चार घंटे पर और दैनिक_snapshot_rotate.sh को हर दिन 13:00 (यानी, 1:00 PM) पर चलाने का कारण बनाते हैं।
स्रोत: http://www.mikerubel.org/ computers/ rsync_snapshots/
* * * * * command to be executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
यदि आप चाहते हैं कि यह प्रति घंटा चले तो आप प्रत्येक घंटे के लिए क्रोन की नौकरी जोड़ देंगे।
एक अन्य संभावित विकल्प rsnapshot का उपयोग कर रहा है
Rsnapshot स्थापित करें (सॉफ्टवेयर केंद्र में उपलब्ध)
Rsnapshot कॉन्फ़िगर करें और बैकअप स्रोत निर्देशिका निर्दिष्ट करें
/Etc/rsnapshot.conf को खोलें और निम्न पंक्तियों को अनलिमिटेड करें।
# nano /etc/rsnapshot.conf
cmd_cp /bin/cp
cmd_ssh /usr/bin/ssh
cmd_du /usr/bin/du
cmd_rsnapshot_diff /usr/local/bin/rsnapshot-diff
logfile /var/log/rsnapshot
नीचे दिखाए गए अनुसार अपनी गंतव्य निर्देशिकाओं को /etc/rsnapshot.conf में परिभाषित करें। इस उदाहरण में,
/ होम - स्रोत निर्देशिका जो बैकअप-संग्रहित की जाएगी, स्थानीय बैकअप / - गंतव्य निर्देशिका का बैकअप होना चाहिए। कृपया ध्यान दें कि यह निर्देशिका अंतिम चरण में दिखाए गए अनुसार /.snapshots/ellinginternal.narios/ निर्देशिका के तहत बनाई जाएगी।
नैनो /etc/rsnapshot.conf
बैकअप / घर / लोकलहोस्ट /
Rsnapshot कॉन्फ़िगरेशन का परीक्षण करें
सुनिश्चित करें कि rsnapshot सेटअप ठीक से तैयार है और linux rsync बैकअप करने के लिए तैयार है, इसके लिए कॉन्फ़िगरेशन टेस्ट करें।
# rsnapshot configtest
Syntax OK
- Rsnapshot प्रति घंटा बैकअप कॉन्फ़िगरेशन की जाँच करें
आप विभिन्न अंतराल पर लिनक्स निर्देशिकाओं या फ़ाइलों का बैकअप ले सकते हैं। डिफ़ॉल्ट रूप से, प्रति घंटा और दैनिक बैकअप कॉन्फ़िगर किए जाते हैं।
प्रति घंटा बैकअप कॉन्फ़िगरेशन की जाँच करें।
# rsnapshot -t hourly
echo 6490 > /var/run/rsnapshot.pid
mkdir -m 0700 -p /.snapshots/
mkdir -m 0755 -p /.snapshots/hourly.0/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /home \
/.snapshots/hourly.0/localhost/
mkdir -m 0755 -p /.snapshots/hourly.0/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /etc \
/.snapshots/hourly.0/localhost/
mkdir -m 0755 -p /.snapshots/hourly.0/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
/usr/local /.snapshots/hourly.0/localhost/
touch /.snapshots/hourly.0/
- Rsnapshot दैनिक बैकअप कॉन्फ़िगरेशन सत्यापित करें
सत्यापित करें कि दैनिक rsnapshot cwrsync बैकअप प्रक्रिया ठीक से कॉन्फ़िगर की गई है।
# rsnapshot -t daily
echo 6493 > /var/run/rsnapshot.pid
mkdir -m 0700 -p /.snapshots/
/.snapshots/hourly.5 not present (yet), nothing to copy
- Rsnapshot के लिए Crontab Entry जोड़ें
एक बार जब आप यह सत्यापित कर लेते हैं कि rsnapshot cwrsync उपयोगिता में rsync प्रति घंटा और दैनिक बैकअप कॉन्फ़िगरेशन ठीक से सेटअप हैं, तो नीचे दिखाए गए अनुसार इस पिल्ला को crontab में सेट करने का समय है।
# crontab -e
0 */4 * * * /usr/local/bin/rsnapshot hourly
30 23 * * * /usr/local/bin/rsnapshot daily
स्रोत: http://www.thegeekstuff.com/2009/08/tutorial-backup-linux-using-rsnapshot-rsync-utility/
---- नंगे धातु की वसूली
मैं डीडी और टार का उपयोग नंगेपन की वसूली के लिए करूंगा।
बैकअप महत्वपूर्ण मेटाडेटा:
# dd if-/dev/hda of=/backups/mbr bs=512 count=1
ऑपरेटिंग सिस्टम का बैकअप लें:
# mkdir /backups
# mount nfsserver:/backups/<servername> /backups
# cd /
# tar cfz /backups/system.tar.gz --exclude /mnt --exclude /proc --exclude /backups
मैं व्यक्तिगत रूप से अपने सिस्टम को ऑफ-लाइन लेना चाहूंगा, अगर मैं एक बेयरमेटल रिस्टोर फाइल बनाना चाहता हूं।