Answers to: which backup tool ?http://linuxexchange.org/questions/126/which-backup-tool<p>Hello,</p> <p>I'm looking for a backup tool on my (arch)linux.</p> <p>On the archlinux wiki, I've found this list : <a href="http://wiki.archlinux.org/index.php/Backup" rel="nofollow">backup programs</a>. There is so many program I don't know which one choose and when I search review on the web I still found several others which looks great.</p> <p>I'm looking for something to do incremental backup (save disk space and time), easy to recover and manipulate the backups. I'd like something easily customisable to do stuff (with bash script maybe) like "save my system every week, delete after two months", "save my home folder every day except the following folders, don't follow the links (to the partition or another) but keep them", "do incremental backup every x and a full backup every y", "save x every day, delete after after a week but keep one backup one week, two weeks, one month and three months old",...</p> <p>I'm using only linux so I don't need a cross-system solution.</p> <p>I tried <strong>rsync</strong> some times ago. It's a great tool but I had problems to keep the users and permissions. Also rsync doesn't allow to recover something else than the last backup (stop me if I'm wrong).</p> <p>I heard a lot about <strong>rdiff-backup</strong> but never tried. Advantage to be able to recover previous backup.</p> <p>In the wiki, there is <strong>link-backup</strong>. Never heard about it but it looks great, I may test it. Someone knows it ?</p> <p><strong>Unison</strong> : seen some good reviews. It has bidirectionnal synchronisation (feature, I don't really need).</p> <p><strong>rdup</strong> : another unknown program (based on hdup, like duplicity but looks more powerfull). I like <a href="http://www.miek.nl/projects/rdup/index.html" rel="nofollow">the spirit</a> of the program "not invent the wheel again and again" so instead of doing the backup, it uses another unix tool to do that. It can do compression and encryption. Problem, it copy the full file and not the difference (but if one backup fail, it's not so much a problem them). If someone has tested it, I'd really like to heard comments.</p> <p>What do you use and why ? Thank you to develop your point and explain the main feature of the program compare to another.</p>enSun, 03 Mar 2013 20:03:00 -0500Answer by Ronhttp://linuxexchange.org/questions/126/which-backup-tool/3055<p>Simple Backup for local HDD to external HDD and CrashPlan Pro to go from your local PC to the cloud. $7.99 a month for unlimited space.</p>RonSun, 03 Mar 2013 20:03:00 -0500http://linuxexchange.org/questions/126/which-backup-tool/3055Answer by Ronhttp://linuxexchange.org/questions/126/which-backup-tool/2965<p>Try Simple Backup ( sbackup ) it works wonders for me.</p>RonSun, 04 Nov 2012 10:13:17 -0500http://linuxexchange.org/questions/126/which-backup-tool/2965Answer by rantonhttp://linuxexchange.org/questions/126/which-backup-tool/2960<p>I would recommend Duplicity which is by same primary author as rdiff-backup. It does incremental backups nicely and it supports S3 storage on the backend which is how I am currently using it. Plus restoration is pretty straightforward.</p> <p>This is the site <a href="http://duplicity.nongnu.org/index.html">http://duplicity.nongnu.org/index.html</a></p>rantonWed, 31 Oct 2012 14:53:12 -0400http://linuxexchange.org/questions/126/which-backup-tool/2960Answer by Ronhttp://linuxexchange.org/questions/126/which-backup-tool/1299<pre><code> sbackup rsync bacula amanda clonezilla </code></pre> <p>..all of these and a few others are all good. It's just a matter of which tool you use. While the tool is important, no one here has mentioned methodology, which I'll recommend here.</p> <p>Do a fully weekly backup and then daily incremental backups. So if you do a full backup on Friday and your system borks on Monday, you need only install the full Friday backup followed by the incremental backups of Saturday and Sunday to get back to where you were before the crash.</p> <p>Have redundant redundancy that is redundant. In other words, have a RAID 1 setup, do your backups as noted above, and also have those same backups backed up not only locally, but off-site as well such as via an online storage facility.</p> <p>Lastly...... the most overlooked and rarely ever done step of testing your backups!! Backups that are never tested are worthless. All too often times what happens is that a system crashes and it's only then that the person finds out that their backup schema has failed them because they never tested the backups before the system crashed.</p> <p>All the geeky tools, scripts, etc are absolutely worthless unless the backups can be used to restore the system. There's many ways to bake the cake, but if the cake isn't edible, what good is it, ya know what I mean?</p>RonWed, 25 Aug 2010 14:52:12 -0400http://linuxexchange.org/questions/126/which-backup-tool/1299Answer by EricTRAhttp://linuxexchange.org/questions/126/which-backup-tool/1290<p>I recommend Amanda also. It's hard setting up but when you got it running it keeps on going. <a href="http://www.amanda.org/" rel="nofollow">Amanda Backup</a></p>EricTRAWed, 25 Aug 2010 08:42:48 -0400http://linuxexchange.org/questions/126/which-backup-tool/1290Answer by Eduard Malinschihttp://linuxexchange.org/questions/126/which-backup-tool/561<p>Hi, I'm using safekeep+rdiff-backup and it saved my neck when a RAID 5 broke (1 physical damage and one out of sync). </p> <p><a href="http://safekeep.sourceforge.net/index.shtml" rel="nofollow">http://safekeep.sourceforge.net/index.shtml</a></p>Eduard MalinschiThu, 13 May 2010 18:36:42 -0400http://linuxexchange.org/questions/126/which-backup-tool/561Answer by pmarinihttp://linuxexchange.org/questions/126/which-backup-tool/514<p>One solution that seems to have been overlooked here is Amanda (http://en.wikipedia.org/wiki/Advanced_Maryland_Automatic_Network_Disk_Archiver), it's quite popular and feature-full and its development is also supported for Enterprise-level systems.<p> There is always a trade-off in customisation if you use an off-the-shelf product, like the many suggested in these answers, but on the other hand you could have a simple set of scripts to deploy your own backup system, once you are familiar with the basic concepts of "rotation" like GFS where you have full monthly ones, weekly partial ones and daily incremental ones: <a href="http://en.wikipedia.org/wiki/Backup_rotation_scheme" rel="nofollow">http://en.wikipedia.org/wiki/Backup_rotation_scheme</a><p> Compressors like zip or rar allow you to process only the modified/new files and at the same time save space. Also remember to keep a copy of really important data off-site, for instance on a CD at a friend's place or using one of those online (cloud) file storage services like JungleDisk</p>pmariniWed, 12 May 2010 10:13:19 -0400http://linuxexchange.org/questions/126/which-backup-tool/514Answer by rahuldevalonehttp://linuxexchange.org/questions/126/which-backup-tool/297<p>Dear ! Friend, You can also use DAR for backup.you can take differential backup,Full backup.</p> <p>open following web links:-http://gradha.sdf-eu.org/textos/dar-differential-backup-mini-howto.en.html</p> <p><a href="http://www.softpedia.com/progDownload/DAR-Download-130423.html" rel="nofollow">http://www.softpedia.com/progDownload/DAR-Download-130423.html</a></p> <pre><code> Enjoy! </code></pre>rahuldevaloneWed, 05 May 2010 09:30:42 -0400http://linuxexchange.org/questions/126/which-backup-tool/297Answer by Dionhttp://linuxexchange.org/questions/126/which-backup-tool/295<p>I can recommend Luckybackup: <a href="http://luckybackup.sourceforge.net/" rel="nofollow">http://luckybackup.sourceforge.net/</a></p> <p>Very easy configurable with GUI, based on rsync. Automatically makes cron jobs.</p>DionWed, 05 May 2010 08:23:27 -0400http://linuxexchange.org/questions/126/which-backup-tool/295Answer by rndmerlehttp://linuxexchange.org/questions/126/which-backup-tool/211<p>There are basically 4 ways to backup data : (let's say we have 1Go of data to backup)</p> <p>1/ One backup of data using rsync. Pros : Fast. Only 1Go of space needed for backup. Cons : Only one backup.</p> <p>2/ Multiple copies of data (using rsync or cp or tar or zip). Let's say we keep the last 4 weeks. Pros : Multiple aged backups. For each backup, you have the full directories structure of data. Cons : 4Go of space needed .</p> <p>3/ Incremental backup (using tar or zip). Let's say we keep 1 full backup and 3 incrementals. Pros : Multiple aged backups. A bit more of 1Go of space needed. Cons : The incremental backups contain only the modified files, so it's quite difficult to find files you want to restore.</p> <p>4/ Rsync + Hard-links (the best way imo). Let's say we keep the last 4 weeks. Pros : Multiple aged backups. A bit more of 1Go of space needed. Each backup contain the full directories structure of data. Cons : Slower.</p> <p>How (4) works : It takes multiple full backups but, using hard links between files in backup N and files from backup N-1, it creates the illusion of multiple full backups. Actually the data is only stored in the first backup. The next backups are only links, plus differences (added files between backups).</p> <p>Rsnapshot (command line) and BackInTime (GUI) work this way (4).</p>rndmerleMon, 03 May 2010 22:41:08 -0400http://linuxexchange.org/questions/126/which-backup-tool/211Answer by jpvrlahttp://linuxexchange.org/questions/126/which-backup-tool/193<p>I recommend a backup expert tool(which suggests a commercial product) since you mentioned incrementals. I use a product from Acronis which has worked greatly for me in the past. It is intuitive and has many features including the ability to backup and restore dissimilar OS's for those who have have a dual boot option. I hesitate to recommend it now since it has gotten kind of pricey. The home backup product cost $50 and the plus pack is another $30 as opposed to the $35 I paid for both products about 3 years ago. If you consider your data very important that $80 may well be worth it. </p> <p>FYI: generally speaking, backing up data is relatively easy but the recovery can be a bitch if you don't manage it properly.</p>jpvrlaMon, 03 May 2010 19:42:29 -0400http://linuxexchange.org/questions/126/which-backup-tool/193Answer by Kevinhttp://linuxexchange.org/questions/126/which-backup-tool/188<p>I've been liking Back In Time on my desktop very much. On the headless server(s) rsnapshot gets my vote.</p>KevinMon, 03 May 2010 18:51:49 -0400http://linuxexchange.org/questions/126/which-backup-tool/188Answer by Yaro Kasearhttp://linuxexchange.org/questions/126/which-backup-tool/180<p>I prefer writing a good shell script that uses rsync to send your backed-up data elsewhere.You can configure an array of directories and a network target URI, then write out a script that, in this order:</p> <ol> <li>Begins a loop for each entry in the directory array.</li> <li>Adds the contents of the current directory in the array to an archive and compresses it.</li> <li>Loops to the next directory in the array.</li> <li>Once the array's done, timestamp the backup's name.</li> <li>Open an rsync connection to the specified network target and transfer the compressed archive to the specificed destination.</li> <li>Delete the oldest archive (Possibly even a maximum amount of archives can be configured.) as it's not likely to be useful anymore.</li> </ol> <p>This design is intended strongly for cronjobs. Maybe to fire off every other week to once a month, and is designed so that all the user has to do is configure what is backed up and to where the backups are sent. Could be a good use for a home file server, but it can even even send backups across the Internet if you so desire.</p>Yaro KasearMon, 03 May 2010 16:45:48 -0400http://linuxexchange.org/questions/126/which-backup-tool/180Answer by beachboy2http://linuxexchange.org/questions/126/which-backup-tool/164<p>rsync seems to fit the bill. If you prefer a GUI version of rsync, have a look at Back In Time.</p> <p><a href="http://backintime.le-web.org/" rel="nofollow">http://backintime.le-web.org/</a></p> <p><a href="http://lifehacker.com/5212899/back-in-time-does-full-linux-backups-in-one-click" rel="nofollow">http://lifehacker.com/5212899/back-in-time-does-full-linux-backups-in-one-click</a></p>beachboy2Mon, 03 May 2010 09:44:51 -0400http://linuxexchange.org/questions/126/which-backup-tool/164Answer by Jazzhttp://linuxexchange.org/questions/126/which-backup-tool/134<p>I would recommend sbackup: <a href="http://sourceforge.net/projects/sbackup" rel="nofollow">http://sourceforge.net/projects/sbackup</a></p> <p>It is very easy to configure (provides a configuration GUI), and some of its features are:<br/> - manual or automated backups<br/> - purging of older backups<br/> - a simple interface for configuring when to backup (uses crontab)<br/> - include/exclude files and folders using paths, file types, file size, or regular expressions</p>JazzSun, 25 Apr 2010 16:06:01 -0400http://linuxexchange.org/questions/126/which-backup-tool/134Answer by jeremyhttp://linuxexchange.org/questions/126/which-backup-tool/130<p>It sounds like rsnapshot should satisfy most of your needs: <a href="http://www.linuxquestions.org/linux/articles/Jeremys_Magazine_Articles/Backups_with_rsnapshot" rel="nofollow">http://www.linuxquestions.org/linux/articles/Jeremys_Magazine_Articles/Backups_with_rsnapshot</a></p> <blockquote> <p>rsnapshot is a Perl-based utility for saving snapshots of local and remote filesystems. It uses rsync and hard links to create multiple, full filesystem backups, yet only requires slightly more disk space than a single snapshot plus incremental archives.</p> </blockquote> <p>--jeremy</p>jeremySat, 24 Apr 2010 20:02:25 -0400http://linuxexchange.org/questions/126/which-backup-tool/130