<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Keeping a Hot Backup of Your Mac Hard Drive</title>
	<link>http://www.digital501.com/2006021110/mac-backup-osx/</link>
	<description>Enjoying Digitally Enhanced Living</description>
	<pubDate>Sun, 06 Jul 2008 01:36:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>

	<item>
		<title>By: B-Bone</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-2</link>
		<author>B-Bone</author>
		<pubDate>Tue, 14 Feb 2006 02:31:36 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-2</guid>
					<description>Does anyone know a way a automate this process, so that it could happen regularly in the background on a schedule?  I'm the kind of person that would start something like this, do it for a few days, then forget about it, until my hard drive crashed.</description>
		<content:encoded><![CDATA[<p>Does anyone know a way a automate this process, so that it could happen regularly in the background on a schedule?  I&#8217;m the kind of person that would start something like this, do it for a few days, then forget about it, until my hard drive crashed.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: mwshead</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-3</link>
		<author>mwshead</author>
		<pubDate>Tue, 14 Feb 2006 13:44:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-3</guid>
					<description>I'm working on a solution for this because I have the same problem.  Once I get it figured out, I'll post another article detailing how to do it.  Basically, it will be a script that is run by cron every night.  I'm hoping I can make it check for the presence of the external hard drive and only do the backup if it is online.</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on a solution for this because I have the same problem.  Once I get it figured out, I&#8217;ll post another article detailing how to do it.  Basically, it will be a script that is run by cron every night.  I&#8217;m hoping I can make it check for the presence of the external hard drive and only do the backup if it is online.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Craig</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-5</link>
		<author>Craig</author>
		<pubDate>Fri, 17 Feb 2006 12:57:10 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-5</guid>
					<description>Use Carbon Copy Cloner to automate this process.  Or SuperDuper or any of the other drive cloning software out there. CCC is free, thats why I recommend it.  I run a backup every Wednesday and Sunday on schedule with CCC.</description>
		<content:encoded><![CDATA[<p>Use Carbon Copy Cloner to automate this process.  Or SuperDuper or any of the other drive cloning software out there. CCC is free, thats why I recommend it.  I run a backup every Wednesday and Sunday on schedule with CCC.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: [Geeks Are Sexy] Tech. News</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-6</link>
		<author>[Geeks Are Sexy] Tech. News</author>
		<pubDate>Fri, 17 Feb 2006 15:43:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-6</guid>
					<description>Yeah, Carbon Copy is awesome.</description>
		<content:encoded><![CDATA[<p>Yeah, Carbon Copy is awesome.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Pyr0</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-7</link>
		<author>Pyr0</author>
		<pubDate>Fri, 17 Feb 2006 16:18:25 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-7</guid>
					<description>dd on a crontab.</description>
		<content:encoded><![CDATA[<p>dd on a crontab.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-8</link>
		<author>Andrew</author>
		<pubDate>Fri, 17 Feb 2006 16:21:46 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-8</guid>
					<description>Couldn't you use OS X Automator somehow?</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t you use OS X Automator somehow?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-9</link>
		<author>Matt</author>
		<pubDate>Fri, 17 Feb 2006 16:26:38 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-9</guid>
					<description>My method is a terminal job that runs at login, which is a simple saved rsync command.  I just back up my user folder, but in principle this could be extended to the whole drive (I assume).  Rsync has the advantage that it only moves those files which have changed - usually the script is done in a couple minutes.

The command takes the form of

sudo rsync -rlptv --delete /Volumes/(internal hard drive)/Users/ /Volumes/(external hard drive)/Users/

I just save that command as a .term file and add it to my login items.</description>
		<content:encoded><![CDATA[<p>My method is a terminal job that runs at login, which is a simple saved rsync command.  I just back up my user folder, but in principle this could be extended to the whole drive (I assume).  Rsync has the advantage that it only moves those files which have changed - usually the script is done in a couple minutes.</p>
<p>The command takes the form of</p>
<p>sudo rsync -rlptv &#8211;delete /Volumes/(internal hard drive)/Users/ /Volumes/(external hard drive)/Users/</p>
<p>I just save that command as a .term file and add it to my login items.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mario Aeby</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-10</link>
		<author>Mario Aeby</author>
		<pubDate>Fri, 17 Feb 2006 16:33:52 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-10</guid>
					<description>I recommend using rsync to keep the firewire-drive update. The benefits of rsync, a Unix command line app: It copies only files changed since last restore. So it speeds up things a lot after the first complete backup.

I'm using it once a week to backup my data. It's nice to have a 1:1 copy of your OS at hand. Restoring after a HD crash takes maybe 30mins - 1hr, not more. Every settings you made will be present again. Nice, ain't it?</description>
		<content:encoded><![CDATA[<p>I recommend using rsync to keep the firewire-drive update. The benefits of rsync, a Unix command line app: It copies only files changed since last restore. So it speeds up things a lot after the first complete backup.</p>
<p>I&#8217;m using it once a week to backup my data. It&#8217;s nice to have a 1:1 copy of your OS at hand. Restoring after a HD crash takes maybe 30mins - 1hr, not more. Every settings you made will be present again. Nice, ain&#8217;t it?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Yalskey</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-11</link>
		<author>Yalskey</author>
		<pubDate>Fri, 17 Feb 2006 16:35:40 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-11</guid>
					<description>SuperDuper is by far the best solution... trust me, it's SOOO worth the $20.  It works like a dream, it is dead simple, and the tech support is amazing.  And NO, I'm not being paid to say this :-)  www.shirtpocket.com</description>
		<content:encoded><![CDATA[<p>SuperDuper is by far the best solution&#8230; trust me, it&#8217;s SOOO worth the $20.  It works like a dream, it is dead simple, and the tech support is amazing.  And NO, I&#8217;m not being paid to say this <img src='http://www.digital501.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <a href="http://www.shirtpocket.com" rel="nofollow">www.shirtpocket.com</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: MrChucho</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-12</link>
		<author>MrChucho</author>
		<pubDate>Fri, 17 Feb 2006 16:43:26 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-12</guid>
					<description>Another alternative is to use rsync (or rsyncX) to create a clone without copying every file, every time.

Also, instead of using cron, an daily backup command can simply be added to /etc/daily.local. This will include "custom" commands in the pre-existing scheduled process. Results will be written to /var/log/daily.out.</description>
		<content:encoded><![CDATA[<p>Another alternative is to use rsync (or rsyncX) to create a clone without copying every file, every time.</p>
<p>Also, instead of using cron, an daily backup command can simply be added to /etc/daily.local. This will include &#8220;custom&#8221; commands in the pre-existing scheduled process. Results will be written to /var/log/daily.out.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: dblezard</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-13</link>
		<author>dblezard</author>
		<pubDate>Fri, 17 Feb 2006 16:50:25 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-13</guid>
					<description>Or automate it using rsync.  Once you have made the backup once, use rsync to copy over _just the changes_.  Do you really want to be duplicating your entire Music/Photo/Video library each time?</description>
		<content:encoded><![CDATA[<p>Or automate it using rsync.  Once you have made the backup once, use rsync to copy over _just the changes_.  Do you really want to be duplicating your entire Music/Photo/Video library each time?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rainer</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14</link>
		<author>Rainer</author>
		<pubDate>Fri, 17 Feb 2006 16:59:10 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14</guid>
					<description>Try this :

&lt;code&gt;
#!/bin/sh&lt;/code&gt;

echo "#########################"
echo "### Server backup"
echo "### `date`"
echo " "

if [ -d "/Volumes/Mac OS X 1" ] ; then
echo "!!! Error : Something went wrong the last time"
echo "### "
echo "### `date`"
echo "### Backup failed"
echo "#########################"
echo " "
exit 1
fi

if [ -d "/Volumes/Sauvegarde" ] ; then
echo "### destination volume /Volumes/Sauvegarde found"
else
echo "!!! Error : Destination volume absent"
echo "### "
echo "### `date`"
echo "### Backup failed"
echo "#########################"
echo " "
exit 1
fi

/usr/sbin/asr -erase -noprompt -source /Volumes/Mac\ OS\ X -target /Volumes/Sauvegarde

/usr/sbin/diskutil rename /Volumes/Mac\ OS\ X\ 1 Sauvegarde

echo "### `date`"
echo "### End of backup"
echo "#########################"
echo " "
You have to rename the disk at the end, because asr does a plain clone, including the volume name.

The check for Mac OS X 1 is because one day something went wrong in the middle of the backup, and the machine rebooted. As there were two Volumes named Mac OS X , one of them was labelled Mac OS X 1 internally. AND IT WAS THE BOOT VOLUME !!! I could get it fixed before my script would have renamed the internal disk to "Sauvegarde" and backed up the bacup to the internal disk at the next run.
This problem is mainly because my backup-disk is firewire, and I have two of them (even and odd days) and therefore I can't use /dev/diskxx sthle addressing, because it's never the same address when I swap disks.

Hope this helps.

Rainer</description>
		<content:encoded><![CDATA[<p>Try this :</p>
<p><code><br />
#!/bin/sh</code></p>
<p>echo &#8220;#########################&#8221;<br />
echo &#8220;### Server backup&#8221;<br />
echo &#8220;### `date`&#8221;<br />
echo &#8221; &#8221;</p>
<p>if [ -d &#8220;/Volumes/Mac OS X 1&#8243; ] ; then<br />
echo &#8220;!!! Error : Something went wrong the last time&#8221;<br />
echo &#8220;### &#8221;<br />
echo &#8220;### `date`&#8221;<br />
echo &#8220;### Backup failed&#8221;<br />
echo &#8220;#########################&#8221;<br />
echo &#8221; &#8221;<br />
exit 1<br />
fi</p>
<p>if [ -d &#8220;/Volumes/Sauvegarde&#8221; ] ; then<br />
echo &#8220;### destination volume /Volumes/Sauvegarde found&#8221;<br />
else<br />
echo &#8220;!!! Error : Destination volume absent&#8221;<br />
echo &#8220;### &#8221;<br />
echo &#8220;### `date`&#8221;<br />
echo &#8220;### Backup failed&#8221;<br />
echo &#8220;#########################&#8221;<br />
echo &#8221; &#8221;<br />
exit 1<br />
fi</p>
<p>/usr/sbin/asr -erase -noprompt -source /Volumes/Mac\ OS\ X -target /Volumes/Sauvegarde</p>
<p>/usr/sbin/diskutil rename /Volumes/Mac\ OS\ X\ 1 Sauvegarde</p>
<p>echo &#8220;### `date`&#8221;<br />
echo &#8220;### End of backup&#8221;<br />
echo &#8220;#########################&#8221;<br />
echo &#8221; &#8221;<br />
You have to rename the disk at the end, because asr does a plain clone, including the volume name.</p>
<p>The check for Mac OS X 1 is because one day something went wrong in the middle of the backup, and the machine rebooted. As there were two Volumes named Mac OS X , one of them was labelled Mac OS X 1 internally. AND IT WAS THE BOOT VOLUME !!! I could get it fixed before my script would have renamed the internal disk to &#8220;Sauvegarde&#8221; and backed up the bacup to the internal disk at the next run.<br />
This problem is mainly because my backup-disk is firewire, and I have two of them (even and odd days) and therefore I can&#8217;t use /dev/diskxx sthle addressing, because it&#8217;s never the same address when I swap disks.</p>
<p>Hope this helps.</p>
<p>Rainer</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rainer</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-15</link>
		<author>Rainer</author>
		<pubDate>Fri, 17 Feb 2006 17:01:10 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-15</guid>
					<description>Ah yes, and the major advantage of using asr this way is you can do it using crontab, and you don't need a user being logged in (as with SuperDuper AFAIK ?)

Rainer</description>
		<content:encoded><![CDATA[<p>Ah yes, and the major advantage of using asr this way is you can do it using crontab, and you don&#8217;t need a user being logged in (as with SuperDuper AFAIK ?)</p>
<p>Rainer</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ken</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-16</link>
		<author>Ken</author>
		<pubDate>Fri, 17 Feb 2006 17:09:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-16</guid>
					<description>I've designed a script for using Rsync to automate backups on our mac xserve systems. I've tried all the methods as it is my job to do so and nothing beats this for a live system. The only way you will get a true mirror using these applications (diskutil, superduper, ccc, etc) is to put your drive into target mode.

You will get a working functional copy of the drive, but not a 100% mirror image.

To the top poster (B-Bone):
Use Automator and iCal to create a script that will do these things for you. Once you create the script in automator simply save it as an application then use the alarm in iCal to schedult the process to be run nightly.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve designed a script for using Rsync to automate backups on our mac xserve systems. I&#8217;ve tried all the methods as it is my job to do so and nothing beats this for a live system. The only way you will get a true mirror using these applications (diskutil, superduper, ccc, etc) is to put your drive into target mode.</p>
<p>You will get a working functional copy of the drive, but not a 100% mirror image.</p>
<p>To the top poster (B-Bone):<br />
Use Automator and iCal to create a script that will do these things for you. Once you create the script in automator simply save it as an application then use the alarm in iCal to schedult the process to be run nightly.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Michiel</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-17</link>
		<author>Michiel</author>
		<pubDate>Fri, 17 Feb 2006 17:17:09 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-17</guid>
					<description>"without needing to restart or "boot to dos" like you usually have to in Windows."

yes, windows is bad, blah blah blah. Interesting article but this sort of statement is just lame. I work with four OSes both professionally and for fun and all have their strengths and weaknesses. In the case of Apple the main weakness probably are the religious nuts.</description>
		<content:encoded><![CDATA[<p>&#8220;without needing to restart or &#8220;boot to dos&#8221; like you usually have to in Windows.&#8221;</p>
<p>yes, windows is bad, blah blah blah. Interesting article but this sort of statement is just lame. I work with four OSes both professionally and for fun and all have their strengths and weaknesses. In the case of Apple the main weakness probably are the religious nuts.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shmoobee</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-18</link>
		<author>Shmoobee</author>
		<pubDate>Fri, 17 Feb 2006 17:27:15 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-18</guid>
					<description>Once you do this, Backup is now called "Macintosh HD", so you have two "Macintosh HD"s, right?  So do you rename the external copy back to "Backup"?  What system do you use to keep it straight in your head?</description>
		<content:encoded><![CDATA[<p>Once you do this, Backup is now called &#8220;Macintosh HD&#8221;, so you have two &#8220;Macintosh HD&#8221;s, right?  So do you rename the external copy back to &#8220;Backup&#8221;?  What system do you use to keep it straight in your head?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19</link>
		<author>Jason</author>
		<pubDate>Fri, 17 Feb 2006 17:27:40 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19</guid>
					<description>Is there a way to get Carbon Copy CLoner to wake the computer from sleep mode to do schedued backups? I have it set for 3AM but the backups never happen cause the comps asleep.</description>
		<content:encoded><![CDATA[<p>Is there a way to get Carbon Copy CLoner to wake the computer from sleep mode to do schedued backups? I have it set for 3AM but the backups never happen cause the comps asleep.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Predius</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-20</link>
		<author>Predius</author>
		<pubDate>Fri, 17 Feb 2006 17:29:58 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-20</guid>
					<description># dd if=/dev/yourdrive of=/mnt/backup/backupoftheweek

Or add that to cron/crontab.</description>
		<content:encoded><![CDATA[<p># dd if=/dev/yourdrive of=/mnt/backup/backupoftheweek</p>
<p>Or add that to cron/crontab.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Christopher</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-21</link>
		<author>Christopher</author>
		<pubDate>Fri, 17 Feb 2006 17:33:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-21</guid>
					<description>This is a great read, thanks! I've been meaning to play with SuperDuper for months now, haven't gotten around to it yet. You just pushed me to take care of it.  ;-)

Chris
http://amateureconblog.blogspot.com</description>
		<content:encoded><![CDATA[<p>This is a great read, thanks! I&#8217;ve been meaning to play with SuperDuper for months now, haven&#8217;t gotten around to it yet. You just pushed me to take care of it.  <img src='http://www.digital501.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Chris<br />
<a href="http://amateureconblog.blogspot.com" rel="nofollow">http://amateureconblog.blogspot.com</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shivering Timbers</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-22</link>
		<author>Shivering Timbers</author>
		<pubDate>Fri, 17 Feb 2006 17:43:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-22</guid>
					<description>Even better, if you don't mind taking some time to set it up, is to use the external drive to set up a mirrored RAID set.  That way, the external drive is always an exact mirror of the internal drive, and the internal drive can fail completely with no disruption or loss of data (in fact, you might not even notice).

I did this a few months ago on my Mac at home, and it has worked flawlessly.  I can unplug the external drive, and when I plug it back in my computer automatically starts re-copying the internal drive.  Completely transparent.

I wrote about this on my blog: &lt;a href="http://www.frozennorth.org/C2011481421/E20051125090533/index.html" rel="nofollow"&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Even better, if you don&#8217;t mind taking some time to set it up, is to use the external drive to set up a mirrored RAID set.  That way, the external drive is always an exact mirror of the internal drive, and the internal drive can fail completely with no disruption or loss of data (in fact, you might not even notice).</p>
<p>I did this a few months ago on my Mac at home, and it has worked flawlessly.  I can unplug the external drive, and when I plug it back in my computer automatically starts re-copying the internal drive.  Completely transparent.</p>
<p>I wrote about this on my blog: <a href="http://www.frozennorth.org/C2011481421/E20051125090533/index.html" rel="nofollow">here</a>.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Bruce</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-23</link>
		<author>Bruce</author>
		<pubDate>Fri, 17 Feb 2006 17:44:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-23</guid>
					<description>Ack - make this site readable. Larger font please.</description>
		<content:encoded><![CDATA[<p>Ack - make this site readable. Larger font please.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: reimer</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-24</link>
		<author>reimer</author>
		<pubDate>Fri, 17 Feb 2006 17:50:53 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-24</guid>
					<description>Use ditto and cron to automate this on the cheap
ditto -c $SOURCEDISK_ROOT - &#124; ( cd $DSTDISK_ROOT; ditto -x - )

I used ditto for the same purpose as the author above ..

Cheers
   Reimer</description>
		<content:encoded><![CDATA[<p>Use ditto and cron to automate this on the cheap<br />
ditto -c $SOURCEDISK_ROOT - | ( cd $DSTDISK_ROOT; ditto -x - )</p>
<p>I used ditto for the same purpose as the author above ..</p>
<p>Cheers<br />
   Reimer</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Edgester</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-25</link>
		<author>Edgester</author>
		<pubDate>Fri, 17 Feb 2006 17:58:19 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-25</guid>
					<description>open a terminal and type "man asr". This will show the documentation for the "asr" command. Disk Utility is a GUI for the asr command. You can script the asr command.</description>
		<content:encoded><![CDATA[<p>open a terminal and type &#8220;man asr&#8221;. This will show the documentation for the &#8220;asr&#8221; command. Disk Utility is a GUI for the asr command. You can script the asr command.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-26</link>
		<author>Paul</author>
		<pubDate>Fri, 17 Feb 2006 18:12:42 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-26</guid>
					<description>Can I Back up my laptop to DVD if i have a burner?</description>
		<content:encoded><![CDATA[<p>Can I Back up my laptop to DVD if i have a burner?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: spoetnik&#8217;s stuff &#187; Keeping a Hot Backup of Your Mac Hard Drive</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-27</link>
		<author>spoetnik&#8217;s stuff &#187; Keeping a Hot Backup of Your Mac Hard Drive</author>
		<pubDate>Fri, 17 Feb 2006 18:20:05 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-27</guid>
					<description>[...] Maak een &#8220;live&#8221; backup van je OSX, geen reboot, geen herstart naar dos.Keeping a Hot Backup of Your Mac Hard Drive [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Maak een &#8220;live&#8221; backup van je OSX, geen reboot, geen herstart naar dos.Keeping a Hot Backup of Your Mac Hard Drive [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: lar3ry</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-28</link>
		<author>lar3ry</author>
		<pubDate>Fri, 17 Feb 2006 18:20:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-28</guid>
					<description>I have found rsync to be invaluable for doing backups of my data.  It will save off incremental copies (files that change every day, for instance) if you want and is completely automatable.  Not only that, but it can also work over a network, allowing you to keep a copy of your backup onto a seaparate system (which doesn't HAVE to be a Mac).  This makes the concept of a "backup server" possible--a system dedicated to storing the backups of many systems at once.

On the down side, it does take some knowledge of rsync and shell scripting (or perl) to actually do the backups.  But what I get in return is the ability to recovery any accidentally deleted document, or a previous version of a document (which I may have overwritten a number of times since an important change was made).

--lar3ry</description>
		<content:encoded><![CDATA[<p>I have found rsync to be invaluable for doing backups of my data.  It will save off incremental copies (files that change every day, for instance) if you want and is completely automatable.  Not only that, but it can also work over a network, allowing you to keep a copy of your backup onto a seaparate system (which doesn&#8217;t HAVE to be a Mac).  This makes the concept of a &#8220;backup server&#8221; possible&#8211;a system dedicated to storing the backups of many systems at once.</p>
<p>On the down side, it does take some knowledge of rsync and shell scripting (or perl) to actually do the backups.  But what I get in return is the ability to recovery any accidentally deleted document, or a previous version of a document (which I may have overwritten a number of times since an important change was made).</p>
<p>&#8211;lar3ry</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Brian McNitt</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-29</link>
		<author>Brian McNitt</author>
		<pubDate>Fri, 17 Feb 2006 18:26:58 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-29</guid>
					<description>I second using SuperDuper.  SuperDuper allows smart updates (only updates the files that have changed) and you can set up complex backup schedules easily (ie. – backup nightly but alternate between two different backup partitions every two weeks giving you a larger window to find and recover corrupted files that may have become seated in the daily backup schedule).</description>
		<content:encoded><![CDATA[<p>I second using SuperDuper.  SuperDuper allows smart updates (only updates the files that have changed) and you can set up complex backup schedules easily (ie. – backup nightly but alternate between two different backup partitions every two weeks giving you a larger window to find and recover corrupted files that may have become seated in the daily backup schedule).</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Adam Beutler</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30</link>
		<author>Adam Beutler</author>
		<pubDate>Fri, 17 Feb 2006 18:39:28 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30</guid>
					<description>I use Deja Vu and it creates a perfect clone and it will do incramental backups and you can schedule them for anytime you want.</description>
		<content:encoded><![CDATA[<p>I use Deja Vu and it creates a perfect clone and it will do incramental backups and you can schedule them for anytime you want.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: thebiggs</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-31</link>
		<author>thebiggs</author>
		<pubDate>Fri, 17 Feb 2006 18:42:45 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-31</guid>
					<description>I use Silverkeeper from Lacie. (http://www.lacie.com/silverkeeper)

It's free and lets you set up scheduled backups.</description>
		<content:encoded><![CDATA[<p>I use Silverkeeper from Lacie. (http://www.lacie.com/silverkeeper)</p>
<p>It&#8217;s free and lets you set up scheduled backups.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Evan</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-32</link>
		<author>Evan</author>
		<pubDate>Fri, 17 Feb 2006 18:49:38 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-32</guid>
					<description>Could it be automated with Automator?

http://www.apple.com/macosx/features/automator/

That little robot looks so friendly.</description>
		<content:encoded><![CDATA[<p>Could it be automated with Automator?</p>
<p><a href="http://www.apple.com/macosx/features/automator/" rel="nofollow">http://www.apple.com/macosx/features/automator/</a></p>
<p>That little robot looks so friendly.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-33</link>
		<author>Joe</author>
		<pubDate>Fri, 17 Feb 2006 18:51:51 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-33</guid>
					<description>There is a tool called Carbon Copy Cloner that will do the same sort of thing; I prefer it in a lot of cases. It uses the ditto command which is a fail safe copy   (if CCC encounteres a file it can't copy it just skips it and keeps going) It also has the option to set up an automatic backup schedule. One warning I should give: OS updates can sometimes overwrite the schedule requiring that it be set up again.

http://www.bombich.com/software/ccc.html</description>
		<content:encoded><![CDATA[<p>There is a tool called Carbon Copy Cloner that will do the same sort of thing; I prefer it in a lot of cases. It uses the ditto command which is a fail safe copy   (if CCC encounteres a file it can&#8217;t copy it just skips it and keeps going) It also has the option to set up an automatic backup schedule. One warning I should give: OS updates can sometimes overwrite the schedule requiring that it be set up again.</p>
<p><a href="http://www.bombich.com/software/ccc.html" rel="nofollow">http://www.bombich.com/software/ccc.html</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Pete</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-34</link>
		<author>Pete</author>
		<pubDate>Fri, 17 Feb 2006 18:55:06 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-34</guid>
					<description>Why not just make a raid array with the external drive? When the computer is unplugged, the drive works just fine. When you plug it back in, it catches up automatically.</description>
		<content:encoded><![CDATA[<p>Why not just make a raid array with the external drive? When the computer is unplugged, the drive works just fine. When you plug it back in, it catches up automatically.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Will Silver</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-35</link>
		<author>Will Silver</author>
		<pubDate>Fri, 17 Feb 2006 19:16:16 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-35</guid>
					<description>Couldn't you make the folder on the computer to automaticly update by using a folder action? Something like, when the file is written here, copy it to the live backup folder there? 

I do not currently have a Mac, but the power of scripting and automatic folders seems like it is a no brainer to me. 

LW_Will</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t you make the folder on the computer to automaticly update by using a folder action? Something like, when the file is written here, copy it to the live backup folder there? </p>
<p>I do not currently have a Mac, but the power of scripting and automatic folders seems like it is a no brainer to me. </p>
<p>LW_Will</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Dave Cramer</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-36</link>
		<author>Dave Cramer</author>
		<pubDate>Fri, 17 Feb 2006 19:26:23 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-36</guid>
					<description>rsync works just as well....
you can automate it with  cron</description>
		<content:encoded><![CDATA[<p>rsync works just as well&#8230;.<br />
you can automate it with  cron</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Travis</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-37</link>
		<author>Travis</author>
		<pubDate>Fri, 17 Feb 2006 19:37:25 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-37</guid>
					<description>I've used Carbon Copy Cloner and SuperDooper to back up and they both work very well.  I personally like SD better because of its interface and ease of use.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used Carbon Copy Cloner and SuperDooper to back up and they both work very well.  I personally like SD better because of its interface and ease of use.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeff Mandell</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-38</link>
		<author>Jeff Mandell</author>
		<pubDate>Fri, 17 Feb 2006 19:43:56 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-38</guid>
					<description>SuperDuper has one other benefit, besides doing this drop dead easily.
It lets you creat yet another version of your Mac OS on yet another partition, but this one is tiny- about 12 gigs.
You name it "sandbox" and it shares all your apps and files with you main hard drive. All that's on it is the OS itself. You can boot to it whenever Apple issues a new OS update or you want to try out some new application that you're concerned might screw up your system and then install the program onto the Sandbox drive. Then see how things run for a couple of days. If everything's oK, reboot into your main drive and install there too. If it's a nightmare, no problem, go back to your main drive, which is pristine. GREAT IDEA!!
I love my superduper. Best $20 I've ever spent.</description>
		<content:encoded><![CDATA[<p>SuperDuper has one other benefit, besides doing this drop dead easily.<br />
It lets you creat yet another version of your Mac OS on yet another partition, but this one is tiny- about 12 gigs.<br />
You name it &#8220;sandbox&#8221; and it shares all your apps and files with you main hard drive. All that&#8217;s on it is the OS itself. You can boot to it whenever Apple issues a new OS update or you want to try out some new application that you&#8217;re concerned might screw up your system and then install the program onto the Sandbox drive. Then see how things run for a couple of days. If everything&#8217;s oK, reboot into your main drive and install there too. If it&#8217;s a nightmare, no problem, go back to your main drive, which is pristine. GREAT IDEA!!<br />
I love my superduper. Best $20 I&#8217;ve ever spent.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: bobdow</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-39</link>
		<author>bobdow</author>
		<pubDate>Fri, 17 Feb 2006 20:36:51 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-39</guid>
					<description>we have been using ChronoSync for a year and it too has been great.

We actually use it to clone our servers (incrementaly) every night.

we also use rsync to backup over the net... but have problems with resource forks... so beware!</description>
		<content:encoded><![CDATA[<p>we have been using ChronoSync for a year and it too has been great.</p>
<p>We actually use it to clone our servers (incrementaly) every night.</p>
<p>we also use rsync to backup over the net&#8230; but have problems with resource forks&#8230; so beware!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-40</link>
		<author>Matt</author>
		<pubDate>Fri, 17 Feb 2006 20:40:08 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-40</guid>
					<description>I used to use Lacie's Silverkeeper,  but after a disk loss when I had to restore from a backup disk I discovered that (as some ex-users have reported) it does not reliably copy updated files to the backup disk, even when it reports success.  This is an EXTREMELY dangerous failure, in that the user beleives it has been successful; the simplicity, speed, and clarity of the command-line rsync ultimately proved best for me.  It's built into the OS and is extremely confirgurable.</description>
		<content:encoded><![CDATA[<p>I used to use Lacie&#8217;s Silverkeeper,  but after a disk loss when I had to restore from a backup disk I discovered that (as some ex-users have reported) it does not reliably copy updated files to the backup disk, even when it reports success.  This is an EXTREMELY dangerous failure, in that the user beleives it has been successful; the simplicity, speed, and clarity of the command-line rsync ultimately proved best for me.  It&#8217;s built into the OS and is extremely confirgurable.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: orb</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-41</link>
		<author>orb</author>
		<pubDate>Fri, 17 Feb 2006 21:41:51 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-41</guid>
					<description>Does anyone use Maxtor one touch with Retrospect? I use it and it works fine, but is Superduper better?</description>
		<content:encoded><![CDATA[<p>Does anyone use Maxtor one touch with Retrospect? I use it and it works fine, but is Superduper better?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nate</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-42</link>
		<author>Nate</author>
		<pubDate>Fri, 17 Feb 2006 23:13:07 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-42</guid>
					<description>Anyone using rsync should look at rsnapshot, which is a wrapper around rsync. By using Unix hard-links it is able to keep multiple backups available (hourly, daily, weekly and monthly) without using very much disk space.</description>
		<content:encoded><![CDATA[<p>Anyone using rsync should look at rsnapshot, which is a wrapper around rsync. By using Unix hard-links it is able to keep multiple backups available (hourly, daily, weekly and monthly) without using very much disk space.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: newtrax</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-44</link>
		<author>newtrax</author>
		<pubDate>Sat, 18 Feb 2006 01:20:47 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-44</guid>
					<description>2 questions...
How do you restore the backup, with/without working OS?
Does this work on OSx86 PC installs OK?
thnx</description>
		<content:encoded><![CDATA[<p>2 questions&#8230;<br />
How do you restore the backup, with/without working OS?<br />
Does this work on OSx86 PC installs OK?<br />
thnx</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sierra Mousetrap Macintosh User Group &#187; Blog Archive &#187; Keeping a &#8220;Live&#8221; backup</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-45</link>
		<author>Sierra Mousetrap Macintosh User Group &#187; Blog Archive &#187; Keeping a &#8220;Live&#8221; backup</author>
		<pubDate>Sat, 18 Feb 2006 02:10:13 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-45</guid>
					<description>[...] Here&#8217;s one backup technique, using a hard drive (my preferred method).: Click here [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Here&#8217;s one backup technique, using a hard drive (my preferred method).: Click here [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Flo</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-46</link>
		<author>Flo</author>
		<pubDate>Sat, 18 Feb 2006 09:17:15 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-46</guid>
					<description>I posted a complete guide on how I backup my iBook HD to an external bootable HD in my blog:
http://blog.no-panic.at/2006/01/09/my-os-x-backup-strategy/</description>
		<content:encoded><![CDATA[<p>I posted a complete guide on how I backup my iBook HD to an external bootable HD in my blog:<br />
<a href="http://blog.no-panic.at/2006/01/09/my-os-x-backup-strategy/" rel="nofollow">http://blog.no-panic.at/2006/01/09/my-os-x-backup-strategy/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-47</link>
		<author>Mark</author>
		<pubDate>Sat, 18 Feb 2006 13:57:01 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-47</guid>
					<description>&lt;blockquote&gt;
Once you do this, Backup is now called “Macintosh HD”, so you have two “Macintosh HD”s, right? So do you rename the external copy back to “Backup”? What system do you use to keep it straight in your head?
&lt;/blockquote&gt;

The external drive shows up as orange and the internal one shows up as silver.  So far that has been the easiest way to tell them apart, but you can also rename the external drive.</description>
		<content:encoded><![CDATA[<blockquote><p>
Once you do this, Backup is now called “Macintosh HD”, so you have two “Macintosh HD”s, right? So do you rename the external copy back to “Backup”? What system do you use to keep it straight in your head?
</p></blockquote>
<p>The external drive shows up as orange and the internal one shows up as silver.  So far that has been the easiest way to tell them apart, but you can also rename the external drive.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-48</link>
		<author>Mark</author>
		<pubDate>Sat, 18 Feb 2006 13:59:05 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-48</guid>
					<description>&lt;blockquote&gt;
Couldn’t you make the folder on the computer to automaticly update by using a folder action? Something like, when the file is written here, copy it to the live backup folder there?

I do not currently have a Mac, but the power of scripting and automatic folders seems like it is a no brainer to me. 
&lt;/blockquote&gt;

That would probably be useful for backing up your documents folder, but my goal was to create a bootable HD that I could use in place of my computer and then copy back later.  If there is a way to use folder actions and keep the drive bootable, Ii'd be interested to hear about it.</description>
		<content:encoded><![CDATA[<blockquote><p>
Couldn’t you make the folder on the computer to automaticly update by using a folder action? Something like, when the file is written here, copy it to the live backup folder there?</p>
<p>I do not currently have a Mac, but the power of scripting and automatic folders seems like it is a no brainer to me.
</p></blockquote>
<p>That would probably be useful for backing up your documents folder, but my goal was to create a bootable HD that I could use in place of my computer and then copy back later.  If there is a way to use folder actions and keep the drive bootable, Ii&#8217;d be interested to hear about it.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-49</link>
		<author>Mark</author>
		<pubDate>Sat, 18 Feb 2006 14:01:42 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-49</guid>
					<description>&lt;blockquote&gt;
Even better, if you don’t mind taking some time to set it up, is to use the external drive to set up a mirrored RAID set. That way, the external drive is always an exact mirror of the internal drive, and the internal drive can fail completely with no disruption or loss of data (in fact, you might not even notice).
&lt;/blockquote&gt;

That is an interesting idea.  I'm going to definately have to try that because it would be much faster.</description>
		<content:encoded><![CDATA[<blockquote><p>
Even better, if you don’t mind taking some time to set it up, is to use the external drive to set up a mirrored RAID set. That way, the external drive is always an exact mirror of the internal drive, and the internal drive can fail completely with no disruption or loss of data (in fact, you might not even notice).
</p></blockquote>
<p>That is an interesting idea.  I&#8217;m going to definately have to try that because it would be much faster.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-50</link>
		<author>Mark</author>
		<pubDate>Sat, 18 Feb 2006 14:11:17 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-50</guid>
					<description>&lt;blockquote&gt;
“without needing to restart or “boot to dos” like you usually have to in Windows.”

yes, windows is bad, blah blah blah. Interesting article but this sort of statement is just lame. I work with four OSes both professionally and for fun and all have their strengths and weaknesses. In the case of Apple the main weakness probably are the religious nuts. 
&lt;/blockquote&gt;

Ok.... I don't see anywhere that I said that OS X is better than Windows.  I use both regularly along with Linux and a few different t ypes of Unix.  You are correct that both have their strengths and weaknesses. I've done a lot of work with imaging computers so I thought it was pretty impressive that I could just image my hard drive while I was still actively using the OS and then I could take the drive and boot it up on pretty much any other Apple. 

Everyone needs a way to backup their system.  I personally think the built in tools in OS X are better than what you can do with any of the built in tools on Windows.  If you feel differently then you could post an intelligent comment explaining your view.  Otherwise your comments make you appear more like a (to borrow your vocabulary) "religious nut" than anything else.</description>
		<content:encoded><![CDATA[<blockquote><p>
“without needing to restart or “boot to dos” like you usually have to in Windows.”</p>
<p>yes, windows is bad, blah blah blah. Interesting article but this sort of statement is just lame. I work with four OSes both professionally and for fun and all have their strengths and weaknesses. In the case of Apple the main weakness probably are the religious nuts.
</p></blockquote>
<p>Ok&#8230;. I don&#8217;t see anywhere that I said that OS X is better than Windows.  I use both regularly along with Linux and a few different t ypes of Unix.  You are correct that both have their strengths and weaknesses. I&#8217;ve done a lot of work with imaging computers so I thought it was pretty impressive that I could just image my hard drive while I was still actively using the OS and then I could take the drive and boot it up on pretty much any other Apple. </p>
<p>Everyone needs a way to backup their system.  I personally think the built in tools in OS X are better than what you can do with any of the built in tools on Windows.  If you feel differently then you could post an intelligent comment explaining your view.  Otherwise your comments make you appear more like a (to borrow your vocabulary) &#8220;religious nut&#8221; than anything else.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-51</link>
		<author>Mark</author>
		<pubDate>Sat, 18 Feb 2006 14:23:10 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-51</guid>
					<description>&lt;blockquote&gt;
I used to use Lacie’s Silverkeeper, but after a disk loss when I had to restore from a backup disk I discovered that (as some ex-users have reported) it does not reliably copy updated files to the backup disk, even when it reports success. This is an EXTREMELY dangerous failure, in that the user beleives it has been successful; the simplicity, speed, and clarity of the command-line rsync ultimately proved best for me. It’s built into the OS and is extremely confirgurable.
&lt;/blockquote&gt;
Yikes.  That is good to know. The best thing about LaCie is the way the way their hard drives look.  I've had several fail on me. It sounds like their software is built the same way.</description>
		<content:encoded><![CDATA[<blockquote><p>
I used to use Lacie’s Silverkeeper, but after a disk loss when I had to restore from a backup disk I discovered that (as some ex-users have reported) it does not reliably copy updated files to the backup disk, even when it reports success. This is an EXTREMELY dangerous failure, in that the user beleives it has been successful; the simplicity, speed, and clarity of the command-line rsync ultimately proved best for me. It’s built into the OS and is extremely confirgurable.
</p></blockquote>
<p>Yikes.  That is good to know. The best thing about LaCie is the way the way their hard drives look.  I&#8217;ve had several fail on me. It sounds like their software is built the same way.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Spiken</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-52</link>
		<author>Spiken</author>
		<pubDate>Sat, 18 Feb 2006 18:17:35 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-52</guid>
					<description>You could always use rsync, combined with ssh ofcourse.
rsync -a --delete --delete-excluded --exclude="Movies/*" -e ssh /Users/shortname/ username@host:/home/username/backup
That command rox :)</description>
		<content:encoded><![CDATA[<p>You could always use rsync, combined with ssh ofcourse.<br />
rsync -a &#8211;delete &#8211;delete-excluded &#8211;exclude=&#8221;Movies/*&#8221; -e ssh /Users/shortname/ <a href="mailto:username@host:/home/username/backup">username@host:/home/username/backup</a><br />
That command rox <img src='http://www.digital501.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: David Brake</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-56</link>
		<author>David Brake</author>
		<pubDate>Sun, 19 Feb 2006 15:12:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-56</guid>
					<description>I use http://www.decimus.net/synk/ - it is free for academic use and cheap for others, it is easy to use and it does incremental backup so it works faster than copying the whole disk. The Silverkeeper program does incremental as well but it doesn't work for impremental backup if your disks are the same size and you have one folder that is larger than the remaining free space.</description>
		<content:encoded><![CDATA[<p>I use <a href="http://www.decimus.net/synk/" rel="nofollow">http://www.decimus.net/synk/</a> - it is free for academic use and cheap for others, it is easy to use and it does incremental backup so it works faster than copying the whole disk. The Silverkeeper program does incremental as well but it doesn&#8217;t work for impremental backup if your disks are the same size and you have one folder that is larger than the remaining free space.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-57</link>
		<author>Mark</author>
		<pubDate>Sun, 19 Feb 2006 15:40:46 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-57</guid>
					<description>&lt;blockquote&gt;
I use http://www.decimus.net/synk/ - it is free for academic use and cheap for others, it is easy to use and it does incremental backup so it works faster than copying the whole disk.
&lt;/blockquote&gt;

Thanks for the link.  I hadn't heard about that program before.  The biggest advantage of using the cloning method described here is the fact that the disk is bootable.  (If my laptop is stolen, I can plug the drive into my Mac Mini and be up and running in a few minutes.)

Do you know if Synk or Silverkeeper creates a bootable disk?</description>
		<content:encoded><![CDATA[<blockquote><p>
I use <a href="http://www.decimus.net/synk/" rel="nofollow">http://www.decimus.net/synk/</a> - it is free for academic use and cheap for others, it is easy to use and it does incremental backup so it works faster than copying the whole disk.
</p></blockquote>
<p>Thanks for the link.  I hadn&#8217;t heard about that program before.  The biggest advantage of using the cloning method described here is the fact that the disk is bootable.  (If my laptop is stolen, I can plug the drive into my Mac Mini and be up and running in a few minutes.)</p>
<p>Do you know if Synk or Silverkeeper creates a bootable disk?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: theory.isthereason &#187; Today&#8217;s Links: Mega Monster Linkage Sunday</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-58</link>
		<author>theory.isthereason &#187; Today&#8217;s Links: Mega Monster Linkage Sunday</author>
		<pubDate>Sun, 19 Feb 2006 17:53:39 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-58</guid>
					<description>[...] Keeping a Hot Backup of Your Mac Hard Drive Been doing this for imaging Macs at ETC. It&#8217;s a quick guide to cloning your Mac&#8217;s startup drive Keywords: howto, mac, productivity, tips [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Keeping a Hot Backup of Your Mac Hard Drive Been doing this for imaging Macs at ETC. It&#8217;s a quick guide to cloning your Mac&#8217;s startup drive Keywords: howto, mac, productivity, tips [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shmoobee</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-62</link>
		<author>Shmoobee</author>
		<pubDate>Mon, 20 Feb 2006 05:37:49 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-62</guid>
					<description>I think its funny when people gripe about the font size here.  What, typing = in Safari is hard?</description>
		<content:encoded><![CDATA[<p>I think its funny when people gripe about the font size here.  What, typing = in Safari is hard?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Keith Johnson</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-63</link>
		<author>Keith Johnson</author>
		<pubDate>Mon, 20 Feb 2006 16:04:28 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-63</guid>
					<description>One thing to note... there are some programs (eg Final Draft) that have authentication features that don't copy over properly. If you have Final Draft 'Authorized' on your computer and it needs service that is going to require your hard drive to be wiped or whatever... make sure that you Deauthorize your computer before you wipe it.  I know for a fact that the FD guys are real pricks about their proprietary copy protection.</description>
		<content:encoded><![CDATA[<p>One thing to note&#8230; there are some programs (eg Final Draft) that have authentication features that don&#8217;t copy over properly. If you have Final Draft &#8216;Authorized&#8217; on your computer and it needs service that is going to require your hard drive to be wiped or whatever&#8230; make sure that you Deauthorize your computer before you wipe it.  I know for a fact that the FD guys are real pricks about their proprietary copy protection.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Brian McNitt</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-73</link>
		<author>Brian McNitt</author>
		<pubDate>Tue, 21 Feb 2006 03:13:46 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-73</guid>
					<description>I think SuperDuper strikes a nice balance between power and simplicity, very inline with Mac thinking.  Dave the developer of SuperDuper is also very responsive which makes using the app that much more enjoyable.

The only thing I would say that is missing in my backup routine is the holy grail of "automated offsite" backup" (ie - backing up to a web server, etc.).  Obviously, you can use services like iDisk for small jobs but creating mirrors of large hard drives is an issue because of space and bandwidth.  Would love to see someone solve this one with an easy, low-cost solution.</description>
		<content:encoded><![CDATA[<p>I think SuperDuper strikes a nice balance between power and simplicity, very inline with Mac thinking.  Dave the developer of SuperDuper is also very responsive which makes using the app that much more enjoyable.</p>
<p>The only thing I would say that is missing in my backup routine is the holy grail of &#8220;automated offsite&#8221; backup&#8221; (ie - backing up to a web server, etc.).  Obviously, you can use services like iDisk for small jobs but creating mirrors of large hard drives is an issue because of space and bandwidth.  Would love to see someone solve this one with an easy, low-cost solution.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: May Be Worthless &#187; Make a Live Backup of Your Hard Drive Usable on Any Mac</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-80</link>
		<author>May Be Worthless &#187; Make a Live Backup of Your Hard Drive Usable on Any Mac</author>
		<pubDate>Tue, 21 Feb 2006 15:39:59 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-80</guid>
					<description>[...] Interesting enough, did you know OS X comes with a backup feature that allows you to not only backup your entire hard drive but actually use it on another Mac as the primary drive?  So, if you have to send out your Mac for repair but have to still work as if you’re on your existing Mac, you can.  As long as you have another Mac around and an external hard drive.  Sweet, huh? [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Interesting enough, did you know OS X comes with a backup feature that allows you to not only backup your entire hard drive but actually use it on another Mac as the primary drive?  So, if you have to send out your Mac for repair but have to still work as if you’re on your existing Mac, you can.  As long as you have another Mac around and an external hard drive.  Sweet, huh? [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: jeff</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-90</link>
		<author>jeff</author>
		<pubDate>Wed, 22 Feb 2006 20:24:59 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-90</guid>
					<description>Has anyone used Backup 3.1 from Apple? Any opinions vs SuperDuper or CCC ?  I'm just looking for an easy and non-Terminal way of doing things for the home user with way to much music and video to lose.

Also, can I back up two different Macs to one big external drive? (Powerbook w/ 80gb HDD and iMac with 250 gb HDD and one 500 gb LaCie)

Thanks.</description>
		<content:encoded><![CDATA[<p>Has anyone used Backup 3.1 from Apple? Any opinions vs SuperDuper or CCC ?  I&#8217;m just looking for an easy and non-Terminal way of doing things for the home user with way to much music and video to lose.</p>
<p>Also, can I back up two different Macs to one big external drive? (Powerbook w/ 80gb HDD and iMac with 250 gb HDD and one 500 gb LaCie)</p>
<p>Thanks.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: chris</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-97</link>
		<author>chris</author>
		<pubDate>Fri, 24 Feb 2006 00:13:18 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-97</guid>
					<description>maybe I'm the only person in the world who feels this way, but for me part of the magic of Mac OS X is that I don't need to back up my whole hard drive.  I'm using PSyncX to automatically (smart-)backup my user folder, and occasionally I'll manually make sure that all applications which are difficult to get are also backed up.  I just don't feel like I need to back up all of Mac OSX systemfiles and other such data.

Then again, I may be thinking this way because I have limited external data storage space, and I don't claim to be an expert at all on this subject.</description>
		<content:encoded><![CDATA[<p>maybe I&#8217;m the only person in the world who feels this way, but for me part of the magic of Mac OS X is that I don&#8217;t need to back up my whole hard drive.  I&#8217;m using PSyncX to automatically (smart-)backup my user folder, and occasionally I&#8217;ll manually make sure that all applications which are difficult to get are also backed up.  I just don&#8217;t feel like I need to back up all of Mac OSX systemfiles and other such data.</p>
<p>Then again, I may be thinking this way because I have limited external data storage space, and I don&#8217;t claim to be an expert at all on this subject.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: This So Called Life &#187; Blog Archive &#187; HOW TO: Keeping a hot backup of your Mac Drive</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-99</link>
		<author>This So Called Life &#187; Blog Archive &#187; HOW TO: Keeping a hot backup of your Mac Drive</author>
		<pubDate>Mon, 27 Feb 2006 19:06:03 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-99</guid>
					<description>[...] read more&#160;&#124;&#160;digg story [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] read more&nbsp;|&nbsp;digg story [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-105</link>
		<author>Mark</author>
		<pubDate>Thu, 02 Mar 2006 21:10:53 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-105</guid>
					<description>Am I missing something here?  To do a complete clone or restore backup of your harddrive, don't you need to be running from another startup disk or cd to get all the system files that would normally be active and not copy?</description>
		<content:encoded><![CDATA[<p>Am I missing something here?  To do a complete clone or restore backup of your harddrive, don&#8217;t you need to be running from another startup disk or cd to get all the system files that would normally be active and not copy?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nelson</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-106</link>
		<author>Nelson</author>
		<pubDate>Sat, 04 Mar 2006 19:57:37 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-106</guid>
					<description>A combination of ditto and rsync works well for me as a home user.  I would refine this somewhat if I had to use this process in production.

What I am using
System Version:	Mac OS X 10.3.9
Kernel Version:	Darwin 7.9.0

Disk Utility failed to produce identical permissions on target image and rsync failed to produce all files and identical permissions on target.

I felt good about the image produced and maintained by this method and created a few scripts to do this.

Start with clean partition about the same size as your system and uncheck (Ignore ownership on this volume) in (Get Info) for the volume.  
As the (root) or (sudo user) create the  initial silver image using following method.

1.)  /usr/bin/ditto -rsrcFork    

Critical System dirs and files are, you may have a few more under / but not needed.

/Developer 
 /Library
/System
/Users
/cores 
/private 
/usr 
/bin
/sbin 
/mach_kernel
/.hidden


Example:
/usr/bin/ditto -rsrcFork /Applications /Volumes/"Backup Image 1"/Applications

2.)   After this you create the missing links

cd /Volumes/Backup
ln -s private/etc etc
ln -s private/var var
ln -s private/tmp tmp
mkdir dev Volumes Network

3.) bless the services to make bootable  
bless -folder /Volumes/"Backup Image 1"/System/Library/CoreServices -bootinfo /usr/standalone/ppc/bootx.bootinfo


4.)  Keep the User Dirs in sync using rsync and use ditto for movies the  under user homes.

rsync -avz  –delete -excluded –exclude=”Movies/*” 
/usr/bin/ditto -rsrcFork     

Example: rsync 
/usr/bin/rsync -avz  --stats --delete --exclude=”Movies/*” /Users /Volumes/"Backup Image 1"

5.)  Update the System Dirs and files as needed using ditto.  To be safe always delete the dir trees that will be replaced ditto will not set permissions on directories if they are not removed.

Hope this helps out.
sysadmin@de-young.com
Nelson L. DeYoung</description>
		<content:encoded><![CDATA[<p>A combination of ditto and rsync works well for me as a home user.  I would refine this somewhat if I had to use this process in production.</p>
<p>What I am using<br />
System Version:	Mac OS X 10.3.9<br />
Kernel Version:	Darwin 7.9.0</p>
<p>Disk Utility failed to produce identical permissions on target image and rsync failed to produce all files and identical permissions on target.</p>
<p>I felt good about the image produced and maintained by this method and created a few scripts to do this.</p>
<p>Start with clean partition about the same size as your system and uncheck (Ignore ownership on this volume) in (Get Info) for the volume.<br />
As the (root) or (sudo user) create the  initial silver image using following method.</p>
<p>1.)  /usr/bin/ditto -rsrcFork    </p>
<p>Critical System dirs and files are, you may have a few more under / but not needed.</p>
<p>/Developer<br />
 /Library<br />
/System<br />
/Users<br />
/cores<br />
/private<br />
/usr<br />
/bin<br />
/sbin<br />
/mach_kernel<br />
/.hidden</p>
<p>Example:<br />
/usr/bin/ditto -rsrcFork /Applications /Volumes/&#8221;Backup Image 1&#8243;/Applications</p>
<p>2.)   After this you create the missing links</p>
<p>cd /Volumes/Backup<br />
ln -s private/etc etc<br />
ln -s private/var var<br />
ln -s private/tmp tmp<br />
mkdir dev Volumes Network</p>
<p>3.) bless the services to make bootable<br />
bless -folder /Volumes/&#8221;Backup Image 1&#8243;/System/Library/CoreServices -bootinfo /usr/standalone/ppc/bootx.bootinfo</p>
<p>4.)  Keep the User Dirs in sync using rsync and use ditto for movies the  under user homes.</p>
<p>rsync -avz  –delete -excluded –exclude=”Movies/*”<br />
/usr/bin/ditto -rsrcFork     </p>
<p>Example: rsync<br />
/usr/bin/rsync -avz  &#8211;stats &#8211;delete &#8211;exclude=”Movies/*” /Users /Volumes/&#8221;Backup Image 1&#8243;</p>
<p>5.)  Update the System Dirs and files as needed using ditto.  To be safe always delete the dir trees that will be replaced ditto will not set permissions on directories if they are not removed.</p>
<p>Hope this helps out.<br />
<a href="mailto:sysadmin@de-young.com">sysadmin@de-young.com</a><br />
Nelson L. DeYoung</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nelson</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-107</link>
		<author>Nelson</author>
		<pubDate>Sat, 04 Mar 2006 20:15:06 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-107</guid>
					<description>opps this is the cmd I use to rsync user dirs 

/usr/bin/rsync -avz  --stats --delete --exclude="Movies/*" /Users /Volumes/"Backup Image 1"</description>
		<content:encoded><![CDATA[<p>opps this is the cmd I use to rsync user dirs </p>
<p>/usr/bin/rsync -avz  &#8211;stats &#8211;delete &#8211;exclude=&#8221;Movies/*&#8221; /Users /Volumes/&#8221;Backup Image 1&#8243;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: maurits</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-113</link>
		<author>maurits</author>
		<pubDate>Sat, 11 Mar 2006 07:33:13 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-113</guid>
					<description>Whenever you deploy Mac backup tools such as rsync, ditto, CCC, psync, etc., you should be aware of the different tools' deficiencies. Especially the older tools have some subtle problems that make a true 1:1 copy impossible. Most problems are related to metadata. I have posted an analysis here:

http://blog.plasticsfuture.org/2006/03/05/the-state-of-backup-and-cloning-tools-under-mac-os-x/</description>
		<content:encoded><![CDATA[<p>Whenever you deploy Mac backup tools such as rsync, ditto, CCC, psync, etc., you should be aware of the different tools&#8217; deficiencies. Especially the older tools have some subtle problems that make a true 1:1 copy impossible. Most problems are related to metadata. I have posted an analysis here:</p>
<p><a href="http://blog.plasticsfuture.org/2006/03/05/the-state-of-backup-and-cloning-tools-under-mac-os-x/" rel="nofollow">http://blog.plasticsfuture.org/2006/03/05/the-state-of-backup-and-cloning-tools-under-mac-os-x/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: &#187; Why I won&#8217;t buy an Intel Mac (yet)</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-114</link>
		<author>&#187; Why I won&#8217;t buy an Intel Mac (yet)</author>
		<pubDate>Wed, 15 Mar 2006 13:55:14 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-114</guid>
					<description>[...] First, my computer is directly tied to my income. If my computer goes down, I lose the ability to make money, so uptime is very important to me. This means I have to be able to be up and running in short order if my laptop is stolen, broken, or sent back to Apple for repairs. Currently the way I protect myself from these types of issues is by imaging my machine to an external hard drive. If my machine becomes unusable, I can simply boot up my Mac Mini or Strawberry G3 and be up and running with all my applications and files just like I had on my 17 inch Powerbook. If I&#8217;m traveling and my Mac needs repair (but isn&#8217;t completely broken) borrowing or buying an external hard drive lets me back up my machine and use it on any of my friend&#8217;s or family&#8217;s OS X based PPC machines. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] First, my computer is directly tied to my income. If my computer goes down, I lose the ability to make money, so uptime is very important to me. This means I have to be able to be up and running in short order if my laptop is stolen, broken, or sent back to Apple for repairs. Currently the way I protect myself from these types of issues is by imaging my machine to an external hard drive. If my machine becomes unusable, I can simply boot up my Mac Mini or Strawberry G3 and be up and running with all my applications and files just like I had on my 17 inch Powerbook. If I&#8217;m traveling and my Mac needs repair (but isn&#8217;t completely broken) borrowing or buying an external hard drive lets me back up my machine and use it on any of my friend&#8217;s or family&#8217;s OS X based PPC machines. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: bastien</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-127</link>
		<author>bastien</author>
		<pubDate>Wed, 12 Apr 2006 06:08:07 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-127</guid>
					<description>just a question, does it work with usb drives? seems it only works with firewire as usb is not bootable on my powerbook g4 1,67</description>
		<content:encoded><![CDATA[<p>just a question, does it work with usb drives? seems it only works with firewire as usb is not bootable on my powerbook g4 1,67</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nelson L. DeYoung</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-133</link>
		<author>Nelson L. DeYoung</author>
		<pubDate>Tue, 18 Apr 2006 04:29:15 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-133</guid>
					<description>It is my understanding that Bootable USB is coming, but not it is still not gui startup from options key.  It will have to be intergrated into hardware open firmware.  You might boot to cd then to usb, but I have not tried it.  

It looks like these guys have made it happen, but once again I have not tested it yet myself.

http://www.macosxhints.com/article.php?story=20060301112336384&#38;lsrc=osxh

Good luck

Nelson de Young</description>
		<content:encoded><![CDATA[<p>It is my understanding that Bootable USB is coming, but not it is still not gui startup from options key.  It will have to be intergrated into hardware open firmware.  You might boot to cd then to usb, but I have not tried it.  </p>
<p>It looks like these guys have made it happen, but once again I have not tested it yet myself.</p>
<p><a href="http://www.macosxhints.com/article.php?story=20060301112336384&amp;lsrc=osxh" rel="nofollow">http://www.macosxhints.com/article.php?story=20060301112336384&amp;lsrc=osxh</a></p>
<p>Good luck</p>
<p>Nelson de Young</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Steven Caruana</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-162</link>
		<author>Steven Caruana</author>
		<pubDate>Mon, 01 May 2006 10:06:08 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-162</guid>
					<description>Sounds useful i can't count the number of harddrive crashes i have had over the last 5 year.  Always useful to have a full backup of your drive</description>
		<content:encoded><![CDATA[<p>Sounds useful i can&#8217;t count the number of harddrive crashes i have had over the last 5 year.  Always useful to have a full backup of your drive</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Secret Weapon Notes: Volume 2 at Secret Weapon Labs</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-173</link>
		<author>Secret Weapon Notes: Volume 2 at Secret Weapon Labs</author>
		<pubDate>Fri, 05 May 2006 06:00:34 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-173</guid>
					<description>[...] Have you backed up your Mac recently, you should. Here&#8217;s an easy way to do it [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Have you backed up your Mac recently, you should. Here&#8217;s an easy way to do it [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: heavylift &#187; Blog Archive &#187; Secure Portable iPod Backups</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-232</link>
		<author>heavylift &#187; Blog Archive &#187; Secure Portable iPod Backups</author>
		<pubDate>Fri, 26 May 2006 20:31:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-232</guid>
					<description>[...] As my digital life becomes more complicated I&#8217;ve run across numerous backup strategies that have been helpful. However, I recently discovered an easy way to keep a digitally secure copy of my most critical documents with me at any point in time. This article is a shortened version of a larger article I am working on regarding comprehensive mac backup strategies. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] As my digital life becomes more complicated I&#8217;ve run across numerous backup strategies that have been helpful. However, I recently discovered an easy way to keep a digitally secure copy of my most critical documents with me at any point in time. This article is a shortened version of a larger article I am working on regarding comprehensive mac backup strategies. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: four0four.net &#187; links for 2006-02-20</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-234</link>
		<author>four0four.net &#187; links for 2006-02-20</author>
		<pubDate>Tue, 30 May 2006 21:49:14 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-234</guid>
					<description>[...] www.digital501.com » Keeping a Hot Backup of Your Mac Hard Drive You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy (tags: bnm backup osx) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://www.digital501.com" rel="nofollow">www.digital501.com</a> » Keeping a Hot Backup of Your Mac Hard Drive You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy (tags: bnm backup osx) [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Finding Japan &#187; Blog Archive &#187; Automated and Secure iPod Backups</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-271</link>
		<author>Finding Japan &#187; Blog Archive &#187; Automated and Secure iPod Backups</author>
		<pubDate>Thu, 15 Jun 2006 19:58:43 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-271</guid>
					<description>[...] As my digital life becomes more complicated I&#8217;ve run across numerous backup strategies that have been helpful. However, I recently discovered an easy way to keep a digitally secure copy of my most critical documents with me at any point in time. This article is a shortened version of a larger article I am working on regarding comprehensive mac backup strategies.The Goal [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] As my digital life becomes more complicated I&#8217;ve run across numerous backup strategies that have been helpful. However, I recently discovered an easy way to keep a digitally secure copy of my most critical documents with me at any point in time. This article is a shortened version of a larger article I am working on regarding comprehensive mac backup strategies.The Goal [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: agill</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-3684</link>
		<author>agill</author>
		<pubDate>Tue, 30 Jan 2007 06:54:56 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-3684</guid>
					<description>I was very pleased when this worked for me, enabling me to put a complete, bootable copy of my internal hard drive onto my LaCie firewire 800 external drive.
First time it did not work. The "restore" to the external drive appeared to work fine, but when I tried to boot from it, it would not. I have an Intel-based Mac, so the partition format is different from PowerPCs etc. The newer partition format is known as GUID partition table. The prior format was Apple Partition Map.
The LaCie external drive was preformatted for Macs, but with the Apple Partition Map. I repartitioned it to GUID Partition Table, repeated the "restore" to it, and when I tried to boot from it, it worked fine, with my complete system apparently in place.
Just wanted to pass on the tip to anyone else who may experience a "non-boot" problem.</description>
		<content:encoded><![CDATA[<p>I was very pleased when this worked for me, enabling me to put a complete, bootable copy of my internal hard drive onto my LaCie firewire 800 external drive.<br />
First time it did not work. The &#8220;restore&#8221; to the external drive appeared to work fine, but when I tried to boot from it, it would not. I have an Intel-based Mac, so the partition format is different from PowerPCs etc. The newer partition format is known as GUID partition table. The prior format was Apple Partition Map.<br />
The LaCie external drive was preformatted for Macs, but with the Apple Partition Map. I repartitioned it to GUID Partition Table, repeated the &#8220;restore&#8221; to it, and when I tried to boot from it, it worked fine, with my complete system apparently in place.<br />
Just wanted to pass on the tip to anyone else who may experience a &#8220;non-boot&#8221; problem.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-4527</link>
		<author>Chris</author>
		<pubDate>Sun, 18 Feb 2007 16:24:17 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-4527</guid>
					<description>Call me stupd but im a little confused.
If i use disk utility to copy m harddrive to an external hard drive why do i need CCC or SuperDuper to backup my disk???
I simply want to be able to back my docs/movies/music to my external hard drive. Should i use disk utility or download CCC? Thanks</description>
		<content:encoded><![CDATA[<p>Call me stupd but im a little confused.<br />
If i use disk utility to copy m harddrive to an external hard drive why do i need CCC or SuperDuper to backup my disk???<br />
I simply want to be able to back my docs/movies/music to my external hard drive. Should i use disk utility or download CCC? Thanks</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: tramadol</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-4881</link>
		<author>tramadol</author>
		<pubDate>Mon, 26 Feb 2007 03:35:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-4881</guid>
					<description>&lt;strong&gt;tramadol...&lt;/strong&gt;

news...</description>
		<content:encoded><![CDATA[<p><strong>tramadol&#8230;</strong></p>
<p>news&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: OS X Hacker &#187; » Keeping a Hot Backup of Your Mac Hard Drive</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-10337</link>
		<author>OS X Hacker &#187; » Keeping a Hot Backup of Your Mac Hard Drive</author>
		<pubDate>Thu, 24 May 2007 19:47:37 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-10337</guid>
					<description>[...] » Keeping a Hot Backup of Your Mac Hard Drive &#124; You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] » Keeping a Hot Backup of Your Mac Hard Drive | You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: b-log &#187; Friday night blog posting</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-10414</link>
		<author>b-log &#187; Friday night blog posting</author>
		<pubDate>Fri, 25 May 2007 21:45:15 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-10414</guid>
					<description>[...] to get another external hard drive for me and Hanna where we can keep hot backups of our systems. Here&#8217;s a guide on how to do just [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] to get another external hard drive for me and Hanna where we can keep hot backups of our systems. Here&#8217;s a guide on how to do just [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: camper tab</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-11612</link>
		<author>camper tab</author>
		<pubDate>Fri, 01 Jun 2007 19:20:19 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-11612</guid>
					<description>&lt;strong&gt;camper tab...&lt;/strong&gt;

ka-ka-sh-ka 3326201 Modern view of camper tab....</description>
		<content:encoded><![CDATA[<p><strong>camper tab&#8230;</strong></p>
<p>ka-ka-sh-ka 3326201 Modern view of camper tab&#8230;.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14251</link>
		<author>Jeremy</author>
		<pubDate>Thu, 14 Jun 2007 18:16:07 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14251</guid>
					<description>Has anyone had problems trying to get this to work? I am using an intel based mac, Mac OS x version 10.4.9 and a LaCie firewire external drive.  I have a lab of these and would like to get a backup of one before they are used.  The problem that I am having is it gets halfway through the copying process and then i get an error that says Restore Failure An error (2) occurred while copying. (no such file or directory). Any idea's on what i am doing wrong?</description>
		<content:encoded><![CDATA[<p>Has anyone had problems trying to get this to work? I am using an intel based mac, Mac OS x version 10.4.9 and a LaCie firewire external drive.  I have a lab of these and would like to get a backup of one before they are used.  The problem that I am having is it gets halfway through the copying process and then i get an error that says Restore Failure An error (2) occurred while copying. (no such file or directory). Any idea&#8217;s on what i am doing wrong?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14486</link>
		<author>Alex</author>
		<pubDate>Mon, 18 Jun 2007 17:45:57 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14486</guid>
					<description>Same thing is happening to me. I get the same error code as Jeremy. The only difference is that I am using a Maxtor external drive on my powerbook G4 running OS X version 10.3.9. That and mine doesnt even get half way though the copying process. The error comes up the second the copying begins. Someone care to help us out?</description>
		<content:encoded><![CDATA[<p>Same thing is happening to me. I get the same error code as Jeremy. The only difference is that I am using a Maxtor external drive on my powerbook G4 running OS X version 10.3.9. That and mine doesnt even get half way though the copying process. The error comes up the second the copying begins. Someone care to help us out?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Conor</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14828</link>
		<author>Conor</author>
		<pubDate>Sat, 23 Jun 2007 09:51:48 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-14828</guid>
					<description>Same as Jeremy and Alex. I've tried many times and I get the "no such file or directory" error either immediately or after half the operation is complete.</description>
		<content:encoded><![CDATA[<p>Same as Jeremy and Alex. I&#8217;ve tried many times and I get the &#8220;no such file or directory&#8221; error either immediately or after half the operation is complete.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: lucas</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-16840</link>
		<author>lucas</author>
		<pubDate>Mon, 16 Jul 2007 03:21:00 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-16840</guid>
					<description>I have the same problem with the error 2 - what is this?</description>
		<content:encoded><![CDATA[<p>I have the same problem with the error 2 - what is this?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-17116</link>
		<author>Mark</author>
		<pubDate>Thu, 19 Jul 2007 23:11:56 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-17116</guid>
					<description>Same problem with the error (2), the exact text of which is:

restore failure:

an error (2) occured while copying.  (No such file or directory)

Tried from multiple systems, multiple drives, intel, PPC, OSX 10.4.9, 10.4.10, from the internal hd to external firewire, from external firewire to external firewire, no love all around.

Grr.

Any suggestions appreciated.</description>
		<content:encoded><![CDATA[<p>Same problem with the error (2), the exact text of which is:</p>
<p>restore failure:</p>
<p>an error (2) occured while copying.  (No such file or directory)</p>
<p>Tried from multiple systems, multiple drives, intel, PPC, OSX 10.4.9, 10.4.10, from the internal hd to external firewire, from external firewire to external firewire, no love all around.</p>
<p>Grr.</p>
<p>Any suggestions appreciated.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shaheed</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-18172</link>
		<author>Shaheed</author>
		<pubDate>Fri, 03 Aug 2007 04:29:45 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-18172</guid>
					<description>Hey,

I bought a new hard drive to put in my Macbook (160GB Seagate). I want to take my old 80GB out and then copy the contents to the new one. I want to do this without installing OS X on my new HD. However that means I will not have access to Disk Utility on the Macbook only through the old HD (which will be converted to external).

I heard a rumour that when a new HD is inserted in a Macbook and you boot it with the external plugged it, the Macbook will ask if you want to restore from this external HD. Is this true? Please provide some guidance. 

Thanks.</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>I bought a new hard drive to put in my Macbook (160GB Seagate). I want to take my old 80GB out and then copy the contents to the new one. I want to do this without installing OS X on my new HD. However that means I will not have access to Disk Utility on the Macbook only through the old HD (which will be converted to external).</p>
<p>I heard a rumour that when a new HD is inserted in a Macbook and you boot it with the external plugged it, the Macbook will ask if you want to restore from this external HD. Is this true? Please provide some guidance. </p>
<p>Thanks.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: G.</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-18828</link>
		<author>G.</author>
		<pubDate>Fri, 17 Aug 2007 03:08:56 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-18828</guid>
					<description>Google SuperDuper! great backup tool ....</description>
		<content:encoded><![CDATA[<p>Google SuperDuper! great backup tool &#8230;.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19242</link>
		<author>Matt</author>
		<pubDate>Sun, 26 Aug 2007 16:40:08 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19242</guid>
					<description>Same as Jeremy, Alex, Conor, lucas, and Mark</description>
		<content:encoded><![CDATA[<p>Same as Jeremy, Alex, Conor, lucas, and Mark</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: feed me apple snacks &#187; Keeping a Hot Backup of Your Mac Hard Drive</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19695</link>
		<author>feed me apple snacks &#187; Keeping a Hot Backup of Your Mac Hard Drive</author>
		<pubDate>Fri, 07 Sep 2007 00:09:26 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19695</guid>
					<description>[...] Keeping a Hot Backup of Your Mac Hard Drive &#124; You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer.      &#171; After Apple’s iPod/iPhone Announcements - A Look Ahead &#187; iTunes Cheat Sheet [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Keeping a Hot Backup of Your Mac Hard Drive | You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer.      &laquo; After Apple’s iPod/iPhone Announcements - A Look Ahead &raquo; iTunes Cheat Sheet [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: feed me apple snacks &#187; Keeping a Hot Backup of Your Mac Hard Drive</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19710</link>
		<author>feed me apple snacks &#187; Keeping a Hot Backup of Your Mac Hard Drive</author>
		<pubDate>Fri, 07 Sep 2007 06:39:50 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-19710</guid>
					<description>[...] Keeping a Hot Backup of Your Mac Hard Drive &#124; You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer.      &#171; Apple posts Pro Application Support update &#187; The Fastest Airport Transfers Are One Way [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Keeping a Hot Backup of Your Mac Hard Drive | You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer.      &laquo; Apple posts Pro Application Support update &raquo; The Fastest Airport Transfers Are One Way [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: feed me apple snacks &#187; Keeping a Hot Backup of Your Mac Hard Drive</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-21604</link>
		<author>feed me apple snacks &#187; Keeping a Hot Backup of Your Mac Hard Drive</author>
		<pubDate>Wed, 10 Oct 2007 03:30:56 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-21604</guid>
					<description>[...] Keeping a Hot Backup of Your Mac Hard Drive &#124; You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer.      &#171; Del.icio.us to Yojimbo &#187; Iconfactory : Software : Twitterrific [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Keeping a Hot Backup of Your Mac Hard Drive | You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy of your hard drive that can be started up and run just like it is your computer.      &laquo; Del.icio.us to Yojimbo &raquo; Iconfactory : Software : Twitterrific [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: A Penguin in the Orchard &#187; Blog Archive &#187; links for 2007-10-22</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-22294</link>
		<author>A Penguin in the Orchard &#187; Blog Archive &#187; links for 2007-10-22</author>
		<pubDate>Mon, 22 Oct 2007 07:25:43 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-22294</guid>
					<description>[...] » Keeping a Hot Backup of Your Mac Hard Drive You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy (tags: max backups) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] » Keeping a Hot Backup of Your Mac Hard Drive You don’t really understand the importance of backups until your hard drive crashes. With most backups, you’ll need to reinstall the operating system and then restore all of your data. OS X comes with a handy tool that will let you create a live copy (tags: max backups) [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-25883</link>
		<author>Gary</author>
		<pubDate>Thu, 29 Nov 2007 13:46:20 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-25883</guid>
					<description>&lt;strong&gt;Gary...&lt;/strong&gt;

\"...These companies use engineering that can recover your lost data over ninety six percent of the time...\"...</description>
		<content:encoded><![CDATA[<p><strong>Gary&#8230;</strong></p>
<p>\&#8221;&#8230;These companies use engineering that can recover your lost data over ninety six percent of the time&#8230;\&#8221;&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jurg Bollinger</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30612</link>
		<author>Jurg Bollinger</author>
		<pubDate>Tue, 15 Jan 2008 23:06:24 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30612</guid>
					<description>Thank you for the informative work![url=http://bankmap.w8w.pl/us1-bankofameirca-cn-file16.htm]info[/url]</description>
		<content:encoded><![CDATA[<p>Thank you for the informative work![url=http://bankmap.w8w.pl/us1-bankofameirca-cn-file16.htm]info[/url]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Martin Campbell</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30613</link>
		<author>Martin Campbell</author>
		<pubDate>Wed, 16 Jan 2008 09:09:53 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30613</guid>
					<description>Take care of it and keep it on the road![url=http://bankmap.friko.pl/us5-bankofameirca-cn-file34.htm]top[/url]</description>
		<content:encoded><![CDATA[<p>Take care of it and keep it on the road![url=http://bankmap.friko.pl/us5-bankofameirca-cn-file34.htm]top[/url]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: inqamvydel</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30639</link>
		<author>inqamvydel</author>
		<pubDate>Mon, 04 Feb 2008 11:55:24 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30639</guid>
					<description>At the road to &lt;a href="http://sexyleg-sexylegs.blogspot.com" rel="nofollow"&gt;mini skirts legs&lt;/a&gt;  a bite, and gave eastern.</description>
		<content:encoded><![CDATA[<p>At the road to <a href="http://sexyleg-sexylegs.blogspot.com" rel="nofollow">mini skirts legs</a>  a bite, and gave eastern.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: babes</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30640</link>
		<author>babes</author>
		<pubDate>Wed, 06 Feb 2008 18:55:18 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30640</guid>
					<description>Kyle, fuck you. Id seen &lt;a href="http://prehoba.geq.nl" rel="nofollow"&gt;pretty hot babes&lt;/a&gt;  it wouldput an.</description>
		<content:encoded><![CDATA[<p>Kyle, fuck you. Id seen <a href="http://prehoba.geq.nl" rel="nofollow">pretty hot babes</a>  it wouldput an.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: malin</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30644</link>
		<author>malin</author>
		<pubDate>Sun, 10 Feb 2008 15:04:39 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30644</guid>
					<description>&lt;a href="http://akerman.mypunbb.com" rel="nofollow"&gt;malin akerman nude&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://akerman.mypunbb.com" rel="nofollow">malin akerman nude</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jon Smitt</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30666</link>
		<author>Jon Smitt</author>
		<pubDate>Mon, 25 Feb 2008 11:21:20 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30666</guid>
					<description>Alles Gute zum Geburtstag![url=http://credit-score.w8w.pl/?get-free-credit-score]credit score mean[/url]</description>
		<content:encoded><![CDATA[<p>Alles Gute zum Geburtstag![url=http://credit-score.w8w.pl/?get-free-credit-score]credit score mean[/url]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: xervoz</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30668</link>
		<author>xervoz</author>
		<pubDate>Mon, 25 Feb 2008 12:30:58 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30668</guid>
					<description>I have to bake bread. The airlines &lt;a href="http://bravo.messageboard.nl/35316" rel="nofollow"&gt;nipple clamp&lt;/a&gt;  about cooking class and he said.</description>
		<content:encoded><![CDATA[<p>I have to bake bread. The airlines <a href="http://bravo.messageboard.nl/35316" rel="nofollow">nipple clamp</a>  about cooking class and he said.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: skull sevenfold avenged</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30672</link>
		<author>skull sevenfold avenged</author>
		<pubDate>Wed, 27 Feb 2008 16:43:52 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30672</guid>
					<description>unholy avenged sevenfold &lt;a href="http://www.voy.com/215582" rel="nofollow"&gt;sevenfold - avenged&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>unholy avenged sevenfold <a href="http://www.voy.com/215582" rel="nofollow">sevenfold - avenged</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: tequila</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30683</link>
		<author>tequila</author>
		<pubDate>Sat, 08 Mar 2008 22:34:22 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30683</guid>
					<description>Amanda, but as soon. Now. No willpower. I again &lt;a href="http://littleyauyau.com/lifetype/index.php?blogId=4" rel="nofollow"&gt;tila tequila naked&lt;/a&gt; had.</description>
		<content:encoded><![CDATA[<p>Amanda, but as soon. Now. No willpower. I again <a href="http://littleyauyau.com/lifetype/index.php?blogId=4" rel="nofollow">tila tequila naked</a> had.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: xqojlohwuvid</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30688</link>
		<author>xqojlohwuvid</author>
		<pubDate>Thu, 13 Mar 2008 20:18:35 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30688</guid>
					<description>I recognized ann, richie, they rode high &lt;a href="http://www.geocities.com/dfzsdfghdgyj" rel="nofollow"&gt;hayden panettiere sex&lt;/a&gt;  on. Her pussypulsed around the rate of a.</description>
		<content:encoded><![CDATA[<p>I recognized ann, richie, they rode high <a href="http://www.geocities.com/dfzsdfghdgyj" rel="nofollow">hayden panettiere sex</a>  on. Her pussypulsed around the rate of a.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: kfexpurcogif</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30692</link>
		<author>kfexpurcogif</author>
		<pubDate>Wed, 19 Mar 2008 04:56:35 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30692</guid>
					<description>Roll over the &lt;a href="http://mariahcareynude.sblog.cz" rel="nofollow"&gt;mariah carey porn&lt;/a&gt;  on her crotch. Just enough to take.</description>
		<content:encoded><![CDATA[<p>Roll over the <a href="http://mariahcareynude.sblog.cz" rel="nofollow">mariah carey porn</a>  on her crotch. Just enough to take.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: eslurgegkux</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30693</link>
		<author>eslurgegkux</author>
		<pubDate>Wed, 19 Mar 2008 15:05:23 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30693</guid>
					<description>&lt;a href="http://mcmbra.proboards84.com" rel="nofollow"&gt;stephanie mcmahon in bra&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://mcmbra.proboards84.com" rel="nofollow">stephanie mcmahon in bra</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: wfivsybpy</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30694</link>
		<author>wfivsybpy</author>
		<pubDate>Thu, 20 Mar 2008 20:20:42 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30694</guid>
					<description>Small clear droplets ofcum already &lt;a href="http://pamelaandersonn.blogspot.com" rel="nofollow"&gt;sexy pamela anderson&lt;/a&gt;  clung to be higher branch strong enough forkyle he.</description>
		<content:encoded><![CDATA[<p>Small clear droplets ofcum already <a href="http://pamelaandersonn.blogspot.com" rel="nofollow">sexy pamela anderson</a>  clung to be higher branch strong enough forkyle he.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: zuheksevlad</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30695</link>
		<author>zuheksevlad</author>
		<pubDate>Fri, 21 Mar 2008 04:14:13 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30695</guid>
					<description>Measuring &lt;a href="http://carmenelectranu.sblog.cz" rel="nofollow"&gt;carmen electra lesbian&lt;/a&gt;  the time clock to anyone around except.</description>
		<content:encoded><![CDATA[<p>Measuring <a href="http://carmenelectranu.sblog.cz" rel="nofollow">carmen electra lesbian</a>  the time clock to anyone around except.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Isaac</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30705</link>
		<author>Isaac</author>
		<pubDate>Thu, 24 Apr 2008 01:37:12 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30705</guid>
					<description>I was using the function discussed above to back-up my drive, but it gave me an error message saying that "An error (2) occurred while copying. (No such file or directory). 

Can anyone explain this to me, and how I can resolve this?</description>
		<content:encoded><![CDATA[<p>I was using the function discussed above to back-up my drive, but it gave me an error message saying that &#8220;An error (2) occurred while copying. (No such file or directory). </p>
<p>Can anyone explain this to me, and how I can resolve this?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: gagner au video poker</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30729</link>
		<author>gagner au video poker</author>
		<pubDate>Wed, 28 May 2008 15:57:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30729</guid>
					<description>&lt;strong&gt;poker spielen berlin...&lt;/strong&gt;

But blackjack software casino game online roulette poker dot net casino slots jeux slots gratis...</description>
		<content:encoded><![CDATA[<p><strong>poker spielen berlin&#8230;</strong></p>
<p>But blackjack software casino game online roulette poker dot net casino slots jeux slots gratis&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: TomasKell</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30730</link>
		<author>TomasKell</author>
		<pubDate>Thu, 29 May 2008 00:59:58 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30730</guid>
					<description>Hello webmaster, very nice site here, great work! 
TomasKell</description>
		<content:encoded><![CDATA[<p>Hello webmaster, very nice site here, great work!<br />
TomasKell</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: avlyhig</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30740</link>
		<author>avlyhig</author>
		<pubDate>Tue, 10 Jun 2008 16:51:16 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30740</guid>
					<description>&lt;a href="http://brande.freewebhosting360.com" rel="nofollow"&gt;brande roderick gallery&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://brande.freewebhosting360.com" rel="nofollow">brande roderick gallery</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: trifexi</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30743</link>
		<author>trifexi</author>
		<pubDate>Thu, 12 Jun 2008 03:55:22 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30743</guid>
					<description>Were kissing madly. I just die &lt;a href="http://jamesonsex.greatnuke.com" rel="nofollow"&gt;jenna jameson lesbian sex&lt;/a&gt;  of time.</description>
		<content:encoded><![CDATA[<p>Were kissing madly. I just die <a href="http://jamesonsex.greatnuke.com" rel="nofollow">jenna jameson lesbian sex</a>  of time.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: kjanexsaf</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30746</link>
		<author>kjanexsaf</author>
		<pubDate>Mon, 16 Jun 2008 11:31:45 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30746</guid>
					<description>Tina had underwater with someone &lt;a href="http://jenniferlovehew.mypunbb.com" rel="nofollow"&gt;jennifer love hewitt nude&lt;/a&gt;  again, pretend that by after school on esus face, then.</description>
		<content:encoded><![CDATA[<p>Tina had underwater with someone <a href="http://jenniferlovehew.mypunbb.com" rel="nofollow">jennifer love hewitt nude</a>  again, pretend that by after school on esus face, then.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: tapping</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30749</link>
		<author>tapping</author>
		<pubDate>Thu, 19 Jun 2008 02:03:35 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30749</guid>
					<description>&lt;a href="http://bloc.ravalnet.org/bloc/amanda" rel="nofollow"&gt;amanda tapping nude&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://bloc.ravalnet.org/bloc/amanda" rel="nofollow">amanda tapping nude</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: zyrfaz</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30752</link>
		<author>zyrfaz</author>
		<pubDate>Fri, 20 Jun 2008 21:21:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30752</guid>
					<description>Annngghhiiieeee. &lt;a href="http://members.fotki.com/midgetsexi" rel="nofollow"&gt;midget slut&lt;/a&gt;  Joanne watched them like a devilish grin. You to block my.</description>
		<content:encoded><![CDATA[<p>Annngghhiiieeee. <a href="http://members.fotki.com/midgetsexi" rel="nofollow">midget slut</a>  Joanne watched them like a devilish grin. You to block my.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: yvhajb</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30755</link>
		<author>yvhajb</author>
		<pubDate>Sat, 21 Jun 2008 21:19:26 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30755</guid>
					<description>Alright, i asked. &lt;a href="http://transparentlate.mypunbb.com" rel="nofollow"&gt;latex rubber clothing&lt;/a&gt;  Thank you, youshould invest a big ass and were not giving.</description>
		<content:encoded><![CDATA[<p>Alright, i asked. <a href="http://transparentlate.mypunbb.com" rel="nofollow">latex rubber clothing</a>  Thank you, youshould invest a big ass and were not giving.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: telecharger evrest poker</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30757</link>
		<author>telecharger evrest poker</author>
		<pubDate>Tue, 24 Jun 2008 09:29:06 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30757</guid>
					<description>&lt;strong&gt;telecharger evrest poker...&lt;/strong&gt;

NÃ©anmoins casino on net free online multiplayer poker video poker odds casino gratuites gagner metro pcs ringtones...</description>
		<content:encoded><![CDATA[<p><strong>telecharger evrest poker&#8230;</strong></p>
<p>NÃ©anmoins casino on net free online multiplayer poker video poker odds casino gratuites gagner metro pcs ringtones&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: lutamfu</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30761</link>
		<author>lutamfu</author>
		<pubDate>Fri, 27 Jun 2008 11:20:35 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30761</guid>
					<description>&lt;a href="http://blondpussy.mypunbb.com" rel="nofollow"&gt;blond slut&lt;/a&gt;  Truth are you pretty much you are lucky young.</description>
		<content:encoded><![CDATA[<p><a href="http://blondpussy.mypunbb.com" rel="nofollow">blond slut</a>  Truth are you pretty much you are lucky young.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: lemvaz</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30763</link>
		<author>lemvaz</author>
		<pubDate>Sat, 28 Jun 2008 11:48:45 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30763</guid>
					<description>Every drop of you promise not like i owe &lt;a href="http://www.iblogme.com/boobslip" rel="nofollow"&gt;boob press&lt;/a&gt;  him in a.</description>
		<content:encoded><![CDATA[<p>Every drop of you promise not like i owe <a href="http://www.iblogme.com/boobslip" rel="nofollow">boob press</a>  him in a.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: babes</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30765</link>
		<author>babes</author>
		<pubDate>Mon, 30 Jun 2008 04:24:12 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30765</guid>
					<description>She was eighteen and looked at least most &lt;a href="http://hoseba.free.bg" rel="nofollow"&gt;hot teen babes&lt;/a&gt;  of.</description>
		<content:encoded><![CDATA[<p>She was eighteen and looked at least most <a href="http://hoseba.free.bg" rel="nofollow">hot teen babes</a>  of.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: lovwugugyvto</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30770</link>
		<author>lovwugugyvto</author>
		<pubDate>Wed, 02 Jul 2008 13:26:50 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30770</guid>
					<description>Smack. I seeit. The definite sound of &lt;a href="http://olsentwinsfakes.mypunbb.com" rel="nofollow"&gt;olsen twins porn&lt;/a&gt;  pain, this smack. Auuughh. I couldnt wait to.</description>
		<content:encoded><![CDATA[<p>Smack. I seeit. The definite sound of <a href="http://olsentwinsfakes.mypunbb.com" rel="nofollow">olsen twins porn</a>  pain, this smack. Auuughh. I couldnt wait to.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: pfixtodys</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30772</link>
		<author>pfixtodys</author>
		<pubDate>Fri, 04 Jul 2008 15:33:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30772</guid>
					<description>It you want &lt;a href="http://www.forumromanum.com/member/forum/forum.php?USER=user_447142" rel="nofollow"&gt;anal domination&lt;/a&gt;  me see naked high. I.</description>
		<content:encoded><![CDATA[<p>It you want <a href="http://www.forumromanum.com/member/forum/forum.php?USER=user_447142" rel="nofollow">anal domination</a>  me see naked high. I.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: ububolu</title>
		<link>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30774</link>
		<author>ububolu</author>
		<pubDate>Fri, 04 Jul 2008 20:19:22 +0000</pubDate>
		<guid>http://www.digital501.com/2006021110/mac-backup-osx/#comment-30774</guid>
					<description>A glimpseof &lt;a href="http://bbwsex.freephpnuke.org" rel="nofollow"&gt;bbw bikini&lt;/a&gt;  yellow panties when i, and thenmoaned a bit.</description>
		<content:encoded><![CDATA[<p>A glimpseof <a href="http://bbwsex.freephpnuke.org" rel="nofollow">bbw bikini</a>  yellow panties when i, and thenmoaned a bit.</p>
]]></content:encoded>
				</item>
</channel>
</rss>
