<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MattLog.net &#187; Backup</title>
	<atom:link href="http://mattlog.net/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattlog.net</link>
	<description>All things IT Pro</description>
	<lastBuildDate>Mon, 19 Dec 2011 04:10:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Backblaze: Only Backup My Documents</title>
		<link>http://mattlog.net/2010/10/26/backblaze-only-backup-my-documents/</link>
		<comments>http://mattlog.net/2010/10/26/backblaze-only-backup-my-documents/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 09:14:32 +0000</pubDate>
		<dc:creator>Matt Shadbolt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BackBlaze]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Backups]]></category>

		<guid isPermaLink="false">http://mattlog.net/?p=286</guid>
		<description><![CDATA[I&#8217;m a big fan of BackBlaze (www.backblaze.com) and I use it to backup all of my machines. One thing that *really* annoys me though, is that by default, BackBlaze will backup your entire hard drive contents.This is a real pain for those who have lots of large files with no need for backup copies in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of BackBlaze (<a href="http://backblaze.com" target="_blank">www.backblaze.com</a>) and I use it to backup all of my machines. One thing that *really* annoys me though, is that by default, BackBlaze will backup your entire hard drive contents.This is a real pain for those who have lots of large files with no need for backup copies in the cloud.</p>
<p>Even worse, there is no option in the control panel to exclude all files except certain folders &#8211; for example your My Documents folder. Instead, you need to manually enter each folder across your hard drive that you want to exclude, and only leave the single folder that you want to backup out.</p>
<p>Here&#8217;s an easy way to exclude all files except your My Documents directory (or any other directory you want backed up)</p>
<p>First, browse to C:\ProgramData\Backblaze\bzdata (in Windows Vista/7), and open the BZInfo.xml document in Notepad. Now find the <strong>do_backup</strong> section &#8211; it should look something like</p>
<blockquote><p>
&lt;do_backup dst_type=&#8221;bzdatacenter&#8221; dst_fileformat=&#8221;bzff&#8221; max_filesize_mb=&#8221;4000&#8243; net_throttle=&#8221;50&#8243; backup_schedule_type=&#8221;continuously&#8221; backup_schedule_detail=&#8221;none&#8221; &gt;<br />
&lt;bzdirfilter dir=&#8221;c:\&#8221; whichfiles=&#8221;all&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\windows\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\i386\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\users\all users\microsoft\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\users\all users\microsoft help\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\$recycle.bin\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\$recycler\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\recycler\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\msocache\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\program files\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\program files (x86)\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;/do_backup&gt;</p></blockquote>
<p>There are two settings in the config above that control what BackBlaze is backing up</p>
<p>&lt;bzdirfilter dir=&#8221;c:\&#8221; whichfiles=&#8221;all&#8221; /&gt; <strong>This line enables backup for all files across the C drive<br />
</strong>&lt;bzdirfilter dir=&#8221;c:\windows\&#8221; whichfiles=&#8221;none&#8221; /&gt; <strong>This line disables backup for all files located in C:\Windows\</strong></p>
<p>So, if we change the &lt;bzdirfilter dir=&#8221;c:\&#8221; whichfiles=&#8221;all&#8221; /&gt; to &lt;bzdirfilter dir=&#8221;c:\&#8221; whichfiles=&#8221;<strong>none</strong>&#8221; /&gt; and add a line <strong>above</strong> the edited line, including the folder we want backed up, BackBlaze will exclude all files on C except the directory we allow.</p>
<p>In my example, I want to exclude everything on C drive except My Documents. My BZInfo.xml file looks like</p>
<blockquote><p>&lt;do_backup dst_type=&#8221;bzdatacenter&#8221; dst_fileformat=&#8221;bzff&#8221;  max_filesize_mb=&#8221;4000&#8243; net_throttle=&#8221;50&#8243;  backup_schedule_type=&#8221;continuously&#8221; backup_schedule_detail=&#8221;none&#8221; &gt;<br />
&lt;bzdirfilter dir=&#8221;C:\Users\MattShadbolt\Documents\&#8221; whichfiles=&#8221;all&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\windows\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\i386\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\users\all users\microsoft\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\users\all users\microsoft help\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\$recycle.bin\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\$recycler\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\recycler\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\msocache\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\program files\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;bzdirfilter dir=&#8221;c:\program files (x86)\&#8221; whichfiles=&#8221;none&#8221; /&gt;<br />
&lt;/do_backup&gt;</p></blockquote>
<p>And that&#8217;s how to enable individual directory backup with BackBlaze. If you have more than one folder, just add the directory to the <strong>do_backup</strong> list.</p>
<p>One other thing to note. BackBlaze by default has a maximum backup file size of 4GB. If (for some reason) you want to exceed this file size limit, just change the max_filesize_mb=&#8221;4000&#8243; option in <strong>do_backup</strong>. For example, lets make the maximum file size large enough to backup a DVD ISO</p>
<blockquote><p>&lt;do_backup dst_type=&#8221;bzdatacenter&#8221; dst_fileformat=&#8221;bzff&#8221;   max_filesize_mb=&#8221;6000&#8243; net_throttle=&#8221;50&#8243;   backup_schedule_type=&#8221;continuously&#8221; backup_schedule_detail=&#8221;none&#8221; &gt;</p></blockquote>
<p>Hopefully this helps some of those BackBlaze users out there! As I said earlier, I&#8217;m a big fan of BackBlaze, but it would be nice if they enabled these settings out of the box.</p>
<p>.</p>
Posted by Matt Shadbolt<br>
<a href ="http://mattlog.net">http://mattlog.net</a><br>
Please comment or click an ad to support this site<br>]]></content:encoded>
			<wfw:commentRss>http://mattlog.net/2010/10/26/backblaze-only-backup-my-documents/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Symantec Live State</title>
		<link>http://mattlog.net/2008/08/18/symantec-live-state/</link>
		<comments>http://mattlog.net/2008/08/18/symantec-live-state/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 07:13:20 +0000</pubDate>
		<dc:creator>Matt Shadbolt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[DR]]></category>
		<category><![CDATA[Imaging]]></category>

		<guid isPermaLink="false">http://mattlog.wordpress.com/?p=24</guid>
		<description><![CDATA[After spending the last 60 minutes trying to find the product page for Symantec Live State &#8211; a fantastic server imaging product that I used to use not so long ago &#8211; it seems as though our friends have renamed the product without telling anyone! Even a Google search for Symantec LiveState doesn&#8217;t list the [...]]]></description>
			<content:encoded><![CDATA[<p>After spending the last 60 minutes trying to find the product page for Symantec Live State &#8211; a fantastic server imaging product that I used to use not so long ago &#8211; it seems as though our friends have renamed the product without telling anyone!</p>
<p>Even a Google search for Symantec LiveState doesn&#8217;t list the new product name &#8211; Symantec Backup Exec System Recovery Server.</p>
<p>For those people like me assuming LiveState had been discontinued &#8211; follow the link below for the &#8220;new&#8221; version</p>
<p><a href="http://www.symantec.com/business/products/sysreq.jsp?pcid=pcat_storage&amp;pvid=1602_1">http://www.symantec.com/business/products/sysreq.jsp?pcid=pcat_storage&amp;pvid=1602_1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattlog.net/2008/08/18/symantec-live-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

