Using Subversion for general purpose backup - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:09:38Z http://stackoverflow.com/feeds/question/61888 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup 6 Using Subversion for general purpose backup Imran 2008-09-15T05:16:15Z 2009-12-13T20:30:43Z <p>Is it possible to use <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a> (SVN) as general purpose backup tool? (As a kind of <a href="http://en.wikipedia.org/wiki/Rsync" rel="nofollow">rsync</a> alternative.)</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/61890#61890 0 Answer by Tim Williscroft for Using Subversion for general purpose backup Tim Williscroft 2008-09-15T05:18:37Z 2008-09-15T05:18:37Z <p>I've used CVS as a substitute for ghost so I don't see why not.</p> <p>I'ts nice as you can tag a baseline: you can change manage machines.</p> <p>This works better on unixes than windows, obviously.</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/61891#61891 0 Answer by Kendall Helmstetter Gelner for Using Subversion for general purpose backup Kendall Helmstetter Gelner 2008-09-15T05:19:50Z 2008-09-15T05:19:50Z <p>The thing that would put me off that idea, is that for general use any binary data would get copied over anytime it changed, whereas the text content SCM systems are based around can easily be updated in the form of diffs.</p> <p>So you could do it, just be aware you may not want to use it to manage things like photo repositories if you do much editing.</p> <p>The nice thing about more general purpose backup solutions (say, Time Machine) is that they can roll up multiple binary changes after a while to conserve space. I'm not sure how easy that would be to do in SVN or git or mercurial.</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/61892#61892 2 Answer by AlexDuggleby for Using Subversion for general purpose backup AlexDuggleby 2008-09-15T05:19:59Z 2008-09-15T05:19:59Z <p>One thing to bear in mind when using SVN as a backup for binary files is that SVN will double the size of your files, because it keeps a local copy of each file (in the .svn/text-base) file.</p> <p>Apart from that I use SVN for a backup as well. Simply add all files then commit via script. </p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/61895#61895 6 Answer by Readonly for Using Subversion for general purpose backup Readonly 2008-09-15T05:21:52Z 2008-09-15T05:34:53Z <p>I found this article to be a pretty cool description of using svn to backup your home directory, and more:</p> <blockquote> <p>I use Subversion to backup my Linux boxes. With some minor creativity, it easily covers:</p> <ul> <li>Daily snapshots and offsite backup.</li> <li>Easy addition and removal of files and folders.</li> <li>Detailed tracking of file versions.</li> </ul> <p>It also allows for a few bonus features:</p> <ul> <li>Regular log emails to keep track of filesystem activity via Subversion's event hooks.</li> <li>Users may request a checkout of their home folders from any respository revision.</li> <li>New or replacement servers can be setup with a few svn checkout commands.</li> </ul> </blockquote> <p>Source: <a href="http://www.mythago.net/svn_for_backup.html" rel="nofollow">http://www.mythago.net/svn_for_backup.html</a></p> <p>Also found <a href="http://www.onlamp.com/pub/a/onlamp/2005/01/06/svn_homedir.html" rel="nofollow">this article</a> which shows an example of versioning your home directory. This allows you to bring your environment with you by checking out your home directory into a new machine. I used to do something similar and found it very useful.</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/61950#61950 0 Answer by Mo for Using Subversion for general purpose backup Mo 2008-09-15T06:58:34Z 2008-09-15T06:58:34Z <p>One thing, that would annoy me a lot, are the '.svn' folders, that svn puts into every folder it tracks. </p> <p>They look annoying, when you copy a folder, you should remember to not copy them (or your sandbox might be irritated) and it is a lot harder to grep through a bunch of folders, since there are often a lot of hits in the .svn resource folders.</p> <p>I like the idea of using a source-control, to control your environment. But I personally would not choose svn for this job. I would go for something like git. But that is probably just me...</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/63570#63570 0 Answer by Mark Elder for Using Subversion for general purpose backup Mark Elder 2008-09-15T14:48:54Z 2008-09-15T15:02:51Z <p>Using SVN for backups can work. However, over time it can be difficult to delete old revisions that are not needed. Say you only wanted to keep 30 or 60 days of backups. SVN does not provide an easy way to remove any history older than X days. If you don't have a way to purge old history you will eventually run your backup drive out of space.</p> <p>Here is a quote from the <a href="http://svnbook.red-bean.com/en/1.0/ch05s03.html#svn-ch-5-sect-3.1.3" rel="nofollow">SVN Book on the svndumpfilter</a> command:</p> <blockquote> <p>Since Subversion stores everything in an opaque database system, attempting manual tweaks is unwise, if not quite difficult. And once data has been stored in your repository, Subversion generally doesn't provide an easy way to remove that data. [13]</p> <blockquote> <p>[13] That, by the way, is a feature, not a bug.</p> </blockquote> </blockquote> <p>I found <a href="http://www.cis.upenn.edu/~bcpierce/unison/" rel="nofollow">unison</a> to be a better option than svn for a rsync alternative.</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/63682#63682 0 Answer by Fred Yankowski for Using Subversion for general purpose backup Fred Yankowski 2008-09-15T15:00:47Z 2008-09-15T15:00:47Z <p>Backing up /etc with source code control can be a big help when you want to revert a change that hosed your system, experiment with changes, or carry changes from one server to another. But subversion's multitude of .svn directories can get in the way for that, not just when searching but in some cases, like *.d folders, poorly designed systems might interpret the .svn folders themselves as containing configuration data. I now prefer using Mecurial for backing up /etc since it puts a single .hg folder under /etc. For real backup and not just version control you need to copy that .hg folder elsewhere.</p> http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup/66021#66021 1 Answer by nickf for Using Subversion for general purpose backup nickf 2008-09-15T19:34:43Z 2008-09-15T19:34:43Z <p>As a "general purpose" backup, I'd say it's probably not the greatest idea, mainly for the reasons given by others (lots of excess folders and wasted disk space). If you want to just keep backups, again I'd say there's probably better options, depending on your needs, eg: do you need to keep every single version of every single file, or would certain snapshots of your data be sufficient?</p> <p>However, at my office, we have a small team of 6 who work with shared files (eg: policies and procedures manuals, registration forms, etc). A lot of the time, team members will be working remotely (from home or while travelling), and often offline. Rather than using a central shared-folder setup, we use SVN to give each person an entire working copy of the folder which they can work on and refer to and synchronise whenever possible. This kills two birds with one stone: everyone can access and edit the files even while offline, plus it gives us really great redundancy in our backups. If my laptop <a href="http://www.youtube.com/watch?v=4XHaz5EM9jc" rel="nofollow">catches on fire</a>, it's no hassle because I can just check out another copy (obviously on another computer). If the server catches on fire, we'll have the backups of the repository to restore. If the server AND all the repo backups catch on fire, then all that you've lost are old versions of files. The only way that you'll lose any current data is if the server, your repo backups and every single computer which has a checkout all mysteriously catch on fire.</p> <p>As some people have said though, SVN will never remove information from the repository, meaning that if you only want to keep backups for 60 days, then, well, you can't. This isn't exactly true. Through use of <a href="http://svnbook.red-bean.com/en/1.0/re10.html" rel="nofollow">export</a>, <a href="http://svnbook.red-bean.com/en/1.1/re31.html" rel="nofollow">dump</a> and <a href="http://svnbook.red-bean.com/en/1.0/re12.html" rel="nofollow">import</a> you could effectively wipe out older versions of files. It's not pretty, but it's possible.</p>