<?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>gHacks technology news &#187; backup</title>
	<atom:link href="http://www.ghacks.net/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Mon, 09 Nov 2009 10:11:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Backup your Linux box with rsync</title>
		<link>http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/</link>
		<comments>http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:13:15 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[automated backup]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[linux backup]]></category>
		<category><![CDATA[secure shell]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17157</guid>
		<description><![CDATA[In this Linux backup series we have taken a look at Flyback (&#8221;Quick and easy backups with Flyback&#8220;), Backerupper (&#8221;Simple gui backup tool Backerupper&#8220;), and Back In Time (&#8221;Linux Back In Time: Backup made easy&#8220;). But what Linux series would be complete without a command line entry? Not this one.
There is one thing that most [...]]]></description>
			<content:encoded><![CDATA[<p>In this Linux backup series we have taken a look at Flyback (&#8221;<a title="Flyback" href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/" target="_blank">Quick and easy backups with Flyback</a>&#8220;), Backerupper (&#8221;<a title="Backerupper" href="http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/" target="_blank">Simple gui backup tool Backerupper</a>&#8220;), and Back In Time (&#8221;<a title="Back In Time" href="http://www.ghacks.net/2009/10/10/linux-back-in-time-backup-made-easy/" target="_blank">Linux Back In Time: Backup made easy</a>&#8220;). But what Linux series would be complete without a command line entry? Not this one.</p>
<p>There is one thing that most Linux backup tools have in common and that is their underlying technologies. In most cases one of the tools that make the GUI backup tools possible is the venerable rsync. Rsync is an incredibly fast and lightweight file copy tool that can not only copy files to and from a local machine, it can also copy over a network connection &#8211; which makes rsync an ideal candidate for user-generated backup scripts or cron jobs.</p>
<p>In this tutorial you will learn how easy it is to use rysnc to not only back up specified directories to an external usb drive, but also to backup over a network connection via ssh.</p>
<p><span id="more-17157"></span><strong>Command structure</strong></p>
<p>The structure of the rsync command is:</p>
<p>rsync [OPTIONS] <strong>SOURCE</strong> <em>DESTINATION</em></p>
<p>Where SOURCE is the location of the directory to be backed up and DESTINATION is where the backup will be placed.</p>
<p>Now the structure of the command changes when you are employing a network facility such as ssh. At that point the command structure would look like:</p>
<p>rsync [OPTIONS] ssh <strong>SOURCE </strong><em>user@destination:/directory</em></p>
<p>Where <em>user </em>is the user name on the remote machine, <em>destination</em> would be either an IP address or domain, and <em>/directory</em> is the explicit path to the directory you want to back up to.</p>
<p><strong>Usage</strong></p>
<p>For the first example we are going to backup the directory <strong>/home/jlwallen/Documents</strong> to the directory <strong>/media/disk/BACKUPS</strong>. This destination is a directory located on an external USB drive obviously mounted to <strong>/media/disk</strong>. The command for this backup will be:</p>
<p><code>rsync -avh /home/jlwallen/Documents /media/disk/BACKUPS</code></p>
<p>This is where we run into our first &#8220;gotcha&#8221;. What happens with the above command is that any subdirectory in <strong>/home/jlwallen/Documents</strong> will be created on <strong>/media/disk/BACKUPS</strong>. So if you want to create a similar directory structure on the destination you should first create a parent directory similar to that of the source. So before you run the rsync command issue this command:</p>
<p><em>mkdir /media/disk/BACKUPS/Documents</em></p>
<p>The new rsync command would be:</p>
<p><code>rsync -avh /home/jlwallen/Documents /media/disk/BACKUPS/Documents</code></p>
<p>The options used in the above command are:</p>
<ul>
<li>a: Archive mode</li>
<li>v: Verbose mode</li>
<li>h: Output in human readable format.</li>
</ul>
<p>Now let&#8217;s backup the same source to a remote location with the help of secure shell. It will help your cause to first make sure you can log into the remove machine via ssh. Once you have that working you are ready to backup. Using our same example we are going to backup to user jlwallen at the IP address 192.168.1.10 to the directory <strong>/home/jlwallen/BACKUPS/Documents</strong>. To do this the command would look like:</p>
<p><code>rsync -avhe ssh /home/jlwallen/Documents jlwallen@192.168.1.10:/home/jlwallen/BACKUPS/Documents</code></p>
<p>The added option is e which allows you to specify the remote shell to use.</p>
<p>You will be prompted for the remote users&#8217; password and then the coping will begin. But what if you don&#8217;t want to have to use a password? If you are wanting to set up automated, remote backups you will have to allow this process to happen without entering a password. To do this you have to create an SSH key without a password. Here are the steps for this:</p>
<p>create an ssh key on the source machine with the command:</p>
<p><em>ssh-keygen -t dsa</em></p>
<p>Press enter when prompted for a password.</p>
<p>Once the key is created copy that key to the destination key with the following command:</p>
<p><code>ssh-copy-id -i .ssh/id_dsa.pub username@destination</code></p>
<p>Where username is the user on the remote machine and destination is the IP or domain of the remote machine.</p>
<p>Now rsync copying can be done without having to enter a password.</p>
<p><strong>Final thoughts</strong></p>
<p>The nice thing about this setup is you can now use rsync to create a cron job for backup automation. Rsync is an incredibly flexible and reliable means for backing up your directories and files. It should be since it is the foundation that so many other backup tools were based on.</p>

	Tags: <a href="http://www.ghacks.net/tag/automated-backup/" title="automated backup" rel="tag">automated backup</a>, <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/linux-backup/" title="linux backup" rel="tag">linux backup</a>, <a href="http://www.ghacks.net/tag/secure-shell/" title="secure shell" rel="tag">secure shell</a>, <a href="http://www.ghacks.net/tag/ssh/" title="ssh" rel="tag">ssh</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/" title="Get To Know Linux: Secure Shell (February 17, 2009)">Get To Know Linux: Secure Shell</a> (4)</li>
	<li><a href="http://www.ghacks.net/2007/02/17/zip-encrypt-ftp-backups/" title="Zip Encrypt Ftp Backups (February 17, 2007)">Zip Encrypt Ftp Backups</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Simple gui backup tool backerupper</title>
		<link>http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/</link>
		<comments>http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 15:19:34 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Desktop Manager]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[desktop backup]]></category>
		<category><![CDATA[GNOME backup]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17099</guid>
		<description><![CDATA[In my last article I covered the backup GUI Flyback (&#8221;Quick and easy backups with Flyback&#8220;.) Although it seems development has stopped for that tool, it is still a viable solution. Does that mean it&#8217;s the best solution? No. There are far better GUI tools for easy desktop backup. One of those tools is Backerupper. Backerupper is [...]]]></description>
			<content:encoded><![CDATA[<p>In my last article I covered the backup GUI Flyback (&#8221;<a title="Flyback" href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/" target="_blank">Quick and easy backups with Flyback</a>&#8220;.) Although it seems development has stopped for that tool, it is still a viable solution. Does that mean it&#8217;s the best solution? No. There are far better GUI tools for easy desktop backup. One of those tools is <a title="Backerupper" href="http://sourceforge.net/projects/backerupper/" target="_blank">Backerupper</a>. Backerupper is still in beta at release .24-32. But that doesn&#8217;t deter from the fact that the tool is very useful and stable.</p>
<p>Backerupper not only does a good job of simple backups, it also adds an icon to the GNOME notification area for quick access. And with Backerupper offers enough features to satisfy the users who demand ease of use, as well as those who want a feature-rich tool.</p>
<p><span id="more-17099"></span><strong>Features</strong></p>
<p>Speaking of features, Backerupper has them:</p>
<ul>
<li><span style="background-color: #ffffff">Simple configuration.</span></li>
<li><span style="background-color: #ffffff">Simple installation.</span></li>
<li><span style="background-color: #ffffff">Profiles.</span></li>
<li><span style="background-color: #ffffff">Restore.</span></li>
<li><span style="background-color: #ffffff">Automated backups.</span></li>
<li><span style="background-color: #ffffff">Limit amount of backup copies stored.</span></li>
<li><span style="background-color: #ffffff">Quick access from notification area.</span></li>
<li><span style="background-color: #ffffff">Portable (run Backerupper from your thumb drive).</span></li>
</ul>
<p>Now let&#8217;s get into the thick of things and install Backerupper.</p>
<p><strong>Installation</strong></p>
<p>Installing Backerupper is simple. You will not find this tool in your repositories so you&#8217;re going to have to download it from the</p>
<p><code>wget <span style="background-color: #ffffff">http://downloads.sourceforge.net/project/backerupper/backerupper/Backerupper-0.24/backerupper-0.24-32.tar.gz</span></code></p>
<p>The above command will download the latest (as of this writing) version of Backerupper. Now you need to unpack the tar file with the command (issued from within the directory you downloaded the file):</p>
<p><code>tar xvzf backerupper-0.24-32.tar.gz</code></p>
<p>This will create a new directory called <strong>backerupper-0.24-32</strong>. Change into that directory with the command <em>cd backerupper-0.24-32 </em>and you will find five files and one directory. If you want to install Backerupper issue the following command:</p>
<p><em>sudo ./install.sh</em></p>
<p>If you are not on a sudo-based distribution you will want to <em>su</em> to the root user and then issue the command <em>./install.sh</em>. The <strong>install.sh</strong> file will copy the file <strong>backer</strong> to <strong>/usr/bin</strong> and will create the directory <strong>/usr/share/backerupper</strong> and then copy the <strong>doc</strong> directory to the newly created directory.</p>
<p>Once installed all you have to do is issue the command <em>backer</em> as a standard user.</p>
<p>Now if you want to have a portable Backerupper you can  just copy the <strong>backer</strong> file to your mounted thumb drive. When you run the <em>backer</em> command from your thumb drive you will get a warning that the online help system can not be found and the help system has been disabled. You will see this every time you run the command.</p>
<p><strong>Usage</strong></p>
<div id="attachment_17104" class="wp-caption alignleft" style="width: 299px"><a rel="attachment wp-att-17104" href="http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/backerupper_main/"><img class="size-full wp-image-17104 " src="http://www.ghacks.net/wp-content/uploads/2009/10/backerupper_main.png" alt="Figure 1" width="289" height="193" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Now let&#8217;s see how Backerupper is used. When you issue the command <em>backer</em> the main window will appear (see Figure 1). As you can see there are no profiles created by default. In order to create a profile you need to click the New button. When you click this button a window will appear (see Figure 2) asking for the details of this profile. The details should be fairly obvious. You can create a profile for every backup you want to create. This window is also where you set up the</p>
<div id="attachment_17105" class="wp-caption alignright" style="width: 305px"><a rel="attachment wp-att-17105" href="http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/backerupper_profile/"><img class="size-full wp-image-17105 " src="http://www.ghacks.net/wp-content/uploads/2009/10/backerupper_profile.png" alt="Figure 2" width="295" height="198" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>automation of the backup. You can also configure a destination directory as the default backup destination.</p>
<p>By default Backerupper will set your backup to happen every day. You might want to change this depending upon the frequency you require for your backup.</p>
<p>After you have created your profile that profile will appear in the Profiles drop down on the main page (see Figure 3).</p>
<p>Even though you have a backup setup for a specific time, you can automatically run that backup by selecting the profile you want to use from the drop down and then clicking the Backup Now button.</p>
<p>It should be pretty obvious that, in order for a backup to occur, Backerupper must be running. If you are one that logs out of your desktop, or shuts off your laptop, you have to remember to start up Backerupper. I would suggest adding Backerupper to your list of startup applications. To do this go to the Preferences sub-menu of the System menu and select Startup Applications. From this new window, click the Add button and fill out the necessary information. Once you have that done, Backerupper will start upon login and your backups will happen.</p>
<p><strong>Restore</strong></p>
<div id="attachment_17106" class="wp-caption alignleft" style="width: 302px"><a rel="attachment wp-att-17106" href="http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/backerupper_restore/"><img class="size-full wp-image-17106 " src="http://www.ghacks.net/wp-content/uploads/2009/10/backerupper_restore.png" alt="Figure 3" width="292" height="199" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>The restore process is very simple. Click on the Restore tab in the Backerupper main window (see Figure 3) and follow these steps:</p>
<ol>
<li><span style="background-color: #ffffff">Select the profile you want to restore.</span></li>
<li><span style="background-color: #ffffff">If you have more than one archive of this directory click the Select Archive button and select which archive you want to restore.</span></li>
<li><span style="background-color: #ffffff">Click the Restore button.</span></li>
</ol>
<p>That&#8217;s it.</p>
<p><strong>Final thoughts</strong></p>
<p>Backerupper is one of the easiest (and fastest) desktop backup solutions I have found. And its portability makes it an even better solution for flexible Linux desktop backup.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/desktop-backup/" title="desktop backup" rel="tag">desktop backup</a>, <a href="http://www.ghacks.net/tag/gnome-backup/" title="GNOME backup" rel="tag">GNOME backup</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/" title="Quick and easy backups with Flyback (October 8, 2009)">Quick and easy backups with Flyback</a> (8)</li>
	<li><a href="http://www.ghacks.net/2007/02/17/zip-encrypt-ftp-backups/" title="Zip Encrypt Ftp Backups (February 17, 2007)">Zip Encrypt Ftp Backups</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick and easy backups with Flyback</title>
		<link>http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/</link>
		<comments>http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 17:04:36 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[automatic backup]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[desktop backup]]></category>
		<category><![CDATA[scheduled backups]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17079</guid>
		<description><![CDATA[If you&#8217;re looking for a tool for really simple and quick backups Flyback might just be the tool for you. Compared to Apples Time Machine (on the web site at least), Flyback allows you to create specific backs that can be run manually or automagically with a very simple GUI and not much time or [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re looking for a tool for really simple and quick backups Flyback might just be the tool for you. Compared to Apples Time Machine (on the web site at least), Flyback allows you to create specific backs that can be run manually or automagically with a very simple GUI and not much time or effort involved.</p>
<p><a title="Flyback" href="http://code.google.com/p/flyback/" target="_blank">Flyback</a> is based on rsync and creates successive backup directories mirroring the files you set up to back up. In order to save space, Flyback hardlinks any unchanged files to previous backups. With Flyback you can backup to either a networked drive (so long as it is mapped), a usb drive, a thumb drive, or a directory within the file system. One thing you want to certainly avoid is backing up to a directory that is also being backed up. In other words, if you are backing up <strong>/home/jlwallen</strong> you would not want to back up to <strong>/home/jlwallen/BACKUP</strong>. Instead you would want to back up to something like <strong>/BACKUP</strong>. But we&#8217;re getting ahead of ourselves. Let&#8217;s first learn to install and use Flyback.</p>
<p><span id="more-17079"></span><strong>Installation</strong></p>
<p>Installing Flyback is fairly simple. You will not find Flyback in any of your repositories, nor can you add repositories so that Fly can be installed with apt-get or any GUI tool. You can, however, install all of the dependencies with apt-get. To do this open up a terminal window and issue the command:</p>
<p><code>sudo apt-get install python python-glade2 python-gnome2 python-sqlite python-gconf rsync</code></p>
<p>You might find that apt-get will return that everything is already up to date. If so, you&#8217;re ready to go. If not, let the installation process happen and then you&#8217;ll be ready to go.</p>
<p>After you have issued the above command you can then download the Flyback file with the command:</p>
<p><em>wget http://flyback.googlecode.com/files/flyback_0.4.0.tar.gz</em></p>
<p>Now unpack the tar file (from within the directory the file was downloaded) with the command:</p>
<p><em>tar xvzf flyback_0.4.0.tar gz</em></p>
<p>which will create a new directory <strong>flyback</strong>. The next step is to change into the newly created directory and start up the application.</p>
<p><strong>Starting and using Flyback</strong></p>
<p>In order to start the application you will issue the command (from within the <strong>flyback</strong> directory):</p>
<p><em>python flyback.py</em></p>
<div id="attachment_17080" class="wp-caption alignleft" style="width: 381px"><a rel="attachment wp-att-17080" href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/flyback_main/"><img class="size-full wp-image-17080 " src="http://www.ghacks.net/wp-content/uploads/2009/10/flyback_main.png" alt="Figure 1" width="371" height="320" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>When the main window opens (see Figure 1) it might seem like a number of directories and/or files are already marked for backup. This is not the case. You have to actually add the files/directories from with the Preferences window. So the first thing you will want to do is click on the Edit menu and select Preferences. From within the Preferences window (see Figur 2) you will need to take care of a few tasks. The first task (and you might get a warning about this) is to configure the backup location. This is fairly</p>
<div id="attachment_17081" class="wp-caption alignright" style="width: 330px"><a rel="attachment wp-att-17081" href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/flyback_directories/"><img class="size-full wp-image-17081 " src="http://www.ghacks.net/wp-content/uploads/2009/10/flyback_directories.png" alt="Figure 2" width="320" height="215" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>straightforward &#8211; just click on the Storage Location tab and then click the drop down to select  your backup location. After you have configured this click on the Include/Exclude Directories tab. From within that tab you select the directories you want to include in your backup from the drop down and then click the Add button. In order to delete  a directory from the backup you simply right click the directory from the &#8220;Included dirs&#8221; pane and select Delete.</p>
<p>Once you have all of your directories set up, you can then create exclude patterns. Fortunately the application includes a great Help file on creating exclude patterns. To get to this file click on the Help button just above the OK button. This will give you all the information you need on creating excluding patterns.</p>
<div id="attachment_17082" class="wp-caption alignleft" style="width: 330px"><a rel="attachment wp-att-17082" href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/flyback_schedule/"><img class="size-full wp-image-17082 " src="http://www.ghacks.net/wp-content/uploads/2009/10/flyback_schedule.png" alt="Figure 3" width="320" height="214" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>After you have your directories set up, you can either click OK and then click the Backup button on the main window, or you can set up a scheduled backup from within the Backup Schedule tab (see Figure 3).</p>
<p>In order to set this up as an automatic backup click the &#8220;automatically&#8221; check box and then set up the time you want to run the backup.</p>
<p>From this same window you can configure Flyback to delete backups when space is need or when a backup is older than a defined time period.</p>
<p>One thing to note. If you are setting up a regular, automatic backup, you need to make sure the location you are backing up to will be available. For instance, if you backup to a thumb drive, that thumb drive best be inserted when the backup is set to run.</p>
<p><strong>Final thoughts</strong></p>
<p>That&#8217;s it. A very simple backup solution that is somewhat flexible, but very user-friendly. Although not the most advanced solution, but a solution that should meet most of your desktop backup needs.</p>

	Tags: <a href="http://www.ghacks.net/tag/automatic-backup/" title="automatic backup" rel="tag">automatic backup</a>, <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/desktop-backup/" title="desktop backup" rel="tag">desktop backup</a>, <a href="http://www.ghacks.net/tag/scheduled-backups/" title="scheduled backups" rel="tag">scheduled backups</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/" title="Simple gui backup tool backerupper (October 9, 2009)">Simple gui backup tool backerupper</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/02/13/backup-important-files-to-ftp/" title="Backup important files to FTP (February 13, 2008)">Backup important files to FTP</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/02/23/autover-automatic-software-versioning/" title="AutoVer Automatic Software Versioning (February 23, 2008)">AutoVer Automatic Software Versioning</a> (0)</li>
	<li><a href="http://www.ghacks.net/2007/07/10/automatically-backup-your-files/" title="Automatically backup your files (July 10, 2007)">Automatically backup your files</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/02/17/zip-encrypt-ftp-backups/" title="Zip Encrypt Ftp Backups (February 17, 2007)">Zip Encrypt Ftp Backups</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Yadis! Backup Software</title>
		<link>http://www.ghacks.net/2009/10/03/yadis-backup-software/</link>
		<comments>http://www.ghacks.net/2009/10/03/yadis-backup-software/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 12:44:07 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>
		<category><![CDATA[yadis backup]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16902</guid>
		<description><![CDATA[If you are looking for an easy to use reliable backup solution for Windows you might want to take a closer look at Yadis! Backup. The Windows backup software divides backup jobs into tasks which can be easily configured in the program&#8217;s interface. Each task can be configured to perform local or ftp backups and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/windows_software.jpg" alt="windows software" title="windows software" width="128" height="128" class="alignleft size-full wp-image-16120" />If you are looking for an easy to use reliable backup solution for Windows you might want to take a closer look at Yadis! Backup. The <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup software</a> divides backup jobs into tasks which can be easily configured in the program&#8217;s interface. Each task can be configured to perform local or ftp backups and consists of only a few information and parameters that need to be added by the user of the computer system.</p>
<p>The most important parameters are the source and destination directory for the backup. Filters are available to include or exclude specific file types and even complete subdirectories from the backup. These filters can be set for each folder individually which gives the user a lot of control over the files and folders that will be backed up.</p>
<p><span id="more-16902"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/10/yadis_backup_software-500x351.jpg" alt="yadis backup software" title="yadis backup software" width="500" height="351" class="alignnone size-medium wp-image-16903" /></p>
<p>File versioning and monitoring are two options that are available in advanced tasks only. File versioning can be configured to keep x versions of a backed up file before it gets deleted while file monitoring will monitor create, delete and change events and initiate backups whenever an event occurs. The default mode is set to realtime backups which can be changed in the program&#8217;s options. Another interesting feature of Yadis! Backup is the ability to memorize backup jobs if the destination folder is not available at that point in time. The backup will then be performed once the destination folder for that backup becomes available again.</p>
<p>Yadis! Backup is a free <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> for the Windows operating system. It can be <a href="http://www.codessentials.com/products/yadisbackup.html">downloaded</a> from the developer&#8217;s website. No compatibility information are provided. It was tested successfully on a Windows XP SP3 computer system.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a>, <a href="http://www.ghacks.net/tag/yadis-backup/" title="yadis backup" rel="tag">yadis backup</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/" title="Grab Your Free Copy of East-Tec Backup 2009 (July 4, 2009)">Grab Your Free Copy of East-Tec Backup 2009</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/03/yadis-backup-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lifestream Backup: Free 1 Year Accounts For Ghacks Readers</title>
		<link>http://www.ghacks.net/2009/09/30/lifestream-backup-free-1-year-accounts-for-ghacks-readers/</link>
		<comments>http://www.ghacks.net/2009/09/30/lifestream-backup-free-1-year-accounts-for-ghacks-readers/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:13:40 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[lifestream backup]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16821</guid>
		<description><![CDATA[Most computer users know that regular data backups are important to be prepared when data on a computer system becomes corrupted. This can be due to hardware failures, human error or computer virus infections. Backups ensure that data can be recovered at anytime. Online services on the other hand are not usually integrated in backup [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/lifestream_backup.jpg" alt="lifestream backup" title="lifestream backup" width="214" height="53" class="alignleft size-full wp-image-16822" />Most computer users know that regular data backups are important to be prepared when data on a computer system becomes corrupted. This can be due to hardware failures, human error or computer virus infections. Backups ensure that data can be recovered at anytime. Online services on the other hand are not usually integrated in backup strategies as users put their trust into the hands of the companies that offer these services. It does not matter if its online email accounts like <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> and Yahoo Mail, social networking websites like <a href="http://www.ghacks.net/2009/10/17/facebook-login/">Facebook</a> and Twitter or video and photo hosting websites like Flickr or Youtube. Only a few users think about backups of their data that is stored online and those that do usually encounter problems trying to find a service that can backup that data. It usually takes at least some level of research to find an appropriate program or service to backup the data that is stored online if there is a solution at all.</p>
<p><span id="more-16821"></span>The developer&#8217;s of Lifestream Backup have developed their service for that reason. Lifestream Backup is a solution to backup data that is stored at various popular online services. The list of supported services reads like the who is who of the most popular online services:</p>
<ul>
<li>Twitter</li>
<li>Facebook</li>
<li>Basecamp</li>
<li>Gmail</li>
<li>Google Docs</li>
<li>Delicious</li>
<li>FriendFeed</li>
<li>Flickr</li>
<li>Photobucket</li>
<li>Zoho Writer</li>
<li>Wordpress </li>
</ul>
<p>Youtube and Blogger will soon be added to that portfolio raising the supported online services to 13. The principle is simple. All that user&#8217;s need to do is to authorize the Lifestream Backup service. This is either done by authorizing them directly at a service or by providing the username and password to that service. Lifestream Backup will start to backup data on a daily or weekly schedule. Email notifications can be send to inform the user that a backup has been performed (emails can be send after every backup or as digests).</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/online_backup-500x256.jpg" alt="online backup" title="online backup" width="500" height="256" class="alignnone size-medium wp-image-16824" /></p>
<p>Backups that have been created are accessible in the archives section of the backup service.Data backups are usually offered as xml files or as multimedia files. Each file can be viewed online or downloaded to the local computer system. An option to download all backed up data of a service would come in handy, especially for services like Flickr where the file count can easily reach a hundred and more.</p>
<p>To give one real life example: A Twitter backup consists of updates, mentions, received and send direct messages, favorites, friends and followers. The backed up data is offered in seven different XML files. No information about the data that gets backed up is available before the first backup. The developer&#8217;s should definitely add information about the data that gets backed up by their service. This usually includes the most important data but it is always better to see it in writing before configuring a backup for a specific service.</p>
<p>The Wordpress backup option is different from most other options. A plugin needs to be installed on the blog and a key configured so that the backups can be performed.</p>
<p><strong>Invites:</strong></p>
<p>The developer&#8217;s of Lifestream Backup were nice enough to provide Ghacks readers with a free one year account that can store up to 2 Gigabytes of data. These accounts are sold for $29 regularly but free for the next 24 hours if you visit the <a href="https://secure.lifestreambackup.com/ghacks">signup page</a> that has been created for Ghacks.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/facebook/" title="facebook" rel="tag">facebook</a>, <a href="http://www.ghacks.net/tag/flickr/" title="flickr" rel="tag">flickr</a>, <a href="http://www.ghacks.net/tag/gmail/" title="gmail" rel="tag">gmail</a>, <a href="http://www.ghacks.net/tag/lifestream-backup/" title="lifestream backup" rel="tag">lifestream backup</a>, <a href="http://www.ghacks.net/tag/twitter/" title="twitter" rel="tag">twitter</a>, <a href="http://www.ghacks.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/01/06/snapfoo-mobile-photo-blogging/" title="Snapfoo Mobile Photo Blogging (January 6, 2008)">Snapfoo Mobile Photo Blogging</a> (6)</li>
	<li><a href="http://www.ghacks.net/2007/10/22/use-gmail-as-a-drive-in-windows/" title="Use Gmail as a drive in Windows (October 22, 2007)">Use Gmail as a drive in Windows</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/07/09/stumbleupon-url-shortening-service-su-pr-out-of-beta/" title="Stumbleupon URL Shortening Service Su.pr Out Of Beta (July 9, 2009)">Stumbleupon URL Shortening Service Su.pr Out Of Beta</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/11/17/social-network-status-generator/" title="Social Network Status Generator (November 17, 2008)">Social Network Status Generator</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/07/21/public-beta-test-of-new-yahoo-homepage/" title="Public Beta Test Of New Yahoo Homepage (July 21, 2009)">Public Beta Test Of New Yahoo Homepage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/30/lifestream-backup-free-1-year-accounts-for-ghacks-readers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Comodo Backup</title>
		<link>http://www.ghacks.net/2009/09/18/comodo-backup/</link>
		<comments>http://www.ghacks.net/2009/09/18/comodo-backup/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 10:23:36 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[comodo backup]]></category>
		<category><![CDATA[windows backup]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16455</guid>
		<description><![CDATA[We have mentioned Comodo Backup before in our backup software overview for the Windows operating system. The backup software has taken a step forward since then with version 2 available for public download. The interface, functionality and compatibility of Comodo Backup has changed in this version. It is now for instance compatible with 32-bit and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/comodo_backup.jpg" alt="comodo backup" title="comodo backup" width="170" height="62" class="alignleft size-full wp-image-16456" />We have mentioned Comodo Backup before in our <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> overview for the Windows operating system. The <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> has taken a step forward since then with version 2 available for public download. The interface, functionality and compatibility of Comodo Backup has changed in this version. It is now for instance compatible with 32-bit and 64-bit editions of the <a href="http://windows7news.com/">Windows 7</a> operating system.</p>
<p>The interface looks well designed and it is obvious that the program has been designed with usability in mind. Users can select one of the quick backup options in the left sidebar (backup entire Registry, backup system partition or backup user settings) or select a backup source from the main pane instead. These include options to backup mail accounts, the system state, disk, partitions and the MBR, full or custom Registry keys or files and directories.</p>
<p><span id="more-16455"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/09/comodo_backup2-500x366.jpg" alt="comodo backup 2" title="comodo backup 2" width="500" height="366" class="alignnone size-medium wp-image-16457" /></p>
<p>A selection screen will be displayed depending on the choice that the user made. The user can for example select specific Registry keys or desktop email clients when selecting the custom Registry or Mail accounts backup option from the interface.</p>
<p>It is possible to select multiple options of a specific backup source but not multiple backup sources. That&#8217;s a bit unfortunate as it potentially means that several backup jobs need to be configured to create all desired backups.</p>
<p>Backups are divided into six steps that can be easily followed. </p>
<ul>
<li>Backup Source: Selection of backup type</li>
<li>Backup Settings: Include and exclude filters, password protection, compressions and file sizes can be configured in here.</li>
<li>Backup Destination: Options to store the backup locally, on network drives, ftp servers or Comodo online storage.</li>
<li>Other Settings: Configure email notifications, macros and tasks that should be run before or after the backup.</li>
<li>Scheduled Backup: Schedule the backup instead of running it immediately.</li>
<li>Backup Progress: Log that details the progress.</li>
</ul>
<p>The history pane will detail all backups that have been created with Comodo Backup with options to restore or delete these backups right from within that pane. It is furthermore possible to restore backups using the restore pane. This might be handy if backups need to be restored that have not been created on that computer system.</p>
<p>Comodo Backup is an easy to use backup software for the Windows operating system. It offers a clean interface and most functionality that users would expect from a backup software. It would have been nice if users could define a backup that would include several backup sources at once. Another interesting option would be to be able to add backup shortcuts to the sidebar so that the first few steps of the process can be skipped.</p>
<p>Comodo Backup is <a href="http://backup.comodo.com/">available</a> for most 32-bit and 64-bit editions of Microsoft Windows including Windows Vista, Windows Server 2008 and Windows 7.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/comodo-backup/" title="comodo backup" rel="tag">comodo backup</a>, <a href="http://www.ghacks.net/tag/windows-backup/" title="windows backup" rel="tag">windows backup</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2009/06/22/google-docs-backup-software/" title="Google Docs Backup Software (June 22, 2009)">Google Docs Backup Software</a> (37)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/18/comodo-backup/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Remastersys: Outstanding solution for backup and custom Live CDs</title>
		<link>http://www.ghacks.net/2009/09/14/remastersys-outstanding-solution-for-backup-and-custom-live-cds/</link>
		<comments>http://www.ghacks.net/2009/09/14/remastersys-outstanding-solution-for-backup-and-custom-live-cds/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 00:07:58 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[live cd]]></category>
		<category><![CDATA[Ubuntu backup system]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16306</guid>
		<description><![CDATA[Recently a Ghacks reader mentioned (in my &#8220;Create your own mobile Ubuntu repository with APTonCD&#8221; article) the tool remastersys. This particular tool is a must-have for serious Ubuntu/Debian administrators, because it allows the user to create a Live CD of the installed Ubuntu or Debian system. This has two handy uses: As a backup for [...]]]></description>
			<content:encoded><![CDATA[<p>Recently a Ghacks reader mentioned (in my &#8220;<a title="APTonCD" href="http://www.ghacks.net/2009/09/12/create-your-own-mobile-ubuntu-repository-with-aptoncd/" target="_blank">Create your own mobile Ubuntu repository with APTonCD</a>&#8221; article) the tool remastersys. This particular tool is a must-have for serious Ubuntu/Debian administrators, because it allows the user to create a Live CD of the installed Ubuntu or Debian system. This has two handy uses: As a backup for your system or as a Live CD of your system. As a backup it will allow you to re-install a fully customized system in the same, simple manner in which you installed your base system. As a Live CD it allows you to easily install a custom system on multiple machines without having to go through the process of installing a base and then installing all of the applications you need to create your custom system.</p>
<p>The only drawback (if you can call it a drawback) is that customizations such as themes, fonts, colors, etc are not configured by default. As a backup, Remastersys will copy all personal data. As a Live CD, Remastersys will include all installed applications, but not personal data. In this tutorial you will learn how to install Remastersys and create a backup and a Live CD version of your currently installed Ubuntu desktop.</p>
<p><span id="more-16306"></span><strong>Installing Remastersys</strong></p>
<p>The first thing you will need to do is open up your <strong>/etc/apt/sources.list</strong> file in a terminal window. You will need to do this using the <em>sudo</em> <em>nano /etc/aptsources.list </em>command. Once that file is open add the following to the end of the file (depending upon your release):</p>
<p>For Gutsy and Earlier add the following:</p>
<p><code># Remastersys<br />
deb http://www.geekconnection.org/remastersys/repository remastersys/</code></p>
<p><code>For Hardy and Newer add the following:<br />
# Remastersys<br />
deb http://www.geekconnection.org/remastersys/repository ubuntu/</code></p>
<p>Save that file and then issue the commands:</p>
<p><em>sudo apt-get update</em></p>
<p><em>sudo apt-get install remastersys</em></p>
<p>There will be some dependencies to install, so accept those and wait for the installation to complete.</p>
<p><strong>Running remastersys</strong></p>
<p>You will find the menu entry for Remastersys in the Administration sub-menu of the System menu. There you will see two entries: Remastersys Backup and Remastersys Grub Restore. The entry you want is Remastersys Backup. When you first start Remastersys you will get a warning that you must close all other windows as well as unmount any network shares. Naturally this makes for complicating the process of taking screenshots, but when using Linux &#8211; we have ways.</p>
<div id="attachment_16310" class="wp-caption alignleft" style="width: 419px"><a rel="attachment wp-att-16310" href="http://www.ghacks.net/2009/09/14/remastersys-outstanding-solution-for-backup-and-custom-live-cds/remastersys_main/"><img class="size-full wp-image-16310" src="http://www.ghacks.net/wp-content/uploads/2009/09/remastersys_main.png" alt="Figure 1" width="409" height="275" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>The main window of Remastersys is very simple (see Figure 1). You have a window with a number of options to select from. To create a Live CD click the &#8220;Make a Distributable copy to share with friends&#8221; and then click OK. To create a backup of your current running system (which will include all personal data) click &#8220;Backup Complete System&#8221; and click OK.</p>
<p>Let&#8217;s examine the process of creating a backup. You will want to make sure you have all windows, but Remastersys, closed. Select &#8220;Backup Complete System&#8221; and click OK. When you click OK the main window will disappear to be replaced by a terminal window. The rest of the process will occur within this terminal window. Depending on how large your system is, the creation of the .iso will take some time (and many CPU cycles). Do not do anything on your machine during this process.</p>
<p>Once the iso is created you will be informed the iso file can be found within <strong>/home/remastersys/remastersys</strong>. The file name will be custom.iso (unless you have changed the name by using the &#8220;Modify the remastersys config file&#8221; option before you create your backup or Live CD.</p>
<p>Once the process is complete you will need to burn your iso onto DVD. Most likely your backup will not fit on a CD. You can burn your ISO using the handy K3B tool (For a tutorial on burning ISOs with K3B check out my article, &#8220;<a title="Burn CD and DVD ISO images with K3B" href="http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/" target="_blank">Burn CD and DVD ISO images with K3B</a>&#8220;.) After the DVD is burned you will have a perfect backup of your system, including configurations and personal data.</p>
<p><strong>Final thoughts </strong></p>
<p>If you are looking for a nearly foolproof means of backing up your Ubuntu system, you have most likely found it. Remastersys is an outstanding tool that will create backups and Live CDs of your currently running system.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/iso/" title="iso" rel="tag">iso</a>, <a href="http://www.ghacks.net/tag/live-cd/" title="live cd" rel="tag">live cd</a>, <a href="http://www.ghacks.net/tag/ubuntu-backup-system/" title="Ubuntu backup system" rel="tag">Ubuntu backup system</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/17/zip-encrypt-ftp-backups/" title="Zip Encrypt Ftp Backups (February 17, 2007)">Zip Encrypt Ftp Backups</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/09/06/windows-backup-software/" title="Windows Backup Software (September 6, 2008)">Windows Backup Software</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/14/remastersys-outstanding-solution-for-backup-and-custom-live-cds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Browser Backup And Restore</title>
		<link>http://www.ghacks.net/2009/07/13/web-browser-backup-and-restore/</link>
		<comments>http://www.ghacks.net/2009/07/13/web-browser-backup-and-restore/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 10:58:26 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[browser backup]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[internet-explorer]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[restore browser]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=14359</guid>
		<description><![CDATA[The importance of web browsers has risen in the past years especially with the shift from desktop applications to web based applications. Web browsers are not just tools anymore that can display websites on a computer system, they can be used for a wide variety of services which makes it important to be prepared for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />The importance of web browsers has risen in the past years especially with the shift from desktop applications to web based applications. Web browsers are not just tools anymore that can display websites on a computer system, they can be used for a wide variety of services which makes it important to be prepared for disasters that can struck at anytime. </p>
<p>FavBackup is a web browser backup and restore application for the Windows operating system that supports the five popular web browsers <a href="http://www.ghacks.net/tag/firefox/">Firefox</a>, <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a>, <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a>, Safari and Google Chrome. Users can use FavBackup to backup and restore web browser settings and files.</p>
<p><span id="more-14359"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/07/favbackup-500x429.jpg" alt="favbackup" title="favbackup" width="500" height="429" class="alignnone size-medium wp-image-14360" />FavBackup displays a list of options and web browsers in its interface upon startup. It should be noted that the software program is fully portable and does not require an installation. The options include creating a backup of the selected default web browser installation, of all selected web browser installations and to restore these settings again. Only one web browser can be backed up or restored at a time. It is for example possible to backup all different versions of Firefox or Google Chrome using the safe backup option. Backing up Firefox and Internet Explorer on the other hand would require two backup runs.</p>
<p>The difference between the backup and safe backup option is that the former only backs up the default web browser installation while the second will backup all installations of the selected web browser. FavBackup will display a list of settings and files that can be backed up after making the selection. This includes backing up bookmarks, cookies, plugins, extensions, preferences and history among other things.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/07/browser_backup_restore-500x429.jpg" alt="browser backup restore" title="browser backup restore" width="500" height="429" class="alignnone size-medium wp-image-14361" /></p>
<p>One interesting aspect of the program is that it is possible to restore less data. It is for example possible to only restore bookmarks or cookies although a full browser backup has been created during the backup phase.</p>
<p>There are a few things that should be improved by the developer though. The first would be to provide an option to backup multiple web browsers at once. This is more comfortable than having to start the backup software multiple times to backup all installed browsers. An option to backup portable versions of the web browsers would also come in handy. Finally support for Opera 10 has to be added so that it can be backed up as well.</p>
<p><a href="http://www.favbrowser.com/backup/">FavBrowser</a> is a free portable software program for the Windows operating system that can be used to backup and restore web browsers easily.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/browser-backup/" title="browser backup" rel="tag">browser backup</a>, <a href="http://www.ghacks.net/tag/firefox/" title="firefox" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/google-chrome/" title="google chrome" rel="tag">google chrome</a>, <a href="http://www.ghacks.net/tag/internet-explorer/" title="internet-explorer" rel="tag">internet-explorer</a>, <a href="http://www.ghacks.net/tag/opera/" title="opera" rel="tag">opera</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/restore/" title="restore" rel="tag">restore</a>, <a href="http://www.ghacks.net/tag/restore-browser/" title="restore browser" rel="tag">restore browser</a>, <a href="http://www.ghacks.net/tag/safari/" title="safari" rel="tag">safari</a>, <a href="http://www.ghacks.net/tag/web-browser/" title="web browser" rel="tag">web browser</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/04/xenocode-web-browser-sandbox/" title="Xenocode Web Browser Sandbox (April 4, 2009)">Xenocode Web Browser Sandbox</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/03/21/web-browser-popularity/" title="Web Browser Popularity (March 21, 2009)">Web Browser Popularity</a> (51)</li>
	<li><a href="http://www.ghacks.net/2009/06/21/web-browser-memory-usage-benchmark-gets-it-all-wrong/" title="Web Browser Memory Usage Benchmark Gets It All Wrong (June 21, 2009)">Web Browser Memory Usage Benchmark Gets It All Wrong</a> (15)</li>
	<li><a href="http://www.ghacks.net/2009/09/15/web-browser-have-impact-on-battery-life/" title="Web Browser Have Impact On Battery Life (September 15, 2009)">Web Browser Have Impact On Battery Life</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/12/14/web-browser-benchmark-comparison/" title="Web Browser Benchmark Comparison (December 14, 2008)">Web Browser Benchmark Comparison</a> (19)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/07/13/web-browser-backup-and-restore/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Grab Your Free Copy of East-Tec Backup 2009</title>
		<link>http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/</link>
		<comments>http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:50:02 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup data]]></category>
		<category><![CDATA[backup program]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[east-tec backup]]></category>
		<category><![CDATA[softpedia]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=14129</guid>
		<description><![CDATA[A banner on the homepage of the popular download portal Softpedia announces the giveaway of East-Tec Backup 2009 until July 31. The backup software, which retails for $40, can be downloaded and activated free of charge in July. Users who would like to download and use the backup software can follow the link by clicking [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/07/east-tec_backup.jpg" alt="east-tec backup" title="east-tec backup" width="226" height="90" class="alignleft size-full wp-image-14130" />A banner on the homepage of the popular download portal Softpedia announces the giveaway of East-Tec Backup 2009 until July 31. The <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a>, which retails for $40, can be downloaded and activated free of charge in July. Users who would like to download and use the backup software can follow the link by clicking on the banner on the Softpedia homepage (or directly <a href="http://www.east-tec.com/offers/softpedia/2009/backup/register.htm">here</a>).</p>
<p>A registration is required which requires entering a name and valid email address. A verification email is send to the mail account. That link leads to a website containing the download link of East-Tec Backup 2009 and the registration code to register the software program.</p>
<p><span id="more-14129"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/07/backup_software-500x353.jpg" alt="backup software" title="backup software" width="500" height="353" class="alignnone size-medium wp-image-14131" /></p>
<p>The backup software program offers four modules in the main interface: Backup, Restore, Tasks and Sync.</p>
<p>New backup jobs are created in this module. One of the interesting &#8211; and user friendly &#8211; features of East-Tec Backup 2009 are presets that are available. Presets can be used to backup specific, and usually important, files and data. It is for example possible to backup the mail accounts (recognized the email clients Thunderbird, Microsoft Outlook and Opera on the test system), Registry keys or user settings from programs such as Skype, Windows Live Messenger, Winamp, Windows Media Player, various web browser (Internet Explorer, Firefox, Opera but not Google Chrome), Putty and dozens more. It is of course also possible to select files or folders from the computer system.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/07/windows_backup_software-500x373.jpg" alt="windows backup software" title="windows backup software" width="500" height="373" class="alignnone size-medium wp-image-14132" /></p>
<p>The data can be backed up to local folders, external hard drives, local area network folders, removable disks, CD, DVD or remote locations using the ftp protocol. The usual set of options are available to use compression and encryption to ensure data safety and integrity. Several backup types can be selected ranging from incremental backups over differential backups to stack backups. Backups can be scheduled and warnings configured. </p>
<p>It is furthermore possible to run programs before and after the task starts and to verify the backup after it has been completed. Another great option is to place backup jobs into groups which can be executed sequentially then.</p>
<p>Backups that have been created can be restored completely. It is also possible to only restore specific files or folders which is obviously great if you only need access to some files or folders of the entire backup.</p>
<p>The Sync option makes it possible to synchronize files and folders between two computers or devices like a local computer and server, desktop computer and laptop or a local computer and a network location.</p>
<p>The interface of the backup software is user friendly, tasks are easy to create. Users who are currently looking for a backup software should take a closer look and download East-Tec Backup 2009 for a test run. It might be exactly what they are looking for.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-data/" title="backup data" rel="tag">backup data</a>, <a href="http://www.ghacks.net/tag/backup-program/" title="backup program" rel="tag">backup program</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/east-tec-backup/" title="east-tec backup" rel="tag">east-tec backup</a>, <a href="http://www.ghacks.net/tag/softpedia/" title="softpedia" rel="tag">softpedia</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Google Docs Backup Software</title>
		<link>http://www.ghacks.net/2009/06/22/google-docs-backup-software/</link>
		<comments>http://www.ghacks.net/2009/06/22/google-docs-backup-software/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 12:04:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[google docs backup]]></category>
		<category><![CDATA[windows backup]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13770</guid>
		<description><![CDATA[It is essential to have a solid backup strategy in place with cloud storage space becoming more popular. While many users run backup software on their local computer system to backup important data only a few take care that uploaded data is also regularly backed up.
The reason for this is that many users believe that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/google_docs.jpg" alt="google docs" title="google docs" width="156" height="66" class="alignleft size-full wp-image-13232" />It is essential to have a solid backup strategy in place with cloud storage space becoming more popular. While many users run <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> on their local computer system to backup important data only a few take care that uploaded data is also regularly backed up.</p>
<p>The reason for this is that many users believe that the data is safe on Internet servers. A lot can happen that can put the data on those servers at risk. This ranges from hacking attempts, hardware failures that cause data loss or bankruptcy. It is therefor essential to make sure that data that is stored online is backed up regularly.</p>
<p><span id="more-13770"></span>We have already mentioned how to <a href="http://www.ghacks.net/2008/11/04/gmail-backup/">backup Gmail</a> before should be essential for every Gmail user. While it is unlikely that Gmail will be discontinued there have been times where the service was not accessible. Having a backup of the data would make it possible to access the emails anyway.</p>
<p>Google Docs Backup is another Windows backup software that can be used to backup one of the popular Google services. Users can use it to backup all documents on their local computer system that they have uploaded to Google Docs. Usage of the backup software has been simplified. All that needs to be done is to enter the username and password of the Google Docs account and to select a directory on the local computer where the data should be downloaded to.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/google_docs2.jpg" alt="google docs" title="google docs" width="398" height="307" class="alignnone size-full wp-image-13771" /></p>
<p>A few optional settings are available. It is for example possible to select the output format for each document type and to route the traffic through a proxy server. A click on the Exec button will initiate the data backup which can take some time depending on the size of the data stored at Google Docs and the connection speed.</p>
<p><a href="http://code.google.com/p/gdocbackup/">Gdoc Backup</a> (via <a href="http://www.tothepc.com/">To The PC</a>) is a free software program for the Windows operating system.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/documents/" title="documents" rel="tag">documents</a>, <a href="http://www.ghacks.net/tag/google/" title="Google" rel="tag">Google</a>, <a href="http://www.ghacks.net/tag/google-docs/" title="google docs" rel="tag">google docs</a>, <a href="http://www.ghacks.net/tag/google-docs-backup/" title="google docs backup" rel="tag">google docs backup</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows-backup/" title="windows backup" rel="tag">windows backup</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/09/18/comodo-backup/" title="Comodo Backup (September 18, 2009)">Comodo Backup</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/22/google-docs-backup-software/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>FBackup Plugin Based Windows Backup Software</title>
		<link>http://www.ghacks.net/2009/06/17/fbackup-plugin-based-windows-backup-software/</link>
		<comments>http://www.ghacks.net/2009/06/17/fbackup-plugin-based-windows-backup-software/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 13:29:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[data backup]]></category>
		<category><![CDATA[fbackup]]></category>
		<category><![CDATA[free backup]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13639</guid>
		<description><![CDATA[FBackup is a Windows backup software that adds another interesting aspect to the backup process by offering plugins for backing up specific programs and data in Windows. At its core FBackup is just another backup software that comes with all of the features and functionality that one would expect from a backup software. Users can [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/fbackup.jpg" alt="fbackup" title="fbackup" width="274" height="72" class="alignleft size-full wp-image-13641" />FBackup is a <a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/">Windows backup software</a> that adds another interesting aspect to the backup process by offering plugins for backing up specific programs and data in Windows. At its core FBackup is just another <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> that comes with all of the features and functionality that one would expect from a backup software. Users can create new backup jobs easily by selecting a backup directory that can be located on a local hard drive or network drive. Folders and files can then be added to that backup by using the built in file browser.</p>
<p>The very same menu offers the ability to add filters that specify specific file extensions that should be included or excluded in the backup. Filters can easily be configured in the advanced options of the backup software program.</p>
<p><span id="more-13639"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/06/windows_backup_software-500x376.jpg" alt="windows backup software" title="windows backup software" width="500" height="376" class="alignnone size-medium wp-image-13640" /></p>
<p>The options are also home to various other backup related settings including the configuration of compression and encryption settings, running programs before or after backup jobs, scheduling backups and selecting a backup type (full or mirror backups).</p>
<p>Probably the most interesting features are plugins that can be added to FBackup. A plugin is basically an xml file that has been created to backup specific data or programs. Several plugins are already supplied with the default installation which can be used to backup the My Documents folder or Microsoft Outlook data. Dozens of additional plugins can be downloaded from the <a href="http://www.backup4all.com/backup-plugins.php">plugin</a> repository for data of <a href="http://www.ghacks.net/tag/firefox/">Mozilla Firefox</a>, Nero Burning Rom, Songbird, Thunderbird, Skype, Roboform, Mirc, ICQ, uTorrent, <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a> and multiple other popular computer programs.</p>
<p>Each plugin can be added to the backup software easily and becomes then automatically available during the creation of new data backup jobs. </p>
<p><a href="http://www.fbackup.com/">Free Backup</a> can be downloaded directly from the developer&#8217;s website. It is compatible with 32-bit and 64-bit editions of <a href="http://windows7news.com/">Windows 7</a>, Windows XP, Windows Vista, windows Server 2003 and 2008. FBackup is free for both commercial and private use.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/data-backup/" title="data backup" rel="tag">data backup</a>, <a href="http://www.ghacks.net/tag/fbackup/" title="fbackup" rel="tag">fbackup</a>, <a href="http://www.ghacks.net/tag/free-backup/" title="free backup" rel="tag">free backup</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/17/fbackup-plugin-based-windows-backup-software/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Transfer And Backup Files With File Transfer Software Fling</title>
		<link>http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/</link>
		<comments>http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:47:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[file transfer]]></category>
		<category><![CDATA[file transfer software]]></category>
		<category><![CDATA[fling]]></category>
		<category><![CDATA[transfer files]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/</guid>
		<description><![CDATA[We have spotted Flint in Lee&#8217;s awesome list of 40 awesome free Windows apps you can download in 2 seconds where he listed 40 free and lightweight software programs. It is definitely a good read and who knows, you might find a few programs that you have not heard about. Make sure to check the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/file_transfer.jpg" alt="file transfer" title="file transfer" width="149" height="199" class="alignleft size-full wp-image-13371" />We have spotted Flint in <a href="http://www.downloadsquad.com/2009/06/07/40-awesome-free-windows-apps-you-can-download-in-2-seconds/">Lee&#8217;s</a> awesome list of 40 awesome free Windows apps you can download in 2 seconds where he listed 40 free and lightweight software programs. It is definitely a good read and who knows, you might find a few programs that you have not heard about. Make sure to check the comments as well as they contain additional programs mentioned by users.</p>
<p>Fling is a file transfer software that can be used to transfer and backup files over a computer network and ftp. It&#8217;s two main uses are to backup files that are stored on a local computer system to computers in the network or to an ftp server located on the Internet.</p>
<p><span id="more-13374"></span>The developers have added some other options that include backing up files between local hard drives, update a remote website over ftp or to automate transfers of files to an USB drive.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/file_transfer_software.jpg" alt="file transfer software" title="file transfer software" width="483" height="366" class="alignnone size-full wp-image-13372" /></p>
<p>The program displays a wizard upon first start which will aid the user in setting up the first backup or transfer job. The user needs to enter some data after making the selection. The type of data depends largely on the selected job. Backing up data to a remote ftp server requires the ftp login credentials and IP while backing up files between two local hard drives requires only the selection of the folders involved.</p>
<p>The last step is included in every setup. It asks the user to select an update and scan option. Possibilities are manual updates, automatic updates when changes are detected (that means almost instantly), interval scans to check for changes occasionally and on demand folder scans.</p>
<p>It is possible to skip the wizard and configure the service manually. This adds a few additional option to the file transfer which could be interesting for experienced users.</p>
<p>It is for example possible to exclude files from being copied (using wildcards, e.g. *.exe), prevent the deletion of remotely hosted files or to delete local files after a successful file transfer.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/backup_files-500x494.jpg" alt="backup files" title="backup files" width="500" height="494" class="alignnone size-medium wp-image-13373" /></p>
<p>Fling&#8217;s main advantage is that it is not complicated to setup. It takes roughly a minute to configure a backup or file transfer job in the software program. <a href="http://www.nchsoftware.com/fling/index.html">Fling</a> is available for the Microsoft Windows operating system, more precisely for all major releases of the last years including Windows 2000, Windows XP, Windows Vista, Windows Server 2003, 2008 and Windows 7.</p>
<p>You might want to check out our article on Windows backup software to read about additional free programs that can be used to backup and transfer data.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/file-transfer/" title="file transfer" rel="tag">file transfer</a>, <a href="http://www.ghacks.net/tag/file-transfer-software/" title="file transfer software" rel="tag">file transfer software</a>, <a href="http://www.ghacks.net/tag/fling/" title="fling" rel="tag">fling</a>, <a href="http://www.ghacks.net/tag/transfer-files/" title="transfer files" rel="tag">transfer files</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/" title="Grab Your Free Copy of East-Tec Backup 2009 (July 4, 2009)">Grab Your Free Copy of East-Tec Backup 2009</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The 10 Best Windows Backup Software Programs</title>
		<link>http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/</link>
		<comments>http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 13:59:01 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[windows backup]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12356</guid>
		<description><![CDATA[Backing up data regularly should be one of the most important tasks of every computer user; Yet only a minority is doing it thoroughly and regularly. The rest is flirting with disaster as there are numerous incidents that can delete data on computer systems. The most common ones are hardware failures, which can mean damaged [...]]]></description>
			<content:encoded><![CDATA[<p>Backing up data regularly should be one of the most important tasks of every computer user; Yet only a minority is doing it thoroughly and regularly. The rest is flirting with disaster as there are numerous incidents that can delete data on computer systems. The most common ones are hardware failures, which can mean damaged hard drives but also (partially) unreadable CDs or DVDs, computer virus attacks but also human error. If you have ever met someone who partitioned the wrong hard drive you know that the latter can be cause for great frustration.</p>
<p><span id="more-12356"></span>Backups are the single most effective method of preventing data loss on computer systems. The following article will list the 10 best Windows backup software programs.</p>
<p><a href="http://www.educ.umu.se/~cobian/cobianbackup.htm">Cobian Backup</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/cobian_backup_new_task.jpg" alt="cobian backup" title="cobian backup" width="500" height="411" class="alignnone size-full wp-image-12357" /></p>
<p>Cobian Backup is a free for personal use backup software that supports both local and remote backups. The software is constantly under development by the developer which means that features are included regularly.  Some of the key features include full, differential and incremental backups, file compression including the popular 7-zip format plus strong encryption for data security.</p>
<p><a href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp">DeltaCopy</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/windows_backup_software-500x378.jpg" alt="windows backup software" title="windows backup software" width="500" height="378" class="alignnone size-full wp-image-12358" /></p>
<p>An Open source backup solution supporting incremental backups, one-click restore options, task scheduling and email notifications. Some advanced options include ssh tunneling and connecting to rsync daemons.</p>
<p>It makes use of a server client system. One or multiple backup servers can be created on computers running Windows by installing the server version on these computer systems. The client will be installed on the any computer system where files should be backed up regularly. </p>
<p>The backup software supports authentication, scheduling and connection by IP or hostname.</p>
<p><a href="http://www.cucku.com/index.aspx">Cucku Backup</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/cucku_backup-500x343.png" alt="cucku backup" title="cucku backup" width="500" height="343" class="alignnone size-medium wp-image-12359" /></p>
<p>Cucku Backup calls itself social backup. It provides local backups but also backups on friend?s computers. It supports complete and continuous backups and can automate the remote backup process to take that of the user?s shoulders. All files that are backed up use encryption algorithms to ensure data safety and integrity so that the backup partners cannot see the filenames nor contents of the files that are send over to their computer systems.<br />
It works best in computer networks but can also work over the Internet if enough time or upload bandwidth is provided.</p>
<p><a href="http://www.ascomp.de/index.php?php=prog&#038;page=desc&#038;prog=backupmaker">Backup Maker</a></p>
<p>Backup Maker provides extensive backup capabilities. It comes with a standard and expert mode to suite both the needs of experienced and inexperienced users. The software supports full and partial backups, local and remote backups, selection of a backup execution interval and execution on certain events like USB detection or start and shutdown.</p>
<p>All in all an excellent software program to backup files on the Windows operating system.</p>
<p><a href="http://www.acebackup.com/">Ace Backup</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/ace_backup-500x343.jpg" alt="ace backup" title="ace backup" width="500" height="343" class="alignnone size-full wp-image-12360" /></p>
<p>Powerful backup software that supports multi-versioning, backups to local and remote locations, file compression and encryption.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=c26efa36-98e0-4ee9-a7c5-98d0592d8c52&#038;displaylang=en"><br />
Microsoft SyncToy</a> </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/synctoy.gif" alt="synctoy" title="synctoy" width="400" height="295" class="alignnone size-full wp-image-12361" /></p>
<p>SyncToy is offered by Microsoft as a free download for the Windows operating system. It can be used to easily synchronize data between computer systems. The program offers five different synchronization options that the user can choose from including a preview option before starting the process.</p>
<p><a href="http://www.mozy.com/">Mozy</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/mozy-500x453.jpg" alt="mozy" title="mozy" width="500" height="453" class="alignnone size-medium wp-image-12362" /></p>
<p>Mozy is an online backup solution that offers backup clients for Windows NT based systems and Mac OS X. Every registered user receives 2 Gigabytes of free space with the option to sign up for a paid account for currently $4.95 that offers unlimited backup space. Several pre-configured backup sets are populated after installation including bookmarks, documents and multimedia files. These can but do not have to be backed up. Expert mode provides access to the full file system to pick files or folders to backup directly.</p>
<p><a href="http://personal-backup.rathlev-home.de/index-e.html">Personal Backup</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/personal_backup-500x364.png" alt="personal backup" title="personal backup" width="500" height="364" class="alignnone size-medium wp-image-12363" /></p>
<p>A backup for the advanced user that provides great file filtering options. It comes with the usual set of features including local and remote backup creation (including SFTP), file compression and encryption, status reports and log file generation.</p>
<p><a href="http://allwaysync.com/screenshot.html">Allways Sync</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/allways_sync.gif" alt="allways sync" title="allways sync" width="468" height="322" class="alignnone size-full wp-image-12364" /></p>
<p>Another software that has been primarily designed for file synchronization that is also supporting file backups to a local drive, over a local network or the Internet.  It works on a per directory basis and can be installed on as many computer systems as the user desires. The software comes as a setup or portable version.</p>
<p><a href="http://backup.comodo.com/">Comodo Backup</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/comodo_backup.jpg" alt="comodo backup" title="comodo backup" width="469" height="411" class="alignnone size-full wp-image-12365" /> </p>
<p>Another free backup solution for Windows users. Comodo Backup can backup files and folders on a local computer system to other drives, network locations, ftp servers and removable media. Backups can be scheduled and notifications can be send to inform about completed backup jobs.  Other features include compressing backups, data recovery options, support of multi-session backups and incremental backups.</p>
<p><a href="http://www.runtime.org/driveimage-xml.htm">DriveImage XML</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/driveimage-xml-500x379.jpg" alt="driveimage xml" title="driveimage xml" width="500" height="379" class="alignnone size-medium wp-image-12367" /></p>
<p>DriveImage XML is more a drive imaging software than a backup program. It can however be used to backup a full hard drive or partition to another drive. It uses the Volume Shadow Service to create exact backups during runtime. It is afterwards possible to restore the backup either from within Windows or with the use of a boot disk.</p>
<p><strong>The verdict:</strong></p>
<p>The choice of the correct backup software depends on several factors including the data size, the frequency of backups or the local computer infrastructure.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows-backup/" title="windows backup" rel="tag">windows backup</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/06/22/google-docs-backup-software/" title="Google Docs Backup Software (June 22, 2009)">Google Docs Backup Software</a> (37)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/feed/</wfw:commentRss>
		<slash:comments>76</slash:comments>
		</item>
		<item>
		<title>Windows Backup Software: Backup Maker</title>
		<link>http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/</link>
		<comments>http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 16:53:03 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup maker]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/</guid>
		<description><![CDATA[Backup Maker is an extensive Windows backup software that compares quite well to commercial backup software. It runs on all NT based operating systems including Windows XP, Windows Vista and even the beta and release candidates of Windows 7. Backup Maker at its core can be used to backup selected files and folders locally or [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/windows_backup_software.jpg" alt="windows backup software" title="windows backup software" width="96" height="85" class="alignleft size-full wp-image-12331" />Backup Maker is an extensive <a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/">Windows backup software</a> that compares quite well to commercial <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a>. It runs on all NT based operating systems including Windows XP, Windows Vista and even the beta and release candidates of <a href="http://windows7news.com/">Windows 7</a>. Backup Maker at its core can be used to backup selected files and folders locally or remotely. What sets it apart are the extensive options that become available in expert mode. Inexperienced users or those in a hurry can schedule data backups in five easy steps whereas experts can change backup parameters in six additional ones.</p>
<p><span id="more-12335"></span>The fast backup mode that is displayed by default consists of steps to select the files and folders on the computer system that should be included in the backup, the backup execution interval (execute every x minutes, execute at, execute on (Windows start, USB detection, Windows logoff), week days or months days, the selection of full or partial backups or combined execution (create full backup after x partial ones), the selection of the target directory (local drives, CD / DVD or ftp) and a descriptive name. Backups can also be executed manually by the user in the main interface as opposed to being executed automatically. </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/backup_software-500x366.jpg" alt="backup software" title="backup software" width="500" height="366" class="alignnone size-medium wp-image-12333" /></p>
<p>The six configuration steps that are added in expert mode allow the user to add more detail to the backup process.The steps allow the user to include or exclude specific files or folders, add a maximum single file size, how and if to catch up on missed backups, define the maximum number of full and partial backup instances, to backup only files with the archive bit set, adding password protection, things that should be executed before or after the backup and to split the backup into different parts.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/backup_maker1-500x365.jpg" alt="backup maker" title="backup maker" width="500" height="365" class="alignnone size-medium wp-image-12334" /></p>
<p><a href="http://www.ascomp.de/index.php?php=prog&#038;page=desc&#038;prog=backupmaker">Backup Maker</a> is a full <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup software</a> that should satisfy most users who are seeking for a reliable backup software for their operating system. Interested readers can take a look at the 10 best <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">windows backup software programs</a>.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-maker/" title="backup maker" rel="tag">backup maker</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/" title="Grab Your Free Copy of East-Tec Backup 2009 (July 4, 2009)">Grab Your Free Copy of East-Tec Backup 2009</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Backup Email Clients and Web Browsers</title>
		<link>http://www.ghacks.net/2009/03/30/backup-email-clients-and-web-browsers/</link>
		<comments>http://www.ghacks.net/2009/03/30/backup-email-clients-and-web-browsers/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 11:29:51 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[browser backup]]></category>
		<category><![CDATA[email backup]]></category>
		<category><![CDATA[mail browser backup]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/03/30/backup-email-clients-and-web-browsers/</guid>
		<description><![CDATA[Many webmasters and tech savvy Internet users do not only have one but multiple web browsers installed. They use the web browsers either for testing purposes, curiosity or because some sites open better (or at all) in specific web browsers. With multiple computer software programs comes the need for some users to backup the programs [...]]]></description>
			<content:encoded><![CDATA[<p>Many webmasters and tech savvy Internet users do not only have one but multiple web browsers installed. They use the web browsers either for testing purposes, curiosity or because some sites open better (or at all) in specific web browsers. With multiple computer software programs comes the need for some users to backup the programs and data occasionally which has been a big mess until now because there was not one tool to backup all of the popular web browsers at once.</p>
<p>Mail Browser Backup tries to change that by introducing a computer software program for the Windows operating system that can &#8211; in its current version &#8211; backup <a href="http://www.ghacks.net/tag/firefox/">Mozilla Firefox</a>, Google Chrome and the Chrome clone SRWare Iron. It can also create backups for the email client Mozilla Thunderbird and the ftp software Filezilla. The list is incomplete and the software developer has already announced that the next version of the <a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/">backup software</a> will include <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a> backups as well as backups for the <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a> and Safari web browsers, the email clients Windows Mail and Incredimail plus eMule.</p>
<p>The backup itself could not be more straightforward. The portable application displays all supported computer software programs in a list. Grayed out items are currently not supported. Each entry can be selected by clicking in the checkbox next to it. Options are to either backup or restore the selected programs.</p>
<p><span id="more-11545"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/mail_browser_backup.jpg" alt="mail browser backup" title="mail browser backup" width="463" height="447" class="alignnone size-full wp-image-11544" /></p>
<p>The program will open a file browser that can be used to select a directory for the backup or to select a previously created backup for the restoration process. <a href="http://alancla.110mb.com/blog/mailbrowserbackup/">Mail Browser Backup</a> requires the Microsoft .net Framework 2.0 or above and will run on Windows XP or Windows Vista. The source code of the application is provided by the software developer on his homepage.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/browser-backup/" title="browser backup" rel="tag">browser backup</a>, <a href="http://www.ghacks.net/tag/email-backup/" title="email backup" rel="tag">email backup</a>, <a href="http://www.ghacks.net/tag/mail-browser-backup/" title="mail browser backup" rel="tag">mail browser backup</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/web-browser/" title="web browser" rel="tag">web browser</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/13/web-browser-backup-and-restore/" title="Web Browser Backup And Restore (July 13, 2009)">Web Browser Backup And Restore</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/09/web-browser-backup-software-favbackup-updated/" title="Web Browser Backup Software FavBackup Updated (October 9, 2009)">Web Browser Backup Software FavBackup Updated</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/12/08/email-backup-software-kls-mail-backup/" title="Email Backup Software KLS Mail Backup (December 8, 2008)">Email Backup Software KLS Mail Backup</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/03/06/windows-xp-default-internet-browser-per-user-profile/" title="Windows XP: Default Internet Browser Per User Profile (March 6, 2009)">Windows XP: Default Internet Browser Per User Profile</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/30/backup-email-clients-and-web-browsers/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Have WordPress back-ups emailed</title>
		<link>http://www.ghacks.net/2008/11/05/have-wordpress-back-ups-emailed/</link>
		<comments>http://www.ghacks.net/2008/11/05/have-wordpress-back-ups-emailed/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 18:01:59 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[back up]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8064</guid>
		<description><![CDATA[We are always told how important it is to back-up our blog, in case it is hacked, which does actually happen. My personal blog, Webby&#8217;s World, I am ashamed to admit, has been hacked a few times.
Backing up seems somewhat of a chore and whilst a cron job can be set up, a WordPress plug-in [...]]]></description>
			<content:encoded><![CDATA[<p>We are always told how important it is to back-up our blog, in case it is hacked, which does actually happen. My personal blog, Webby&#8217;s World, I am ashamed to admit, has been hacked a few times.</p>
<p>Backing up seems somewhat of a chore and <a href="http://www.tamba2.org.uk/wordpress/cron/">whilst a cron job can be set up</a>, a WordPress plug-in makes backing up a blog&#8217;s mySQL database absolutely hassle free.</p>
<p><a href="http://www.ilfilosofo.com/blog/wp-db-backup/">WordPress Database Backup</a> allows database backups to be emailed, saved to a hard disk or saved to a server.</p>
<p><span id="more-8064"></span>Having the back-up emailed may be favourable, especially if you use a service like <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> with large amounts of storage and reliable hosting. </p>
<p>A useful trick is to set up a Gmail filter to separate backups so quick access is available. Different tables can be backed up, so spam and statistics can be excluded.</p>
<p>Databases can be gzipped, and the SQL file inside the archive can then just be imported should the weblog to be hacked.</p>
<p>Naturally, WordPress Database Backup does not back up files, so images, templates and plugins must be backed up separately.</p>

	Tags: <a href="http://www.ghacks.net/tag/back-up/" title="back up" rel="tag">back up</a>, <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/database/" title="database" rel="tag">database</a>, <a href="http://www.ghacks.net/tag/mysql/" title="mysql" rel="tag">mysql</a>, <a href="http://www.ghacks.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/09/set-up-mysql-database-replication/" title="Set up MySQL database replication (April 9, 2009)">Set up MySQL database replication</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/09/30/lifestream-backup-free-1-year-accounts-for-ghacks-readers/" title="Lifestream Backup: Free 1 Year Accounts For Ghacks Readers (September 30, 2009)">Lifestream Backup: Free 1 Year Accounts For Ghacks Readers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/12/20/install-phpmyadmin-for-easy-mysql-administration/" title="Install phpmyadmin for easy MySQL administration (December 20, 2008)">Install phpmyadmin for easy MySQL administration</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/07/30/database-monitoring-software-db2rss/" title="Database Monitoring Software Db2rss (July 30, 2009)">Database Monitoring Software Db2rss</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/01/12/backup-mysql-databases-in-linux-regularly/" title="Backup MySQL Databases In Linux Regularly (January 12, 2009)">Backup MySQL Databases In Linux Regularly</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/05/have-wordpress-back-ups-emailed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hard Drive Backup Software</title>
		<link>http://www.ghacks.net/2008/11/02/hard-drive-backup-software/</link>
		<comments>http://www.ghacks.net/2008/11/02/hard-drive-backup-software/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 11:10:36 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[hard drive backup]]></category>
		<category><![CDATA[Hard Drive Backup Software]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[partition backup]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[windows backup software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8012</guid>
		<description><![CDATA[Creating regular backups of important data is an important task that should not be skipped unless you are prepared to setup they computer system anew and still loose important data like emails, office documents or photos.
We covered Windows backup software before at Ghacks but never before a portable software that could backup partitions and hard [...]]]></description>
			<content:encoded><![CDATA[<p>Creating regular backups of important data is an important task that should not be skipped unless you are prepared to setup they computer system anew and still loose important data like emails, office documents or photos.</p>
<p>We covered <a href="http://www.ghacks.net/2008/09/06/windows-backup-software/">Windows backup software</a> before at Ghacks but never before a portable software that could backup partitions and hard drives.</p>
<p>ODIN, which stands for Open Disk Imager, is a portable Open-Source <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> that can backup partitions and hard drives with the exception of the system partition. It is currently available in a very early beta which should not be used in a productive environment.</p>
<p><span id="more-8012"></span>The hard drive backup software is able to backup or restore data. The current version is easy to use. Backing up data basically involves picking a drive letter or physical drive, selecting a location to store the hard drive image, optionally changing a few parameters and hitting the start button.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/11/hard_drive_backup_software-387x500.jpg" alt="hard drive backup software" title="hard drive backup software" width="387" height="500" class="alignnone size-medium wp-image-8013" /></p>
<p>The options provide access to a few interesting settings like turning on gzip or bzzip2 compression, splitting data into chunks or saving only used or all blocks of the partition or physical drive.</p>
<p>Restoring an image  is as straightforward and easy. The user has to pick the partition or physical drive and select the image that should be restored. </p>
<p>The hard drive backup software has a few limitations which probably will be removed in later builds of the software. The inability to create a backup of the system partition is probably the biggest.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/hard-drive-backup/" title="hard drive backup" rel="tag">hard drive backup</a>, <a href="http://www.ghacks.net/tag/hard-drive-backup-software/" title="Hard Drive Backup Software" rel="tag">Hard Drive Backup Software</a>, <a href="http://www.ghacks.net/tag/open-source/" title="Open Source" rel="tag">Open Source</a>, <a href="http://www.ghacks.net/tag/partition-backup/" title="partition backup" rel="tag">partition backup</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/02/hard-drive-backup-software/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>GBridge Share, Sync, VPN And Backup Extension For Google Talk</title>
		<link>http://www.ghacks.net/2008/10/05/gbridge-share-sync-vpn-and-backup-extension-for-google-talk/</link>
		<comments>http://www.ghacks.net/2008/10/05/gbridge-share-sync-vpn-and-backup-extension-for-google-talk/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 11:43:24 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[auto sync]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[file backup]]></category>
		<category><![CDATA[gbridge]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[remote desktop access]]></category>
		<category><![CDATA[remote-desktop]]></category>
		<category><![CDATA[secure share]]></category>
		<category><![CDATA[windows software backup]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7413</guid>
		<description><![CDATA[GBridge is a standalone extension making use of the Google Talk service that supports automatic backups, file synchronization and sharing, remote control, desktop sharing and direct and secure file access across computers. The only requirement being a Google account that is needed because of the use of Google Talk.
Functionality depends largely on the way GBridge [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gbridge.com/">GBridge</a> is a standalone extension making use of the Google Talk service that supports automatic backups, file synchronization and sharing, remote control, desktop sharing and direct and secure file access across computers. The only requirement being a Google account that is needed because of the use of Google Talk.</p>
<p>Functionality depends largely on the way GBridge is used. If the software program is installed on one computer the user can make use of the automatic backup option and chat. The backup can be used to store files locally if GBridge has been installed on one computer. The backup simply takes the files of a selected folder and copies them into the other location. Windows users who are only looking for a way to backup files could look at the more advanced <a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/">Windows Backup Software</a> Deltacopy instead.</p>
<p>It becomes more interesting if the user installs GBridge on multiple computers. The file backup can now be used to backup files in a remote location on the other computer. Another interesting option that becomes available to access files on every connected computer that the computer owner runs. It can be used to play multimedia files and access any other file type on another connected computer.</p>
<p><span id="more-7413"></span>Lastly it is possible to run DesktopShare to access the other&#8217;s computer desktop to access it remotely.</p>
<p>GBridge comes with additional functions if it is installed on computers of different users who have added each other as friends. Secure Share and Auto Sync can be used to share files and folders with friends. The remote desktop option becomes available as well which is interesting for remote computer assistance and remote presentation.</p>
<p>GBridge uses a virtual private network infrastructure that automatically expands across all computers owned by the same user and which can also be expanded to include computers owned by friends.</p>
<p>GBridge requires a Gmail account and a Windows NT operating system.</p>

	Tags: <a href="http://www.ghacks.net/tag/auto-sync/" title="auto sync" rel="tag">auto sync</a>, <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/file-backup/" title="file backup" rel="tag">file backup</a>, <a href="http://www.ghacks.net/tag/gbridge/" title="gbridge" rel="tag">gbridge</a>, <a href="http://www.ghacks.net/tag/gtalk/" title="gtalk" rel="tag">gtalk</a>, <a href="http://www.ghacks.net/tag/remote-desktop-access/" title="remote desktop access" rel="tag">remote desktop access</a>, <a href="http://www.ghacks.net/tag/remote-desktop/" title="remote-desktop" rel="tag">remote-desktop</a>, <a href="http://www.ghacks.net/tag/secure-share/" title="secure share" rel="tag">secure share</a>, <a href="http://www.ghacks.net/tag/windows-software-backup/" title="windows software backup" rel="tag">windows software backup</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/17/zip-encrypt-ftp-backups/" title="Zip Encrypt Ftp Backups (February 17, 2007)">Zip Encrypt Ftp Backups</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/09/06/windows-backup-software/" title="Windows Backup Software (September 6, 2008)">Windows Backup Software</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/10/05/gbridge-share-sync-vpn-and-backup-extension-for-google-talk/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows Backup Software DeltaCopy</title>
		<link>http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/</link>
		<comments>http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 07:05:22 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup server]]></category>
		<category><![CDATA[backup software]]></category>
		<category><![CDATA[deltacopy]]></category>
		<category><![CDATA[windows backup]]></category>
		<category><![CDATA[windows backup software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7348</guid>
		<description><![CDATA[DeltaCopy is not the usual Windows backup software that you encounter when searching for backup solutions for the Windows plattform. It uses a server client based concept to backup files from a number of clients on a central backup server. This means that the main application for DeltaCopy are home networks and small business network [...]]]></description>
			<content:encoded><![CDATA[<p>DeltaCopy is not the usual <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup software</a> that you encounter when searching for backup solutions for the Windows plattform. It uses a server client based concept to backup files from a number of clients on a central backup server. This means that the main application for DeltaCopy are home networks and small business network with the need for a central backup system.</p>
<p><a href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp">DeltaCopy</a> is an Open Source portable Windows <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a> that supports incremental backups, email notifications, one-click restore options and a task scheduler in an easy to use interface. It will run on any Windows NT based operating systems. The developers have not listed Windows Vista and Windows Server 2008 on their web pages.</p>
<p>Interestingly enough it can connect to rsync daemons running on Linux systems since it basically is a Windows wrapper around rsync. SSH Tunneling is available if the destination server is a Linux / Unix system running rsync.</p>
<p><span id="more-7348"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/10/windows_backup_software-500x378.jpg" alt="windows backup software" title="windows backup software" width="500" height="378" class="alignnone size-medium wp-image-7349" /></p>
<p>How does the <b><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup</a> software</b> work?</p>
<p>The administrator installs the server version of Deltacopy on one machine. The backup software installs itself as a Windows Service. Once the server is up and running so called virtual directories can be created. This is a similar procedure to setting up an ftp server. The admin picks a folder on a hard drive on the server with the option to create multiple virtual directories on the server.</p>
<p>The client is then executed on a client machine. Profiles manage the backup jobs on the client machine. This is the place where the user selects the files and folders that should be backed up regularly. The backup server will be entered during that configuration as well. The server can be identified by entering the IP or hostname of the server running the backup software.</p>
<p>Authentication is possible. This has to be enabled during server setup and the client computer has to use the same login credentials that have been created on the server to be able to perform the backup.</p>
<p>Backups can be initiated either manually or by using the Windows Task Scheduler. Files can be restored from the client interface if the need should arise.</p>
<p>DeltaCopy is a sophisticated but not overly complicated <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup software</a> that works best for small home and company networks.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/backup-server/" title="backup server" rel="tag">backup server</a>, <a href="http://www.ghacks.net/tag/backup-software/" title="backup software" rel="tag">backup software</a>, <a href="http://www.ghacks.net/tag/deltacopy/" title="deltacopy" rel="tag">deltacopy</a>, <a href="http://www.ghacks.net/tag/windows-backup/" title="windows backup" rel="tag">windows backup</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/grab-your-free-copy-of-east-tec-backup-2009/" title="Grab Your Free Copy of East-Tec Backup 2009 (July 4, 2009)">Grab Your Free Copy of East-Tec Backup 2009</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Windows Backup Software</title>
		<link>http://www.ghacks.net/2008/09/06/windows-backup-software/</link>
		<comments>http://www.ghacks.net/2008/09/06/windows-backup-software/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 19:31:47 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[data backup software]]></category>
		<category><![CDATA[personal backup]]></category>
		<category><![CDATA[server backup software]]></category>
		<category><![CDATA[windows backup]]></category>
		<category><![CDATA[windows backup software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6827</guid>
		<description><![CDATA[Personal Backup is definitely not the most comfortable Windows backup software but it does have a few aces up its sleeve that might make it interesting enough for users who are looking for a specialized backup software. The software comes in an English and German version and is compatible to all Microsoft Windows operating systems [...]]]></description>
			<content:encoded><![CDATA[<p>Personal Backup is definitely not the most comfortable <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup software</a> but it does have a few aces up its sleeve that might make it interesting enough for users who are looking for a specialized <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">backup software</a>. The software comes in an English and German version and is compatible to all Microsoft Windows operating systems from Windows 98 to Windows Vista.</p>
<p>The interface seems to have received its last lift in the last century which would not be that of a problem if there would not be so many buttons and menus available. It takes a while to get used to the interface but once that has been achieved users will reap the benefits of the backup software.</p>
<p><a href="http://personal-backup.rathlev-home.de/index-e.html">Personal Backup</a> supports the creation of backups on local and network hard drives as well as ftp servers using ftp and sftp connections. The first ace that is actually a pretty handy feature is the creation of several so called auto backups which can be configured independently of each other. That comes in handy with the excellent filtering options of Personal Backup.</p>
<p><span id="more-6827"></span>As soon as a folder or partition gets added to the backup list it is scanned and a list of all file types, their count and total sizes are displayed next to the usual information like directories and many options.</p>
<p>The listing of file types makes it pretty comfortable to pick certain file types that should be backed up on all hard drives and schedule those backups next to other backups. One scenario would be to backup all .doc, .xls and other document formats on all drives regularly which is just a few clicks away in Personal Backup.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/09/windows_backup_software-499x373.jpg" alt="windows backup software" title="windows backup software" width="499" height="373" class="alignnone size-medium wp-image-6828" /></p>
<p>The filtering options of this <a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/">Windows backup</a> software are immense. Filters can be set to match filenames, file attributes, file sizes, time and regular expressions. The preview button can be used to check on the files that would be backed up by Personal Backup which can be used for verification.</p>
<p>The options that define the output are as extensive as the filtering options. Some of the backup options include:</p>
<ul>
<li>To backup single files or one zip.</li>
<li>Preserve, ignore the directory structure, create separate directories for drives.</li>
<li>To compress the files and add file type exceptions.</li>
<li>To encrypt the backup using AES.</li>
<li>To add notes, send emails and run external programs before and after backup.</li>
<li>To synchronize files</li>
<li>To verify files</li>
<li>To chose a backup mode from Copy, Full, Differential and Incremental.</li>
<li>To adjust the time gap for timestamp comparison</li>
<li>Creation of a backup log</li>
<li>Integrated restore function for whole trees or selected files</li>
<li>Automatic decryption on restore</li>
<li>Synchronise backup directories</li>
</ul>
<p>The Windows backup software contains so many options that it will really take a while before everything has been discovered. Most of the options are not needed to perform a simple backup but Personal Backup is more a software for users who want to make exact backups on their system, who want to point at the exact data and backup that data.</p>
<p>Backups can be scheduled multiple ways which range from daily to weekly backups. It is also possible to combine backup methods during the scheduled backups, for instance to create multiple backups for data safety purposes.</p>

	Tags: <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/data-backup-software/" title="data backup software" rel="tag">data backup software</a>, <a href="http://www.ghacks.net/tag/personal-backup/" title="personal backup" rel="tag">personal backup</a>, <a href="http://www.ghacks.net/tag/server-backup-software/" title="server backup software" rel="tag">server backup software</a>, <a href="http://www.ghacks.net/tag/windows-backup/" title="windows backup" rel="tag">windows backup</a>, <a href="http://www.ghacks.net/tag/windows-backup-software/" title="windows backup software" rel="tag">windows backup software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/04/26/the-10-best-windows-backup-software-programs/" title="The 10 Best Windows Backup Software Programs (April 26, 2009)">The 10 Best Windows Backup Software Programs</a> (76)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/transfer-and-backup-files-with-file-transfer-software-fling/" title="Transfer And Backup Files With File Transfer Software Fling (June 8, 2009)">Transfer And Backup Files With File Transfer Software Fling</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/09/06/windows-backup-software/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
