<?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>eBabble &#187; backup</title>
	<atom:link href="http://www.ebabble.net/tag/backup/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ebabble.net</link>
	<description>Random thoughts on key interests, since 1999.</description>
	<lastBuildDate>Thu, 02 Feb 2012 12:09:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.ebabble.net/?pushpress=hub'/>
		<item>
		<title>Small Business Backup Basics</title>
		<link>http://tech.ebabble.net/small-business-backup-basics</link>
		<comments>http://tech.ebabble.net/small-business-backup-basics#comments</comments>
		<pubDate>Wed, 19 Oct 2011 13:08:15 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Batch File]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[Command Prompt]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=2311</guid>
		<description><![CDATA[Blast from the past: originally published May 3rd 2002.

Once you have a small business up and running with a handful of computers you have to look at a serious backup strategy. Programs can be reinstalled, updates downloaded again, but the data generated by yourself and those around you is unique and should be protected. The best way to protect that information is to store it centrally and perform regular backups. To accomplish our goal we’ll look at both ends of the process; setting up the server and setting up the clients.

Let’s take a ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><em>Blast from the past: originally published May 3rd 2002.</em></p>
<div id="Text406LYR" style="text-align: justify;">
<p>Once you have a small business up and running with a handful of computers you have to look at a serious backup strategy. Programs can be reinstalled, updates downloaded again, but the data generated by yourself and those around you is unique and should be protected. The best way to protect that information is to store it centrally and perform regular backups. To accomplish our goal we’ll look at both ends of the process; setting up the server and setting up the clients.</p>
<p><a href="http://www.ebabble.net/wp-content/uploads/backup.png" rel="lightbox[2311]"><img class="aligncenter size-full wp-image-2312" title="backup" src="http://www.ebabble.net/wp-content/uploads/backup.png" alt="" width="260" height="260" /></a></p>
<p>Let’s take a step back and look at the server. Every business with multiple users, big or small, should have a dedicated server. A separate machine that shares files, printers, internet access, email, intranet pages, etc. The two most common operating systems for a server are Linux and Windows NT or 2000. Our process here is generic and will work with either. As well all machines, server and clients, should have anti-virus software and the latest virus signature updates.</p>
<p>Our first step is to set up a bunch of folders ( directories ) on the server; one common folder with access for all users and individual user folders with restricted access. Every user on your network should have their own login and password, so permissions can be set on folders to limit access on the network. All users on your network ( remove “everyone” access if there ) have access to a common folder, so documents can be shared and worked on collaboratively. I usually call the folder common or company, and share the folder on the network with the same name.</p>
<p>Each user has a folder created for them as well, with access restricted to that user and the administrator. That way a level of privacy and security can be maintained for the individuals documents. This folder can be named the same as the users login, typically first initial and last name, and shared with the same name followed by a $ sign. Adding the $ at the end of the share lets the server know to hide this share, so those browsing the network through Network Neighborhood won’t see them.</p>
<p>To make sure these two shares are available to users at all times you can run a batch file when they log in. This option is found under the user’s properties. Here’s a typical instruction for Windows PCs:</p>
<p>@echo off<br />
net use X: \\server\common<br />
net use Y: \\server\user$</p>
<p>Use Notepad or any text editor to enter the save it as a *.bat file. The net command has been built into every Windows version since 3.11 so this will work. It tells the operating system to map the common folder to drive X and the user’s private folder to drive Y. Simple and straightforward. Through this file you can also copy over virus signatures, flash messages and perform general PC “housekeeping”.</p>
<p>Moving on to the client PCs, we want to set them up to use only their network drive for saving files. If we keep all data on the server and back it up nightly, everything is safe.</p>
<p>This is a two step process: make the software use the network drive as the default location and keep reminding the users to only save software on their “personal and private” drives. Since Windows 98 you have been able to specify the location of the My Documents folder. Right click on My Documents, select properties and under Target enter the drive letter of the users private share. This will take care of all applications that are certified for the OS, such as Microsoft Office. For others you’ll have to set the default directory through the application’s options or preferences menu. This will also have to be done for every application if you’re still using Windows 95. Microsoft Office users can take advantage of the Office Profile Wizard to backup all their customizations of the office suite.</p>
<p>This takes care of most files, but doesn’t include email applications. Microsoft Outlook is the most common email application and saves everything into one *.pst file. The location of the file varies by operating system, but can be found by searching for it. The safest option is to move the user’s *.pst file to their network share. This method varies on every version of Outlook, but can be found by hunting in the Options menu or by right clicking on Personal Folders and selecting Properties. A surefire method is to locate the *.pst file and copy it to the network share. When Outlook is opened the next time it will indicate the pst file cannot be located; you then browse for the file and everything’s good to go.</p>
<p>Other email applications vary in how they store files, generally spreading them across multiple files. For Outlook Express backup and restore check out this <a href="http://insideoe.tomsterdam.com/" target="_blank">excellent site</a>.</p>
<div id="Text406LYR">
<p>Laptop users need another option, as the machine isn’t always connected to the network. The best practice for them is to store all their documents in the c:\My Documents folder and synchronize with the server when they log in. Here’s how to set up their login file:</p>
<p>@echo off<br />
net use X: \\server\common<br />
net use Y: \\server\user$<br />
xcopy “C:\My Documents\*.*” “Y:\My Documents” /M /E /Y</p>
<p>This is the same as our first file but with the xcopy command added. This line is copying all files from the C: drive of the laptop or local computer to the user’s My Documents folder on the network share. It will be annoying when the connect to the network but will keep the data safe. The end switches are as follows: /M copies only files with the archive attribute set and then turns off the attribute, /E copies all sub directories and files, /Y indicated yes to overwriting files with the same name. The last two are pretty straightforward, so let’s talk about the archive attribute. Each file has an attribute called archive that can be on or off. Most applications can turn this on or off, including basic DOS commands, Windows Explorer, even File Manager from Windows 3. The concept here is once the file has been copied over the archive attribute is set to off. When the file is worked on and saved it’s automatically turned back on. When xcopy is run again it only looks for files with archive on and leaves the others that haven’t been worked on since the last backup. Quick and easy.</p>
<p>Now we have basic file protection set up through shares on the server and users storing all documents in those shares. Our second backup script will protect machines that infrequently access the network by copying their documents when they do connect. Now our only concern is keeping the documents on the server backed up and secure. I’d like to believe that anyone who sold you a small business server included a tape drive in that machine, but this isn’t always the case. Recommended is a twofold backup strategy; RAID 1 mirroring of hard drives and tape backup for archiving.</p>
<p>RAID stands for redundant array of independent drives, and type 1 keeps a mirror image of one hard drive on a second hard drive. This can be accomplished via software to save money or via hardware for speed and operating system independence. This way if one hard drive fails the second mirror image has all your data, safe and secure.</p>
<p>To archive all documents you need large capacity removable storage. If your data is less than 4.7 GB I heartily recommend a DVD writer. Less than $600 for the drive and $20 per rewritable disc means you can have a fast backup and one month archive for $1000. If your data goes beyond that size a tape drive is your best choice. Ranging from 8 to 100 GB per tape it’s the way to go. Check our tape technology <a href="http://tech.ebabble.net/tape-drive-technology-comparison">comparison</a> for more information. The built in backup software in any server OS can be used to archive your data files. If you want “disaster recovery”, which means you boot from a disk and reload your entire system from tape, you’ll need additional software. It’s a good idea with any backup media to take a copy home with you, just in case the building is destroyed.</p>
<p>The focus of this article is keeping user data safe and sound. Combine the few simple procedures and all your business data will be safe.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/small-business-backup-basics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tape Drive Technology Comparison</title>
		<link>http://tech.ebabble.net/tape-drive-technology-comparison</link>
		<comments>http://tech.ebabble.net/tape-drive-technology-comparison#comments</comments>
		<pubDate>Wed, 12 Oct 2011 13:08:42 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AIT]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[DAT]]></category>
		<category><![CDATA[DDS]]></category>
		<category><![CDATA[tape]]></category>
		<category><![CDATA[Travan]]></category>
		<category><![CDATA[Ultrium]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=2314</guid>
		<description><![CDATA[Blast from the past: originally published November 15th 2000.
Backup should be a key component of any computer user’s routine. No matter what we do with our computer, there are files you don’t want to lose. The only way to guarantee they’ll always be there is to back them up.

For the day to day user or individual who is concerned with system failure or file loss the best method is RAID 1. This process takes two hard drives and mirrors the contents from one to the other. After the initial setup ...]]></description>
			<content:encoded><![CDATA[<p><em>Blast from the past: originally published November 15th 2000.</em></p>
<p style="text-align: justify;">Backup should be a key component of any computer user’s routine. No matter what we do with our computer, there are files you don’t want to lose. The only way to guarantee they’ll always be there is to back them up.</p>
<p style="text-align: justify;"><a href="http://www.ebabble.net/wp-content/uploads/backup_tape.jpg" rel="lightbox[2314]"><img class="aligncenter size-full wp-image-2316" title="backup_tape" src="http://www.ebabble.net/wp-content/uploads/backup_tape.jpg" alt="" width="200" height="164" /></a></p>
<p style="text-align: justify;">For the day to day user or individual who is concerned with system failure or file loss the best method is RAID 1. This process takes two hard drives and mirrors the contents from one to the other. After the initial setup there is nothing required from the user to keep this going. The initial expense is around $100 for an IDE RAID PCI card, plus the cost of two hard drives, say Maxtor 20 GB drives retailing for $200 each. Total complete backup solution cost is $300 on top of the existing PC costs. For a look at such solutions see my previous RAID <a href="http://tech.ebabble.net/promise-fasttrak">article</a>.</p>
<p style="text-align: justify;">For the network user RAID by itself is not the optimal backup solution. I still recommend RAID 1 or 5 solutions for the network file server, but augmenting this would be a tape backup system. Tape allows for proper archiving of files that can’t be handled by RAID. In my office a common scenario is this; someone comes to me and says the report they work on was screwed up yesterday, can I load the report from three days ago? Archival backup is the only way to handle this, as a site should be keeping between ten to thirty days of backups on hand for just such problems.</p>
<p style="text-align: justify;">Tape is the preferred backup for archiving for one reason; it has the largest capacity. Optical storage is good and fast, but maxes out around 5 GB. There are quite a variety of tape technologies available: DAT <a href="http://www.dds-tape.com/" target="_blank">DDS</a>, DLT, Travan NS, AIT, <a href="http://www.hp.com/tape/ultrium/aboutult.html" target="_blank">Ultrium</a>, <a href="http://www.tandberg.com/slr/slr_docs.html" target="_blank">SLR</a>, plus brand specific types like Exabyte Mammoth, Onstream ADR and Ecrix VXA. Below is a chart that outlines the various technologies capacity, speed, and most importantly cost. I’ve stated the total cost to be the drive plus 20 tapes, giving the user a full work month of backups.</p>
<table width="475" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td colspan="7" width="475" height="21">Tape Technology Comparison</td>
</tr>
<tr>
<td height="17"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="17"></td>
<td>Compressed</td>
<td>Transfer</td>
<td>Drive</td>
<td>Media</td>
<td>Tapes for</td>
<td>Total</td>
</tr>
<tr>
<td height="17">Format</td>
<td>Capacity (GB)</td>
<td>GB / Hour</td>
<td>Cost $</td>
<td>Cost $</td>
<td>20 days</td>
<td>Cost $</td>
</tr>
<tr>
<td height="17">DDS-2</td>
<td>8</td>
<td>3.6</td>
<td align="right">920</td>
<td align="right">15</td>
<td align="right">300</td>
<td align="right">1220</td>
</tr>
<tr>
<td height="17">DDS-3</td>
<td>24</td>
<td>7.2</td>
<td align="right">1100</td>
<td align="right">37</td>
<td align="right">740</td>
<td align="right">1840</td>
</tr>
<tr>
<td height="17">DDS-4</td>
<td>40</td>
<td>21.6</td>
<td align="right">1700</td>
<td align="right">60</td>
<td align="right">1200</td>
<td align="right">2900</td>
</tr>
<tr>
<td height="17">Travan NS8</td>
<td>8</td>
<td>4.2</td>
<td align="right">300</td>
<td align="right">55</td>
<td align="right">1100</td>
<td align="right">1400</td>
</tr>
<tr>
<td height="17">Travan NS20</td>
<td>20</td>
<td>7.2</td>
<td align="right">520</td>
<td align="right">74</td>
<td align="right">1480</td>
<td align="right">2000</td>
</tr>
<tr>
<td height="17">DLT-4</td>
<td>40</td>
<td>10.8</td>
<td align="right">2850</td>
<td align="right">140</td>
<td align="right">2800</td>
<td align="right">5650</td>
</tr>
<tr>
<td height="17">DLT-5</td>
<td>80</td>
<td>43.2</td>
<td align="right">6500</td>
<td align="right">140</td>
<td align="right">2800</td>
<td align="right">9300</td>
</tr>
<tr>
<td height="17">AIT-1</td>
<td>70</td>
<td>21.6</td>
<td align="right">2425</td>
<td align="right">125</td>
<td align="right">2500</td>
<td align="right">4925</td>
</tr>
<tr>
<td height="17">AIT-2</td>
<td>100</td>
<td>56.6</td>
<td align="right">5025</td>
<td align="right">175</td>
<td align="right">3500</td>
<td align="right">8525</td>
</tr>
<tr>
<td height="17">ADR</td>
<td>30</td>
<td>7.2</td>
<td align="right">720</td>
<td align="right">70</td>
<td align="right">1400</td>
<td align="right">2120</td>
</tr>
<tr>
<td height="17">ADR</td>
<td>50</td>
<td>14.4</td>
<td align="right">1200</td>
<td align="right">85</td>
<td align="right">1700</td>
<td align="right">2900</td>
</tr>
<tr>
<td height="17">SLR24</td>
<td>24</td>
<td>8.6</td>
<td align="right">1650</td>
<td align="right">70</td>
<td align="right">1400</td>
<td align="right">3050</td>
</tr>
<tr>
<td height="17">SLR60</td>
<td>60</td>
<td>28.8</td>
<td align="right">1700</td>
<td align="right">100</td>
<td align="right">2000</td>
<td align="right">3700</td>
</tr>
<tr>
<td height="17">SLR100</td>
<td>100</td>
<td>36</td>
<td align="right">3250</td>
<td align="right">130</td>
<td align="right">2600</td>
<td align="right">5850</td>
</tr>
<tr>
<td height="17">Mammoth LT</td>
<td>28</td>
<td>7.2</td>
<td align="right">1925</td>
<td align="right">60</td>
<td align="right">1200</td>
<td align="right">3125</td>
</tr>
<tr>
<td height="17">Mammoth</td>
<td>40</td>
<td>10.8</td>
<td align="right">3500</td>
<td align="right">95</td>
<td align="right">1900</td>
<td align="right">5400</td>
</tr>
<tr>
<td height="17">Mammoth2</td>
<td>150</td>
<td>43.2</td>
<td align="right">6750</td>
<td align="right">135</td>
<td align="right">2700</td>
<td align="right">9450</td>
</tr>
<tr>
<td height="17">VXA-1</td>
<td>66</td>
<td>21.6</td>
<td align="right">1375</td>
<td align="right">120</td>
<td align="right">2400</td>
<td align="right">3775</td>
</tr>
<tr>
<td height="17"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="17">Notes:</td>
<td colspan="3">Drives listed are internal SCSI models.</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="17"></td>
<td colspan="5">Capacity is assuming a 2:1 or better compression ratio.</td>
<td></td>
</tr>
<tr>
<td height="17"></td>
<td colspan="3">Transfer rates are with compression.</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="17"></td>
<td colspan="6">Prices are listed in Canadian dollars, compiled from various resellers.</td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">A comment on the prices; it is noted that all costs listed are in Canadian dollars. This is a Canadian site, and proud of it. To determine cost in U.S. dollars, multiply the Canadian cost by 65% or calculate ( cost*0.65).</p>
<p style="text-align: justify;">The big question to ask yourself is how large a tape drive to get. If you have twenty staff members, each will probably have 100 – 200 MB of files on the server. That equals 40 GB of data that needs to be backed up, so you’ll need a drive that holds that or more. Of course this is an extreme example; most people on my network have less than 20 MB on their network share. Again I recommend using the tape drive for backing up work files only; use RAID to back up the operating system and applications, which should be on a separate hard drive anyway.</p>
<p style="text-align: justify;">It’s important to keep in mind that most tape solutions are SCSI based; while IEEE 1394 and USB are making promising gains, the server market is still SCSI. I love to recommend IDE RAID solutions because of the price, but IDE tape solutions max out at 20 GB with NS20 or 30 GB with ADR. One other point: external drives are available for about $300 more, and offer an easy way to add tape storage to your server.</p>
<p style="text-align: justify;">Once you’ve decided to make the leap to tape backup, there’s one more important choice: autoloading. This is a tape drive that accepts a number of tapes and loads a new one each day. Very convenient, but like all things costs more. Here’s a quick comparison: an HP DDS-4 drive is $2000, while an HP DDS-4 drive autoloading 6 tapes costs $3200. That’s five days of data backup plus a cleaning tape. It’s all a question of budget and time; will you remember to put a new tape in each day?</p>
<p style="text-align: justify;">Based on the needs of a small network of fifty people or less I can safely recommend a DAT DDS-4 drive. 40 GB is a lot of space for files, and DDS-4 is a lot cheaper with 20 tapes than AIT, DLT or Mammoth. The VXA and ADR technologies are interesting and seem priced right, but tied to one manufacturer. DAT drives are universally accepted, media is readily available and it’s a price performance killer.</p>
<p style="text-align: justify;">All this talk of tape drives came because of my companies need to purchase a new drive; our Exabyte 8mm 8 GB drive died three years into service. Look for a review of the <a href="http://tech.ebabble.net/hp-surestore-dat40">HP SureStore DAT40</a> External next month.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/tape-drive-technology-comparison/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MailStore Home</title>
		<link>http://tech.ebabble.net/mailstore-home</link>
		<comments>http://tech.ebabble.net/mailstore-home#comments</comments>
		<pubDate>Thu, 03 Mar 2011 15:16:57 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=1983</guid>
		<description><![CDATA[In the wake of the Gmail temporary loss of accounts a lot of tech sites are highlighting ways to back up your account.  I like the suggestion of Hotmail accessing your Gmail through POP but that&#8217;s another cloud solution to maintain.  Using Thunderbird and POP access is another good idea but you need to have it running to pick up your mail.

The best solution I&#8217;ve found is MailStore Home.  It will backup and restore your email from basically any email client native or online and it&#8217;s free for personal use.  ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In the wake of the Gmail temporary loss of accounts a lot of tech sites are highlighting ways to back up your account.  I like the suggestion of Hotmail accessing your Gmail through POP but that&#8217;s another cloud solution to maintain.  Using Thunderbird and POP access is another good idea but you need to have it running to pick up your mail.</p>
<p><a href="http://www.ebabble.net/wp-content/uploads/MailStore-Home.jpg" rel="lightbox[1983]"><img class="size-medium wp-image-1984 aligncenter" title="MailStore Home" src="http://www.ebabble.net/wp-content/uploads/MailStore-Home-300x211.jpg" alt="" width="300" height="211" /></a></p>
<p style="text-align: justify;">The best solution I&#8217;ve found is <a title="MailStore Home" href="http://www.mailstore.com/en/mailstore-home.aspx" target="_blank">MailStore Home</a>.  It will backup and restore your email from basically any email client native or online and it&#8217;s free for personal use.  Once backed up you can access and read it all, plus there&#8217;s a good search engine built in.</p>
<p style="text-align: justify;">Installation and set up is straightforward: run the download.  On launch you&#8217;re greeted with the screen above (click to enter your name as I have) and then select Archive Email.  Next you pick your mail program, I selected Gmail, enter your credentials and let MailStore Home do its thing.  You&#8217;ll want to have IMAP enabled for best performance if using Gmail.  The other options are just as simple.  After it&#8217;s initial run any email already archived is skipped on later runs and it gets the job done quickly.</p>
<p style="text-align: justify;">Restoring is a nice feature and for IMAP applications it puts everything in a restore folder where you can then move around at your leisure.  Backup to any media is again simple and straightforward; follow the prompts and you&#8217;re done.</p>
<p style="text-align: justify;">MailStore Home is a one trick pony and does the job well.  Free and easy are hard to beat.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/mailstore-home/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>adic FastStor2</title>
		<link>http://tech.ebabble.net/adic-faststor2</link>
		<comments>http://tech.ebabble.net/adic-faststor2#comments</comments>
		<pubDate>Tue, 12 Oct 2010 17:45:22 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[adic]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[quantum]]></category>
		<category><![CDATA[tape]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=1644</guid>
		<description><![CDATA[
Blast from the past: originally published June 25th 2005.
Tape libraries are not new to the industry, but entry-level rackmount units can fit the small to medium enterprise bill. I recently had the opportunity to install and experience an adic FastStor 2 LTO eight slot 2U rackmount tape library.
We had been using a single tape drive that required swapping tapes daily. This was sometimes hard to remember but guaranteed a backup of critical files that were frequently accessed. As we added more storage it sometimes required swapping the tape out for daily backups, which ...]]></description>
			<content:encoded><![CDATA[<div id="Text454LYR">
<p><em>Blast from the past: originally published June 25th 2005.</em></p>
<p style="text-align: justify;">Tape libraries are not new to the industry, but entry-level rackmount units can fit the small to medium enterprise bill. I recently had the opportunity to install and experience an <a href="http://www.quantum.com/ServiceandSupport/SoftwareandDocumentationDownloads/FS2/Index.aspx" target="_blank">adic FastStor 2</a> LTO eight slot 2U rackmount tape library.</p>
<p style="text-align: justify;">We had been using a single tape drive that required swapping tapes daily. This was sometimes hard to remember but guaranteed a backup of critical files that were frequently accessed. As we added more storage it sometimes required swapping the tape out for daily backups, which is just plain ugly. Since we needed a new tape drive to fit the additional storage, why not get a tape library and have it handle tapes for a week at a time.</p>
<p style="text-align: justify;">ADIC ( they mix capitals and all lower case on the website and on equipment ) makes a wide range of tape and backup hardware, but the FastStor 2 is the introductory tape library. It’s available with a LTO-1, LTO-2 or SDLT320 tape drive; everything else remains the same. We went with the LTO-2 for a maximum storage capacity of 3.2 TB; an HP drive was installed ( see photos ).</p>
<p style="text-align: justify;">Unpacking and installing allowed me to examine the library. Very simple design: tape door and four button LCD panel on the front, two 68 pin high density SCSI connectors and a power switch on the rear. It required active termination so I hooked it up and powered the unit on. I went through the simple and effective menu to load tapes; at that point the door slides open and you insert the tape. Otherwise the door stays closed, everything safe and sound within.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/adic_FastStor2_Front.jpg" rel="lightbox[1644]"><img class="size-medium wp-image-1645 aligncenter" title="adic_FastStor2_Front" src="http://www.ebabble.net/wp-content/uploads/adic_FastStor2_Front-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: justify;">Unfortunately there was some grinding as I loaded the tape in, and everything stopped working. A quick call revealed something must be off track, so I had the opportunity to crack the case and look inside. A few screws later the top was off and I was able to see how it worked and grab the photos above.</p>
<p style="text-align: justify;">The drive sits in the center and the eight tapes are held in hard plastic braces that move around on a rubber belt. When it reaches the desired tape a small arm brings it out of the brace and into the tape drive. Ejection is handled in reverse; all in all a simple solution. Cooling for the drive is provided by two fans: one behind the drive pushing out the bottom and one at the rear. It appeared that one of the tape braces had come off the track in shipping, so I put it back on and we were back in business.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/adic_fastStor2_Top.jpg" rel="lightbox[1644]"><img class="size-medium wp-image-1646 aligncenter" title="adic_fastStor2_Top" src="http://www.ebabble.net/wp-content/uploads/adic_fastStor2_Top-300x197.jpg" alt="" width="300" height="197" /></a></p>
<p style="text-align: justify;">Performance was within expected parameters for a LTO-2 drive; as this library can accommodate three different drives the mechanics stay the same. We use Veritas Backup Exec which has additional functionality for libraries, such as locking the door and cataloging tapes based on bar code. Of course this requires a bar code reader, which we installed at the rear of the unit. It’s a matter of removing a plate on the rear, hooking the power up and screwing the reader into the same holes as the plate used.</p>
<p style="text-align: justify;">All in all a good solution for those needing additional storage or only wanting to change tapes once a week.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/adic-faststor2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macrium Reflect Free Edition</title>
		<link>http://tech.ebabble.net/macrium-reflect-free-edition</link>
		<comments>http://tech.ebabble.net/macrium-reflect-free-edition#comments</comments>
		<pubDate>Mon, 21 Jun 2010 20:41:52 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=1275</guid>
		<description><![CDATA[Setting up a PC for a friend and they needed some sort of backup.  My first thought is always Windows Home Server but this was a single PC and the extra cost couldn&#8217;t be justified.  I turned again to Macrium Reflect Free Edition: the user had an older 200 GB Maxtor external USB hard drive that would hold the backup files.  To be fair I first tried Paragon Backup &#38; Recovery 10 Free Edition and ToDo Backup but neither one did exactly what I wanted: a backup that could be ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Setting up a PC for a friend and they needed some sort of backup.  My first thought is always Windows Home Server but this was a single PC and the extra cost couldn&#8217;t be justified.  I turned again to <a title="Macrium Reflect Free Edition" href="http://www.macrium.com/reflectfree.asp" target="_blank">Macrium Reflect Free Edition</a>: the user had an older 200 GB Maxtor external USB hard drive that would hold the backup files.  To be fair I first tried Paragon Backup &amp; Recovery 10 Free Edition and ToDo Backup but neither one did exactly what I wanted: a backup that could be scheduled daily and could be recovered from a bootable media for free.  My previous experience with Reflect paid off as I configured the automatic backup and used my <a href="http://tech.ebabble.net/macrium-reflect-free-edition-and-deleting-old-backup-files">ForFiles configuration</a> to limit the number of backups.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/cd.jpg" rel="lightbox[1275]"><img class="aligncenter size-medium wp-image-1276" title="Reflect Restore CD" src="http://www.ebabble.net/wp-content/uploads/cd-300x241.jpg" alt="" width="300" height="241" /></a></p>
<p style="text-align: justify;">The free edition allows the use of the integrated Linux boot CD: the premium paid version lets you use a <a title="Bart PE" href="http://www.nu2.nu/pebuilder/" target="_blank">BartPE</a> disc with your own drivers for RAID or storage adapters.  Great <a title="Reflect Restore Tutorial" href="http://kb.macrium.com/KnowledgebaseArticle50034.aspx?Keywords=Linux" target="_blank">tutorial available</a> from Macrium.  This was a one hard drive system so the free version was fine.  I created a full backup and the restore disc, then pulled the working hard drive and replaced it with a new unpartitioned drive that was the same size.  It booted nicely, asked for the backup location, asked where to restore and started to restore.  A nice little feature is that the CD is ejected when the restore process starts so the system doesn&#8217;t boot back into this environment and makes the user aware to remove it.  The restore got so far and then failed with an error insufficient space.  I then partitioned the drive and tried again but with the same error.  Formatted and tried again: same thing.</p>
<p style="text-align: justify;">A backup program that won&#8217;t let me restore is not very useful.  I removed the hard drive and replaced it with another and started the restore process again.  This time everything worked well.  I then removed the partition and tried again: success.  For some reason my first replacement hard drive wasn&#8217;t liked by Reflect; no real explanation here.</p>
<p style="text-align: justify;">Macrium Reflect Free Edition is a solid backup job as long as you can live with its limitations: no incremental or differential backups, no custom drivers for restoring, no automatic deletion or management of backup files.  So far these limitations haven&#8217;t hindered my two installations.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/macrium-reflect-free-edition/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Steam backups</title>
		<link>http://tech.ebabble.net/steam-backups</link>
		<comments>http://tech.ebabble.net/steam-backups#comments</comments>
		<pubDate>Tue, 23 Feb 2010 20:51:22 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Steam]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=1064</guid>
		<description><![CDATA[Steam is a great service: log in on any PC and play the games you&#8217;ve paid for.  The only downside is the download; modern games are between one and five gigabytes, which makes for a long download.  Or after you reformat your system and go to start playing games but have to wait a day for Steam to download them all again.
Luckily steam has a backup feature: right click on your game in the Steam Games menu and select &#8220;backup games files&#8221;.

You&#8217;ll be prompted for a location: I&#8217;m saving my ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Steam is a great service: log in on any PC and play the games you&#8217;ve paid for.  The only downside is the download; modern games are between one and five gigabytes, which makes for a long download.  Or after you reformat your system and go to start playing games but have to wait a day for Steam to download them all again.</p>
<p style="text-align: justify;">Luckily steam has a backup feature: right click on your game in the Steam Games menu and select &#8220;backup games files&#8221;.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/Steam_backup_1.png" rel="lightbox[1064]"><img class="size-medium wp-image-1065 aligncenter" title="Steam_backup_1" src="http://www.ebabble.net/wp-content/uploads/Steam_backup_1-300x294.png" alt="" width="300" height="294" /></a></p>
<p style="text-align: justify;">You&#8217;ll be prompted for a location: I&#8217;m saving my backups to a network share.  Next you&#8217;ll be prompted how to save the backups: in CD size, DVD size or custom.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/Steam_backup_2.png" rel="lightbox[1064]"><img class="size-medium wp-image-1066 aligncenter" title="Steam_backup_2" src="http://www.ebabble.net/wp-content/uploads/Steam_backup_2-300x294.png" alt="" width="300" height="294" /></a></p>
<p style="text-align: justify;">Since I&#8217;m saving to a network share I&#8217;m not concerned about file size and writing to an optical media so I select custom and chose 10 GB so there would be only one compressed file.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/steam_backup_3.png" rel="lightbox[1064]"><img class="size-medium wp-image-1069 aligncenter" title="steam_backup_3" src="http://www.ebabble.net/wp-content/uploads/steam_backup_3-300x294.png" alt="" width="300" height="294" /></a></p>
<p style="text-align: justify;">That&#8217;s about it: if you want to install it somewhere else or are reinstalling after a hard drive format or upgrade just double click on the steambackup.exe file and it will install and add itself to Steam.  I&#8217;ve found games always require an update on an install from backup but that could just be me.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/steam-backups/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozy Online Backup</title>
		<link>http://tech.ebabble.net/mozy-online-backup</link>
		<comments>http://tech.ebabble.net/mozy-online-backup#comments</comments>
		<pubDate>Mon, 30 Nov 2009 19:50:58 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Mozy]]></category>
		<category><![CDATA[online]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=962</guid>
		<description><![CDATA[If you don&#8217;t back up your files at some point you will lose them.  We rely on mechanical storage to keep our information and inevitably it will fail.  People used to say it didn&#8217;t matter since it was only a resumé or invitation on a home PC: that&#8217;s changed since we buy our books and music online and take our photos and videos digitally.
A backup is a copy of your files somewhere else: CD or DVD, other PC, , or in this case online.  There are some excellent free services ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If you don&#8217;t back up your files at some point you will lose them.  We rely on mechanical storage to keep our information and inevitably it will fail.  People used to say it didn&#8217;t matter since it was only a resumé or invitation on a home PC: that&#8217;s changed since we buy our books and music online and take our photos and videos digitally.</p>
<p style="text-align: justify;">A backup is a copy of your files somewhere else: CD or DVD, other PC, <a href="http://tech.ebabble.net/windows-home-server-as-soho-backup-2">Windows Home Server</a>, or in this case online.  There are some excellent free services available and today we&#8217;re looking at <a title="Mozy referral" href="https://mozy.com/?code=C62FRL" target="_blank">Mozy</a>: it offers free and paid options.  We&#8217;re looking at the 2 GB free option today.</p>
<p style="text-align: center;"><a href="http://www.ebabble.net/wp-content/uploads/Mozy.jpg" rel="lightbox[962]"><img class="size-medium wp-image-963 aligncenter" title="Mozy" src="http://www.ebabble.net/wp-content/uploads/Mozy-300x213.jpg" alt="Mozy" width="300" height="213" /></a></p>
<p style="text-align: justify;">Installation is very straightforward, as is everything about Mozy: it&#8217;s meant for any and every computer user.  You can pick your files to back up by category: Favorites, Spreadsheets, Music, or by folder and file.  Mozy runs as a 58 MB service; once you pick your files you schedule the backup and that&#8217;s it.  Speed is of course based on your internet connection, but the first backup is the only time killer since Mozy will only backup the changes made to your files.  It&#8217;s simple and effective, plus it requires no intervention from the end-user once set up, this eliminating the biggest problem with backups in general, that of user laziness.</p>
<p style="text-align: justify;">To restore files you open the tray application and select your files, either by category or file and folder.  Again very simple and direct; depending on how many files you&#8217;re restoring it could take a while as you&#8217;re limited by your internet connection speed.  Therein lies the issue with all cloud based backup and why I recommend it for personal use only; you can&#8217;t wait two days for your business files to restore.  Free online storage does work well for a secondary or tertiary backup of key files since you can&#8217;t beat the price.</p>
<p style="text-align: justify;">I&#8217;ve been using Mozy for a few years and those sharp-eyed readers will see my quota is 2.5 GB: that&#8217;s because I&#8217;ve referred two friends who signed up.  If they use my <a title="Mozy referral" href="https://mozy.com/?code=C62FRL" target="_blank">referral code</a> I get an additional 250 MB.  Between now and January 10th anyone who signs up using my <a title="Mozy referral" href="https://mozy.com/?code=C62FRL" target="_blank">referral code</a> will get an additional 500 MB, as will I.  It&#8217;s free to use so why not give it a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/mozy-online-backup/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows Home Server as SOHO backup</title>
		<link>http://tech.ebabble.net/windows-home-server-as-soho-backup-2</link>
		<comments>http://tech.ebabble.net/windows-home-server-as-soho-backup-2#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:33:30 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Windows Home Server]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?page_id=302</guid>
		<description><![CDATA[I&#8217;ve gushed extensively about the wonder that is Windows Home Server.  I recently gave Windows Small Business Server 2008 a spin to check it&#8217;s backup handling but it left me wanting: no current Windows platform backup program gets as much done at such a low cost as Windows Home Server.
For the small business backup is key.  You probably have file sharing set up on your local file server and nightly backups of that data, most likely to a removable hard drive or NAS device.  You may even have a dedicated ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I&#8217;ve gushed extensively about the wonder that is <a title="Windows Home Server" href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx" target="_blank">Windows Home Server</a>.  I recently gave Windows Small Business Server 2008 a spin to check it&#8217;s backup handling but it left me wanting: no current Windows platform backup program gets as much done at such a low cost as Windows Home Server.</p>
<p style="text-align: justify;">For the small business backup is key.  You probably have file sharing set up on your local file server and nightly backups of that data, most likely to a removable hard drive or NAS device.  You may even have a dedicated backup application that backs up your file server and desktop PCs to some network storage or tape.  Let me explain why Windows Home Server (WHS) should be implemented.</p>
<p style="text-align: justify;">WHS has three key items as part of it&#8217;s backup that make it a critical small business tool: lets go through them.  First and foremost it includes a software agent that backs up desktop PCs and Windows servers: that&#8217;s right, install the agent and it will back up Microsoft&#8217;s line of server products including SBS, Exchange, SharePoint, etc.  You just need a unique login for each server, not just administrator since that&#8217;s taken by WHS.  Second it has a unique method of saving files: once a copy of the file is on the WHS it places a pointer to that file for all other backups, so one backup of XP Professional or six will take the same amount of storage space for system files.  In big companies the IT team can re-image your PC and get the apps reinstalled, but for a small company it&#8217;s so much easier to boot from a CD and reload last night&#8217;s complete backup of your PC.  Third it shares files amongst it&#8217;s storage pool of hard drives in a software type of RAID that is very efficient: WHS duplicates files across multiple hard drives so in the event of a drive failure your data is safe.</p>
<p style="text-align: justify;">The other key advantage of WHS is cost: about $140 gets you the software product that will accept up to ten clients.  Yes ten clients is a limitation for this option of backup server, but you can run multiple instances of Windows Home Server: they each need a unique name and you&#8217;d have to make sure the client software pointed to the right WHS system.  Back to cost: WHS is light on system requirements so you could repurpose older hardware to fit the bill, or for under $600 you could pick up a complete system with WHS already installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/windows-home-server-as-soho-backup-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>External Hard Drive Handling</title>
		<link>http://tech.ebabble.net/external-hard-drive-handling</link>
		<comments>http://tech.ebabble.net/external-hard-drive-handling#comments</comments>
		<pubDate>Mon, 15 Sep 2008 19:31:25 +0000</pubDate>
		<dc:creator>Scott VanderPloeg</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[external hard drive]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.ebabble.net/?p=289</guid>
		<description><![CDATA[There are two basic types of external hard drives for sale: those that use 3.5&#8243; hard drives and those that use 2.5&#8243; hard drives.  The 3.5&#8243; units typically have an external power supply, multiple connection types (USB, eSATA, Firewire) and have some sort of stand to keep them in position.  The 2.5&#8243; units have no external power connections and normally connect via USB.
The important item here is that the 3.5&#8243; units are designed to remain stationary while the 2.5&#8243; units are designed to be mobile.  It&#8217;s this alone that should ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">There are two basic types of external hard drives for sale: those that use 3.5&#8243; hard drives and those that use 2.5&#8243; hard drives.  The 3.5&#8243; units typically have an external power supply, multiple connection types (USB, eSATA, Firewire) and have some sort of stand to keep them in position.  The 2.5&#8243; units have no external power connections and normally connect via USB.</p>
<p style="text-align: justify;">The important item here is that the 3.5&#8243; units are designed to remain stationary while the 2.5&#8243; units are designed to be mobile.  It&#8217;s this alone that should be the biggest determining factor when purchasing: is the external drive to be moved ever.  If it will never move then get the cheaper, larger capacity unit that utilizes a 3.5&#8243; desktop hard drive.  If at any point the drive is to be moved (weekly backups, extending laptop storage, what have you) then get the portable unit that utilizes a laptop 2.5&#8243; hard drive.</p>
<p style="text-align: justify;">Mobile or laptop hard drives are designed to move the write heads off the platter if it detects a sudden drop or rapid movement.  They&#8217;re designed to be moved and tussled about so it can handle being in your briefcase for the week.</p>
<p style="text-align: justify;">Contrast that to the desktop hard drive, which is designed to be stationary and only work that way.  If you&#8217;re feeling scientific and dangerously carefree start copying a file to your external 3.5&#8243; unit and then push it over: you&#8217;ll end up with most likely a dead drive.  I remember using the PARK command in DOS when powering off a PC but it&#8217;s not available in XP&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.ebabble.net/external-hard-drive-handling/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

