<?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>Backup Articles &#187; Remote Backups</title>
	<atom:link href="http://www.backupmyhost.com/blog/category/remote-backups/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.backupmyhost.com/blog</link>
	<description>All you need to know about data backup</description>
	<lastBuildDate>Mon, 26 Jul 2010 18:29:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Securing your online backup archives</title>
		<link>http://www.backupmyhost.com/blog/enterprise/securing-your-online-backup-archives/</link>
		<comments>http://www.backupmyhost.com/blog/enterprise/securing-your-online-backup-archives/#comments</comments>
		<pubDate>Wed, 12 May 2010 16:08:44 +0000</pubDate>
		<dc:creator>chribonn</dc:creator>
				<category><![CDATA[Code and Solutions]]></category>
		<category><![CDATA[Remote Backups]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[online backups]]></category>
		<category><![CDATA[remote backup]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=496</guid>
		<description><![CDATA[One of the concerns of many people who consider performing online backups is the matter of security. You are uploading sensitive stuff to a foreign site. Can anyone from within read this stuff? And what if the site is hacked and white collar thieves living in some foreign country get hold of the data? What would happen? Use this script to protect your data.]]></description>
			<content:encoded><![CDATA[
<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:10px 0 10px 0;text-align:center;">
<script type="text/javascript"><!--
google_ad_client = "pub-8456896426992435";
/* 468x15, top post */
google_ad_slot = "5294666294";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><a href="http://www.backupmyhost.com/blog/wp-content/uploads/2010/05/key.jpg"><img class="alignleft size-full wp-image-502" style="border: 0px;" title="key" src="http://www.backupmyhost.com/blog/wp-content/uploads/2010/05/key.jpg" alt="" width="129" height="122" />

<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:10px 0 10px 0;text-align:center;">
<!-- AddThis Button BEGIN -->
<div><a href="http://addthis.com/bookmark.php?v=250&username=georgec" title="Bookmark and Share" target="_blank"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
<!-- AddThis Button END -->
</div>

</a>One of the concerns of many people who consider performing online backups is the matter of security. You are uploading sensitive stuff to a foreign site. Can anyone from within read this stuff? And what if the site is hacked and white collar thieves living in some foreign country get hold of the data? What would happen?</p>
<p>One solution is to protect each and every document using a password. Many programs have such a capability built in.  For many one, two or three person organisations this solution could work; the people would password protect every file using a phrase that is shared amongst colleagues. As the number of employees increase, guaranteeing that everyone is obeying the rules makes this solution one that is too problematic. Besides certain file types cannot be password protected.</p>
<p>The script I am sharing is one that addresses this problem. It makes use of the commercial product WinRar to archive an entire directory (including subdirectories) into a RAR file. The RAR file name is user definable and is placed in a folder under C:\RSB. The RAR archive is password protected using a password passed to the script. The script is called <strong>rsb.cmd</strong>.</p>
<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:10px 0 10px 0;text-align:center;">
<style type="text/css">
@import url(http://www.google.com/cse/api/branding.css);
</style>
<div class="cse-branding-right" style="background-color:#FFFFFF;color:#000000">
  <div class="cse-branding-form">
    <form action="http://www.google.com/cse" id="cse-search-box" target="_blank">
      <div>
        <input type="hidden" name="cx" value="partner-pub-8456896426992435:wi5tiw-g8t3" />
        <input type="hidden" name="ie" value="ISO-8859-1" />
        <input type="text" name="q" size="31" />
        <input type="submit" name="sa" value="Search" />
      </div>
    </form>
  </div>
  <div class="cse-branding-logo">
    <img src="http://www.google.com/images/poweredby_transparent/poweredby_FFFFFF.gif" alt="Google" />
  </div>
  <div class="cse-branding-text">
    Custom Search
  </div>
</div>
</div>

<p><span id="more-496"></span></p>
<p>The example below would archive everything starting from <em>D:\Personal Docs\Articles</em> to an archive called <em>C:\RSB\Documents</em>. The password used to encrypt the archive is <em>123456</em>.</p>
<p><em>rsb Documents &#8220;D:\Personal Docs\Articles&#8221; 123456</em></p>
<p>If you have another folder you would like to archive, simply call the command above with a different archive name and a different directory. Using a different password is up to you.</p>
<p>Below is the script to perform this task:</p>
<blockquote>
<pre><em>@echo off
:: This script archives a directory and all its contents with a
:: password for storage in online backup service. It adds
:: recovery information to the archive thereby increasing the
:: chance of it being opened up if the archive is damaged.
:: This script compresses files thereby reducing the storage
:: requirements as well as upload times.
:: Written by Alan C. Bonnici (email chribonn@gmail.com) 2010/05</em></pre>
<pre><em>set r_Version=1.0</em></pre>
<pre>rem This script takes three parameters:
rem  1. The name of the archive
rem  2. The directory (and its sub-directories) that are to be archived
rem  3. The archive password
rem The archive will be placed into a directory called RSB. Your
rem online backup program should backup all files in this
rem directory</pre>
<pre>rem All 3 parameters are mandatory
if [%1]==[] GOTO :Error
if [%2]==[] GOTO :Error
if [%3]==[] GOTO :Error</pre>
<pre>set r_Archive=%1
call :DeQuote r_Archive</pre>
<pre>set r_Dir=%2
call :DeQuote r_Dir</pre>
<pre>if EXIST C:\RSB\NUL GOTO :DirExists
md C:\RSB</pre>
<pre>:DirExists

echo The contents of this archive are intended only for the person or entity to whom they belong and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. &gt; "%TEMP%\comment.rsb"

if EXIST "%TEMP%\output.rsb" del /q "%TEMP%\output.rsb" &gt; NUL</pre>
<pre>"%PROGRAMFILES%\winrar\winrar.exe" u -as -av -cfg- -ow -r -rr10p -inul -ilog"%TEMP%\output.rsb" -t -hp%3 -z"%TEMP%\comment.rsb" -- "C:\RSB\%r_Archive%" "%r_Dir%"
set r_Err=%ERRORLEVEL%
if %r_Err%==0 GOTO :EndCmd</pre>
<pre>rem An error occurred. Dump the file if it exists
if EXIST "%TEMP%\output.rsb" type "%TEMP%\output.rsb"

echo.</pre>
<pre>if %r_Err%==1 echo Warning. Non fatal error(s) occurred.
if %r_Err%==1 GOTO :EndCmd</pre>
<pre>if %r_Err%==2 echo Error. A fatal error occurred.
if %r_Err%==2 GOTO :EndCmd</pre>
<pre>if %r_Err%==3 echo Error. CRC error occurred when unpacking.
if %r_Err%==3 GOTO :EndCmd</pre>
<pre>if %r_Err%==4 echo Error. Attempt to modify a locked archive.
if %r_Err%==4 GOTO :EndCmd</pre>
<pre>if %r_Err%==5 echo Error. Write error.
if %r_Err%==5 GOTO :EndCmd</pre>
<pre>if %r_Err%==6 echo Error. File open error.
if %r_Err%==6 GOTO :EndCmd</pre>
<pre>if %r_Err%==7 echo Error. Wrong command line option.
if %r_Err%==7 GOTO :EndCmd</pre>
<pre>if %r_Err%==8 echo Error. Not enough memory.
if %r_Err%==8 GOTO :EndCmd</pre>
<pre>if %r_Err%==9 echo Error. File create error.
if %r_Err%==9 GOTO :EndCmd</pre>
<pre>if %r_Err%==255 echo Error. You aborted the process
if %r_Err%==255 GOTO :EndCmd</pre>
<pre>rem Undefined error.
echo Error. Undefined error %r_Err%

goto :EndCmd</pre>
<pre>:EndCmd
rem Clean up
if EXIST "%TEMP%\comment.rsb" del /q "%TEMP%\comment.rsb" &gt; NUL
if EXIST "%TEMP%\output.rsb" del /q "%TEMP%\output.rsb" &gt; NUL
set r_Archive=
set r_Dir=
set r_Err=
<em>set r_Version=</em></pre>
<pre>goto :EOF</pre>
<pre>:Error
echo This script takes three values:
echo    1. The name of the archive
echo    2. The directory (and its sub directories) that are to be archived
echo    3. The archive password
echo The archive will be placed into a directory called RSB (it will be created if it does not exist).
echo Your online backup program should backup all files in this directory.
echo RSB Documents "C:\Users\ACBonnici\Documents" Pa$$w0rd
goto :EOF</pre>
<pre>   :: Removes the outer set of double quotes from a variable.
   :: Written by Frank P. Westlake, 2001.09.22, 2001.09.24
   :: Modified by Simon Sheppard 2002.06.09

   :: Usage as a function within a script:
   ::   CALL :DeQuote VariableName
   ::
   :: Calling as a function from another batch file:
   ::   CALL DeQuote.cmd VariableName
   ::
   :: If the first and last characters of the variable contents are double
   :: quotes then they will be removed. This function preserves cases such as
   ::   Set Height=5'6" and Set Symbols="!@#
   ::
   :: If a variable is quoted twice and has delimiters then you will
   :: need to run the function twice to remove both sets.
   ::   Set var=""Two Quotes;And,Delimiters=Fails""
   ::
   :: If the variable name itself contains spaces the routine will fail
   :: e.g. %v_my_variable% rather than %my variable%

   :DeQuote
   SET DeQuote.Variable=%1
   CALL Set DeQuote.Contents=%%%DeQuote.Variable%%%
   Echo.%DeQuote.Contents%|FindStr/brv ""^"&gt;NUL:&amp;&amp;Goto :EOF
   Echo.%DeQuote.Contents%|FindStr/erv ""^"&gt;NUL:&amp;&amp;Goto :EOF

   Set DeQuote.Contents=####%DeQuote.Contents%####
   Set DeQuote.Contents=%DeQuote.Contents:####"=%
   Set DeQuote.Contents=%DeQuote.Contents:"####=%
   Set %DeQuote.Variable%=%DeQuote.Contents%

   Set DeQuote.Variable=
   Set DeQuote.Contents=
   Goto :EOF</pre>
</blockquote>
<p>If you would like to download this script rather than copy and paste it from this article point your browser to <a href="http://www.remotestoragebackup.com/downloads/RSBArticleCode.rar">http://www.RemoteStorageBackup.com/downloads/RSBArticleCode.rar</a>. What remains is to set your online backup program to backup everything in the c:\RSB directory. Don’t forget to periodically test that everything is working well.</p>
<p>Next time I’ll delve into the code and explain what it does and how it works. This will allow you to customise it to your needs.</p>
<p>If you have any observations or questions send an email to chribonn@gmail.com.<br />
<h3>Last 3 posts by chribonn</h3><ul><li><a href="http://www.backupmyhost.com/blog/basics/when-green-is-bad/">When Green Is Bad</a> - July 5th, 2010</li><li><a href="http://www.backupmyhost.com/blog/basics/what-your-backup-solution-should-be-and-do/">What your backup solution should be and do</a> - June 27th, 2010</li><li><a href="http://www.backupmyhost.com/blog/enterprise/backing-up-resotring-and-tweaking-sage-pastel-evolution/">Backing up, Restoring and Tweaking Sage Pastel Evolution</a> - April 5th, 2010</li></ul></p>

<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:0px;">
<script type="text/javascript"><!--
google_ad_client = "pub-8456896426992435";
/* Homepage, 300x250, side bar */
google_ad_slot = "1042304518";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div>]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/enterprise/securing-your-online-backup-archives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote online backup providers</title>
		<link>http://www.backupmyhost.com/blog/remote-backups/489/</link>
		<comments>http://www.backupmyhost.com/blog/remote-backups/489/#comments</comments>
		<pubDate>Mon, 10 May 2010 17:35:00 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Remote Backups]]></category>
		<category><![CDATA[Curtis Preston]]></category>
		<category><![CDATA[online backups]]></category>
		<category><![CDATA[remote backup]]></category>
		<category><![CDATA[SearchDataBackup]]></category>
		<category><![CDATA[service providers]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=489</guid>
		<description><![CDATA[









Very recently, I read an article by W. Curtis Preston (at SearchDataBackup.com) about remote online backup services. As this blog, deals with data backups I would like to comment about some points. W. Curtis Preston is an executive editor at TechTarget and independent backup expert. 
Preston starts his article by pointing out the major setback of remote online [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.backupmyhost.com/blog/wp-content/uploads/2010/05/remote-online-backup-setup.jpg"><img class="alignright size-full wp-image-490" title="remote online backup setup" src="http://www.backupmyhost.com/blog/wp-content/uploads/2010/05/remote-online-backup-setup.jpg" alt="" width="227" height="163" /></a>Very recently, I read an article by W. Curtis Preston (<a href="http://searchdatabackup.techtarget.com/generic/0,295582,sid187_gci1510545,00.html?track=NL-1058&amp;ad=763471&amp;asrc=EM_USC_11417785&amp;uid=788342" target="_blank">at SearchDataBackup.com</a>) about remote online backup services. As this blog, deals with data backups I would like to comment about some points. <em>W. Curtis Preston</em> is an executive editor at TechTarget and independent backup expert. </p>
<p>Preston starts his article by pointing out the major setback of remote online backups that is the first full backup execution time and mentions the seating option. The seating option is when a service provider offers the customer to shift a complete set of all data through a physical means such as, removable drives. In addition, he mentions the long backup time that the initial full backup job would take and the bandwidth limitations associated with large uploads of data. This is true and I would consider these factors as the only limitations of remote online backups as we stressed out in our previous articles – <a href=" http://www.backupmyhost.com/blog/category/remote-backups/" target="_blank">click here for more articles </a>- In fact, we both agree that home users and SMBs are the ideal customers of these services.</p>
<p><span id="more-489"></span></p>
<p>In my opinion Curtis missed one important benefit here, the off-site functionality these services provide! One should not forget the time taken to transfer a backup set off-site using the conventional services! Using tapes to backup all data takes time, having a service provider collecting tapes from different locations means that your backup tapes spend a good deal of time in a vehicle until they arrive to their destination. Then what about the retrieval arrangement? In case, you want to recover some data from the off-site tapes how fast can you get them?</p>
<p>Furthermore, Curtis tackles the backup requirements and mentions SLAs but forgets to add one important requirement! I would definitely include security requirements in the SLA – what type of security mechanism is the service provider willing to offer – are they going to provide me with a security key and how are they going to transfer me this key, etc. In my opinion these are the main concerns and hence, would require major attention than the frequency of backup/restore times. Connection speeds are hard to get them black on white in SLAs, as these are subjective to the full network path from your host to the provider&#8217;s location. Here, the best approach would be to test run the selected provider for a trial period and compare with other providers’ overall connection.</p>
<p>One of the major pitfalls as Curtis correctly points out is the restore test runs. If you do not verify that the backed up data can be actually recovered then you are good as having no backup at all. I came across some providers that allow an optional direct access to the backup location. That is, the provider would be managing your account, logging all activity and providing a fast backup mechanism but with the added functionality of direct restores from the backup location. This added functionality would allow you to download/restore your data when the provider is partially down or in some cases completely down. Such case exists where a service provider uses a third-party storage provider (ex: Amazon&#8217;s cloud) and they act as the middle-ware between you and the storage location, however, you need to negotiate direct access functionality prior to signing any agreements! In the articles to follow, I will write more about remote online backups :)<br />
<h3>Last 3 posts by George</h3><ul><li><a href="http://www.backupmyhost.com/blog/basics/backup-considerations-for-microsoft-sharepoint/">Backup considerations for Microsoft SharePoint</a> - July 26th, 2010</li><li><a href="http://www.backupmyhost.com/blog/basics/what-is-cloud-computing/">What is Cloud Computing?</a> - July 19th, 2010</li><li><a href="http://www.backupmyhost.com/blog/audit/is-cloud-computing-getting-safer/">Is Cloud computing getting safer?</a> - July 13th, 2010</li></ul></p>
]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/remote-backups/489/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote backup management consoles</title>
		<link>http://www.backupmyhost.com/blog/audit/remote-backup-management-consoles/</link>
		<comments>http://www.backupmyhost.com/blog/audit/remote-backup-management-consoles/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:33:44 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Audit]]></category>
		<category><![CDATA[Remote Backups]]></category>
		<category><![CDATA[backup media]]></category>
		<category><![CDATA[costs]]></category>
		<category><![CDATA[management consoles]]></category>
		<category><![CDATA[online backups]]></category>
		<category><![CDATA[remote backup]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=322</guid>
		<description><![CDATA[
A remote or online backup solution is the way forward for off-site data protection. Due to regulatory compliance some corporations are holding back from going to this direction, however, much work is being made in this area and soon we have providers that will provide such conformity. On the other hand, the majority of SMBs [...]]]></description>
			<content:encoded><![CDATA[<p><br />
A remote or online backup solution is the way forward for off-site data protection. Due to regulatory compliance some corporations are holding back from going to this direction, however, much work is being made in this area and soon we have providers that will provide such conformity. On the other hand, the majority of SMBs that have no specific regulatory requirements and certainly most households should consider this platform as their main off-site backup solution.<img class="alignright size-full wp-image-327" title="console" src="http://www.backupmyhost.com/blog/wp-content/uploads/2010/02/console1.jpg" alt="console" width="187" height="155" /></p>
<p>Nevertheless, SMBs and households should not forget to backup their data locally first and then use a remote storage location as a second means of protection - my advice is:</p>
<p> </p>
<p><span id="more-322"></span></p>
<ol>
<li>To perform regular Data backups locally, on some reliable and inexpensive <a href="http://www.backupmyhost.com/blog/basics/typical-backup-destination-media-for-home-users/" target="_blank">media</a> but most importantly is to use a different storage media other than the local drive.</li>
<li>Then move/archive this data off-site – again using a reliable, secure and <a href="http://www.backupmyhost.com/blog/basics/total-cost-of-ownership-of-data-backups/" target="_blank">economical solution</a></li>
</ol>
<p>I have come across a couple of online backup providers that lack comprehensive management tools. When I say comprehensive I mean ample features that allow end users to monitor the backup/restore process and check for errors, costs and edit account details.</p>
<p>Such as, a user-friendly Web-based GUI (graphical user interface) that provides the following information:</p>
<ol>
<li>That shows and logs the successful completion of backup and restore jobs</li>
<li>For failed jobs one should be able to view a brief but complete explanation of what went wrong in plain English and not a series of error codes</li>
<li>That shows the storage space consumed and the remaining space if the account is limited by space quota. Graphical statistics would give a good overview such as, usage per day, month, etc</li>
<li>Timestamps for the backed up data that will help the end user identify the right data in case a data recovery is needed</li>
<li>A section (tab) with all the billing and payment details without disclosing any critical information</li>
<li>A personal account section where one can change passwords, email address, quota settings if any and other account related settings.</li>
</ol>
<p><h3>Last 3 posts by George</h3><ul><li><a href="http://www.backupmyhost.com/blog/basics/backup-considerations-for-microsoft-sharepoint/">Backup considerations for Microsoft SharePoint</a> - July 26th, 2010</li><li><a href="http://www.backupmyhost.com/blog/basics/what-is-cloud-computing/">What is Cloud Computing?</a> - July 19th, 2010</li><li><a href="http://www.backupmyhost.com/blog/audit/is-cloud-computing-getting-safer/">Is Cloud computing getting safer?</a> - July 13th, 2010</li></ul><br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/audit/remote-backup-management-consoles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Total Cost of Ownership of Data Backups</title>
		<link>http://www.backupmyhost.com/blog/basics/total-cost-of-ownership-of-data-backups/</link>
		<comments>http://www.backupmyhost.com/blog/basics/total-cost-of-ownership-of-data-backups/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:24:38 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[Food for thought]]></category>
		<category><![CDATA[Remote Backups]]></category>
		<category><![CDATA[costs]]></category>
		<category><![CDATA[online backups]]></category>
		<category><![CDATA[remote backup]]></category>
		<category><![CDATA[Total Cost of Ownership]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=276</guid>
		<description><![CDATA[Are online backup and recovery solutions cheaper than the counterpart traditional solutions? Before I deal with this argument I would like to point out a few points: &#8211; online backups provide an offsite disaster recovery solution, you can access your data from anywhere given that you have an internet connection and additionally, you will be [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-278" title="money" src="http://www.backupmyhost.com/blog/wp-content/uploads/2010/01/money.jpg" alt="money" width="97" height="124" /><em>Are online backup and recovery solutions cheaper than the counterpart traditional solutions?</em> Before I deal with this argument I would like to point out a few points: &#8211; online backups provide an offsite disaster recovery solution, you can access your data from anywhere given that you have an internet connection and additionally, you will be enjoying the expertise and the scalability of big vendors.</p>
<p>Online backups offer cheaper costs per GB for the same functionality because you only pay for what you use. :) The costs include the storage used, bandwidth consumed and other related services. Data security is based on the latest encryption algorithms and adequate auditing features would place the end-user&#8217;s mind at rest!</p>
<p><span id="more-276"></span></p>
<p>A typical SMB that generates a full backup of say, 600GB of data would need an initial expense consisting of an entry level LTO-3 storage drive and an entry level server plus a couple of LTO-3 tape cartridges. Such setup would permit the full backup to be completed in about three hours and the need of one IT staff to be present to swop the tapes if compressing the data is not good enough to fit all data on one tape.</p>
<p>The Initial capital or better the total purchase cost for a similar tape solution would be about $3600. Therefore, the initial cost per GB would be of $6 per GB. If we assume that the above mentioned setup would run for a period of three whole years without entering into additional expenses such as, maintenance and repair costs (which is highly unlikely), then the cost per GB would be much lower. However, one would need to include the IT staff, space requirements and electricity expenses into the costs equation.</p>
<p>On the other hand, an online backup solution requires a good and stable internet connection, especially with regards to upload speeds. Various service providers provide services to move the initial large volumes of data through other means and hence, at cheaper rates. However, if an SMB had to implement this solution, it would cost him/her about $360 to transfer the initial 600GB of data which would yield a cost of 0.60c per GB. As already noted, an adequate internet connection is a must since an internet connection with an upload speed of 2Mbps would take a month to upload a full data backup of about 600GB. This may not be practical; however, alternate arrangements can be made with the provider to shift the initial data!</p>
<p>Conclusion: &#8211; An online backup solution has a lower TCO (Total Cost of Ownership) when compared to an internal solution.<br />
<h3>Last 3 posts by George</h3><ul><li><a href="http://www.backupmyhost.com/blog/basics/backup-considerations-for-microsoft-sharepoint/">Backup considerations for Microsoft SharePoint</a> - July 26th, 2010</li><li><a href="http://www.backupmyhost.com/blog/basics/what-is-cloud-computing/">What is Cloud Computing?</a> - July 19th, 2010</li><li><a href="http://www.backupmyhost.com/blog/audit/is-cloud-computing-getting-safer/">Is Cloud computing getting safer?</a> - July 13th, 2010</li></ul></p>
]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/basics/total-cost-of-ownership-of-data-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are online backups for your computer a safe idea?</title>
		<link>http://www.backupmyhost.com/blog/uncategorized/are-online-backups-for-your-computer-a-safe-idea/</link>
		<comments>http://www.backupmyhost.com/blog/uncategorized/are-online-backups-for-your-computer-a-safe-idea/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 17:07:43 +0000</pubDate>
		<dc:creator>chribonn</dc:creator>
				<category><![CDATA[Food for thought]]></category>
		<category><![CDATA[Remote Backups]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[data loss]]></category>
		<category><![CDATA[online backups]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=260</guid>
		<description><![CDATA[Are cars safe? Are computers safe? Is buying over the internet safe? These are some of the questions people who pose the question above might have asked a hundred, thirty and fifteen years ago. Today, many of us use cars, computers and regularly effect payments over the internet without much thought. When talking about online [...]]]></description>
			<content:encoded><![CDATA[<p>Are cars safe? Are computers safe? Is buying over the internet safe? These are some of the questions people who pose the question above might have asked a hundred, thirty and fifteen years ago. Today, many of us use cars, computers and regularly effect payments over the internet without much thought. When talking about online backups, the simple answer to the question being asked is yes.</p>
<p><a href="http://www.backupmyhost.com/blog/wp-content/uploads/2009/12/Loony_Bin.jpg"><img class="aligncenter size-full wp-image-261" src="http://www.backupmyhost.com/blog/wp-content/uploads/2009/12/Loony_Bin.jpg" alt="Loony_Bin" width="250" height="364" /></a></p>
<p><span id="more-260"></span>I have, over the past year and a bit discussed this topic with my students. My students are normal people taking an office productivity computer course. Their computer is shared by at least one other member of the family. They come from all walks of life and a considerable portion of them have been the victim of some sort of data loss. The loss may have been as a result of a virus, an incompetent relative trying to tinker something on the computer or a hard disk failure. All of them reminisce about lost photos, assignments and other important electronic material once held on the computer.</p>
<p>Outside the dominion of what it is one should or should not do, the fact of the matter is that backing up to CDs, DVDs or other media is a non starter with the absolute majority of commoners. Some may take up the hobby right after a disaster but as soon as the memory of the event starts fading into the background so does the backup regime.<br />
With the internet being consistently stable and fast the possibility of being able to backup your important stuff to an offsite server is bliss. Imagine a solution that is easy to setup and intuitively selects your important folders automatically. When you open the program it gives you a Windows Explorer type interface with the important folders already selected but lets you customize the backup list. When you hit the Backup button, the selected files and folders are copied in the background to a fast, safe and secure server. If the software cannot backup a file because it is currently being used, it prompts you about the matter and tries again later. Once a backup has been completed the programs sits quietly in the background monitoring changed files which it will update automatically. The program would keep deleted and prior versions of modified files for a specified number of days just in case you need to revert back to them.</p>
<p>If something happens to your computer and you lose everything, you simply install the program again and after typing in your username and password, the program automatically downloads saved backup settings so that you do not have to recreate them. This time round, when you hit the Restore button, the Windows Explorer type window comes up and you simply transfer the files from the remote server to your local computer. Similar reasoning would apply if you delete an individual file or need to revert to an earlier version of a document.</p>
<p>There are people who are rightfully concerned about their privacy. Most office productivity products allow you to password protect documents making them unreadable to anyone without the password. Certain file types such as images and audio files cannot be password protected at the file level although there are free programs that will create password protected archives. 7-Zip and Truecrypt are two products I have used frequently for this purpose.<br />
<h3>Last 3 posts by chribonn</h3><ul><li><a href="http://www.backupmyhost.com/blog/basics/when-green-is-bad/">When Green Is Bad</a> - July 5th, 2010</li><li><a href="http://www.backupmyhost.com/blog/basics/what-your-backup-solution-should-be-and-do/">What your backup solution should be and do</a> - June 27th, 2010</li><li><a href="http://www.backupmyhost.com/blog/enterprise/securing-your-online-backup-archives/">Securing your online backup archives</a> - May 12th, 2010</li></ul></p>
]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/uncategorized/are-online-backups-for-your-computer-a-safe-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go for online remote backups</title>
		<link>http://www.backupmyhost.com/blog/remote-backups/go-for-online-remote-backups/</link>
		<comments>http://www.backupmyhost.com/blog/remote-backups/go-for-online-remote-backups/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 21:11:06 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Remote Backups]]></category>
		<category><![CDATA[de-duplication]]></category>
		<category><![CDATA[online backups]]></category>
		<category><![CDATA[remote backup]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=124</guid>
		<description><![CDATA[With today&#8217;s inexpensive and large-sized disk drives, disk-to-disk backups have become the default choice for many SMBs! However, off-site backup procedures require the use of tapes and hence, the use of related peripherals such as tape drives. Traditional backup methodologies bring along the need for more storage space and a sharp increase in operational costs! [...]]]></description>
			<content:encoded><![CDATA[<p>With today&#8217;s inexpensive and large-sized disk drives, disk-to-disk backups have become the default choice for many SMBs! However, off-site backup procedures require the use of tapes and hence, the use of related peripherals such as tape drives. Traditional backup methodologies bring along the need for more storage space and a sharp increase in operational costs! Although, data archives and off-site backups have their advantages, and are a must when meeting compliance regulations they must adhere to more rigid safeguards such as, encryption mechanisms and safe storage. Adequate drills need to be put in place to test recovery procedures on regular basis. Traditional methods create data duplication. To eliminate duplication of data, various methods and applications were created which are known as data de-duplication. Data de-duplication improves data protection, increases the speed of service, and reduces costs.</p>
<p><img class="aligncenter size-full wp-image-128" title="rembkup" src="http://www.backupmyhost.com/blog/wp-content/uploads/2009/11/rembkup.jpg" alt="rembkup" width="292" height="134" /></p>
<p>Why online backups are the way forward &#8211; because they provide:</p>
<ol>
<li>User friendly backup/restore applications</li>
<li>Native off-site and archival services</li>
<li>Reduce secondary storage requirements through data de-duplication concepts</li>
<li>Intelligent data transfer methods through hashing algorithms</li>
<li>Safe &#8211; same data protection means such as, encrypted storage and connection</li>
<li>Scalability for future growth</li>
<li>Cheaper TCO (total cost of ownership)</li>
<li>Introduce pay-per-use concepts</li>
<li>Data retrieval anywhere-anytime concepts</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/remote-backups/go-for-online-remote-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
