summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-discuss/20110717/004949.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-discuss/20110717/004949.html')
-rw-r--r--zarb-ml/mageia-discuss/20110717/004949.html131
1 files changed, 131 insertions, 0 deletions
diff --git a/zarb-ml/mageia-discuss/20110717/004949.html b/zarb-ml/mageia-discuss/20110717/004949.html
new file mode 100644
index 000000000..d74cdae7e
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110717/004949.html
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20%5BTicket%20%2316%5D%20Preferred%20backup%20program%20/%0A%09drakbackup&In-Reply-To=%3CCANDORXaTrfBNnL048aXCYtPaaDM_ux_23LwfmY-PC8PPFyeLGA%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="004944.html">
+ <LINK REL="Next" HREF="004950.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup</H1>
+ <B>Andres Kaaber</B>
+ <A HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20%5BTicket%20%2316%5D%20Preferred%20backup%20program%20/%0A%09drakbackup&In-Reply-To=%3CCANDORXaTrfBNnL048aXCYtPaaDM_ux_23LwfmY-PC8PPFyeLGA%40mail.gmail.com%3E"
+ TITLE="[Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup">andres.kaaber at gmail.com
+ </A><BR>
+ <I>Sun Jul 17 10:49:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="004944.html">[Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup
+</A></li>
+ <LI>Next message: <A HREF="004950.html">[Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#4949">[ date ]</a>
+ <a href="thread.html#4949">[ thread ]</a>
+ <a href="subject.html#4949">[ subject ]</a>
+ <a href="author.html#4949">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Once my friend, Oracle DBA, told me that backup is for weak, when he
+was restoring a lost database, manually ;)
+
+2011/7/17 Eugeni Dodonov &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-discuss">eugeni at dodonov.net</A>&gt;:
+&gt;<i> On Sat, Jul 16, 2011 at 22:33, Jeff Robins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-discuss">jeffrobinssae at gmail.com</A>&gt; wrote:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> What backup program(s) does everyone else use?
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I have multiple computers that backup to a server. &#160;The server gets
+</I>&gt;&gt;<i> backed-up to a removable hard-drive.
+</I>&gt;<i>
+</I>&gt;<i> If you are looking for a big and scalable solution, suitable for any case,
+</I>&gt;<i> and you have a dedicated server, bacula is certainly the best out there. But
+</I>&gt;<i> it is also very, very non-end-user-friendly and requires lots of config file
+</I>&gt;<i> editing to get started. But when you master it, it will save you life at
+</I>&gt;<i> each step and will do magic with your backups.
+</I>&gt;<i>
+</I>&gt;<i> If you are thinking about simple backup solution for some common directories
+</I>&gt;<i> (say, /etc/, /home/, ...), there are drakbackup and draksnapshot in
+</I>&gt;<i> Mandriva/Mageia. Each has its peculiarities, but they do the job fine in
+</I>&gt;<i> most cases.
+</I>&gt;<i>
+</I>&gt;<i> If you want to go deeper and manage your own backups and syncronization, you
+</I>&gt;<i> cannot escape much from rsync, unison, rsnapshot and tar - and its variants.
+</I>&gt;<i> There are plenty of alternatives and UIs for each of them.
+</I>&gt;<i>
+</I>&gt;<i> If you are thinking on hard-disk backup solutions, and system imaging, there
+</I>&gt;<i> are many options to choose from - ghost4linux, dd+rdiff :), dump/restore,
+</I>&gt;<i> unirecovery (but this one is still proprietary I think, and is mostly
+</I>&gt;<i> available for OEMs), and now carbono [1], which is developed by the same
+</I>&gt;<i> guys (me included, but without much time to play with it unfortunately) who
+</I>&gt;<i> developed unirecovery application at mstech.
+</I>&gt;<i>
+</I>&gt;<i> And finally, if you just want to backup some subset of files in a
+</I>&gt;<i> space-efficient manner, <A HREF="http://students.ceid.upatras.gr/~sxanth/ungit.html">http://students.ceid.upatras.gr/~sxanth/ungit.html</A>
+</I>&gt;<i> gives a nice overview about how to use git for that. Basically, it can be
+</I>&gt;<i> done with the following trivial script:
+</I>&gt;<i>
+</I>&gt;<i> #!/bin/sh
+</I>&gt;<i> for backup in /home/eugeni /etc/ /var/config; do
+</I>&gt;<i> &#160; pushd $backup
+</I>&gt;<i> &#160; git add .
+</I>&gt;<i> &#160; git commit -a -m &quot;Backed up on %d.%m.%y&quot;
+</I>&gt;<i> &#160; git push server
+</I>&gt;<i> &#160; popd
+</I>&gt;<i> done
+</I>&gt;<i>
+</I>&gt;<i> (Of course, you must setup initial git infra with 'git init', and setup
+</I>&gt;<i> remote branches for each of backup'able directories, but I'll skip those
+</I>&gt;<i> instructions as they are available in any git tutorial - just yell if you
+</I>&gt;<i> need some help with that).
+</I>&gt;<i>
+</I>&gt;<i> Besides those tricks, there are also hundreds of other backup applications
+</I>&gt;<i> and solutions. I tried to describe the most common scenarios, but it all
+</I>&gt;<i> depends on your needs of course.
+</I>&gt;<i>
+</I>&gt;<i> P.S.: Real hackers don't backup configs and applications, they commit their
+</I>&gt;<i> settings upstream and just reinstall the packages when needed :).
+</I>&gt;<i>
+</I>&gt;<i> [1] <A HREF="https://github.com/umago/carbono">https://github.com/umago/carbono</A>
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> Eugeni Dodonov
+</I>&gt;<i> <A HREF="http://eugeni.dodonov.net/">http://eugeni.dodonov.net/</A>
+</I>&gt;<i>
+</I>
+
+
+--
+A. Kaaber
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="004944.html">[Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup
+</A></li>
+ <LI>Next message: <A HREF="004950.html">[Mageia-discuss] [Ticket #16] Preferred backup program / drakbackup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#4949">[ date ]</a>
+ <a href="thread.html#4949">[ thread ]</a>
+ <a href="subject.html#4949">[ subject ]</a>
+ <a href="author.html#4949">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More information about the Mageia-discuss
+mailing list</a><br>
+</body></html>