<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: OSX Timemachine and Samba/Windows share</title>
	<atom:link href="http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/feed/" rel="self" type="application/rss+xml" />
	<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 02 Sep 2009 14:40:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: David Jameson</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-70</link>
		<dc:creator>David Jameson</dc:creator>
		<pubDate>Wed, 02 Sep 2009 14:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-70</guid>
		<description>Glad it worked for you --- I guess I should have done it as a shell-script in the first place, but I just happened to have .bashrc open at the time so that was convenient.</description>
		<content:encoded><![CDATA[<p>Glad it worked for you &#8212; I guess I should have done it as a shell-script in the first place, but I just happened to have .bashrc open at the time so that was convenient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-68</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Wed, 02 Sep 2009 13:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-68</guid>
		<description>David Jameson, your function worked perfectly.  I just made a simple shell script called &#039;tmvol.sh&#039;, removed the function wrapper, and passed the size as first param like &#039;./tmvol.sh 250&#039;.  Worked great! Thanks!</description>
		<content:encoded><![CDATA[<p>David Jameson, your function worked perfectly.  I just made a simple shell script called &#8216;tmvol.sh&#8217;, removed the function wrapper, and passed the size as first param like &#8216;./tmvol.sh 250&#8242;.  Worked great! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Jameson</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-67</link>
		<dc:creator>David Jameson</dc:creator>
		<pubDate>Sun, 30 Aug 2009 01:04:46 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-67</guid>
		<description>By the way, I found a very useful shareware program called &quot;Back in time&quot; that&#039;s rather useful if you&#039;re administering multiple backups...it will open any of the sparse bundles and let you get at whatever you need.

http://www.tri-edre.fr/english/backintime.html</description>
		<content:encoded><![CDATA[<p>By the way, I found a very useful shareware program called &#8220;Back in time&#8221; that&#8217;s rather useful if you&#8217;re administering multiple backups&#8230;it will open any of the sparse bundles and let you get at whatever you need.</p>
<p><a href="http://www.tri-edre.fr/english/backintime.html" rel="nofollow">http://www.tri-edre.fr/english/backintime.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Jameson</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-66</link>
		<dc:creator>David Jameson</dc:creator>
		<pubDate>Sun, 30 Aug 2009 01:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-66</guid>
		<description>I have now done this for 4 different machines. To make it more convenient, I created a .bashrc function as follows


function maketimemachinesparsebundle()
{
   size=$1g
   macaddress=`ifconfig en0 &#124; grep ether &#124; sed s/://g &#124; sed s/ether\ // &#124; tr -d [:space:]`
   hostname=`echo $HOSTNAME &#124; sed s/.local//`
   volname=&quot;Backup of $hostname&quot;
   diskname=&quot;$hostname&quot;_&quot;$macaddress&quot;.sparsebundle

   sudo hdiutil create -size $size -type SPARSEBUNDLE -nospotlight -volname &quot;$volname&quot; -fs &quot;Case-sensitive Journaled HFS+&quot; -imagekey sparse-band-size=262144 -verbose $diskname

}


So now all you have to write

maketimemachinesparsebundle 200

to create a 200Gb sparse bundle ready for use</description>
		<content:encoded><![CDATA[<p>I have now done this for 4 different machines. To make it more convenient, I created a .bashrc function as follows</p>
<p>function maketimemachinesparsebundle()<br />
{<br />
   size=$1g<br />
   macaddress=`ifconfig en0 | grep ether | sed s/://g | sed s/ether\ // | tr -d [:space:]`<br />
   hostname=`echo $HOSTNAME | sed s/.local//`<br />
   volname=&#8221;Backup of $hostname&#8221;<br />
   diskname=&#8221;$hostname&#8221;_&#8221;$macaddress&#8221;.sparsebundle</p>
<p>   sudo hdiutil create -size $size -type SPARSEBUNDLE -nospotlight -volname &#8220;$volname&#8221; -fs &#8220;Case-sensitive Journaled HFS+&#8221; -imagekey sparse-band-size=262144 -verbose $diskname</p>
<p>}</p>
<p>So now all you have to write</p>
<p>maketimemachinesparsebundle 200</p>
<p>to create a 200Gb sparse bundle ready for use</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-65</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sat, 29 Aug 2009 01:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-65</guid>
		<description>Wow.  This works like a charm with my Windows fileshares + Mac laptops (looks like I&#039;m not alone) and is exactly the kind of support I like to see coming out of the Mac community.  Awesome job!!

Mac lovers appreciate macs for their simplicity.  However, still gotta be able to tinker every so often to make it truly powerful.

Kudos.

Matt</description>
		<content:encoded><![CDATA[<p>Wow.  This works like a charm with my Windows fileshares + Mac laptops (looks like I&#8217;m not alone) and is exactly the kind of support I like to see coming out of the Mac community.  Awesome job!!</p>
<p>Mac lovers appreciate macs for their simplicity.  However, still gotta be able to tinker every so often to make it truly powerful.</p>
<p>Kudos.</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon C</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-64</link>
		<dc:creator>Simon C</dc:creator>
		<pubDate>Sun, 23 Aug 2009 12:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-64</guid>
		<description>Awesome!

This works really well.  I am now using time machine to backup my MBP wirelessly to a USB drive attached to a windows XP machine on my wired network.
It took a bit of fiddling with my firewall settings, and as other people noted above the drive name needs to exactly the same as the name of the Mac Book but now all works a treat. Saves me having to buy an Airport Extreme just to share a USB external HDD across the network! Only question I have is about the implication in backing up to a drive that is formatted NTFS and not for Mac OSX?

Excellent work!

Simon</description>
		<content:encoded><![CDATA[<p>Awesome!</p>
<p>This works really well.  I am now using time machine to backup my MBP wirelessly to a USB drive attached to a windows XP machine on my wired network.<br />
It took a bit of fiddling with my firewall settings, and as other people noted above the drive name needs to exactly the same as the name of the Mac Book but now all works a treat. Saves me having to buy an Airport Extreme just to share a USB external HDD across the network! Only question I have is about the implication in backing up to a drive that is formatted NTFS and not for Mac OSX?</p>
<p>Excellent work!</p>
<p>Simon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marty</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-62</link>
		<dc:creator>Marty</dc:creator>
		<pubDate>Thu, 13 Aug 2009 10:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-62</guid>
		<description>Works great, thanks a lot!

Regarding the worries about full restore, the screenshots at http://blog.duncandavidson.com/2008/01/restoring-from-time-machine.html suggest that it should be possible to connect to a remote disk (the samba share) at the time you boot from the OS X DVD. Haven&#039;t tried it myself though. Worst case scenario would be a clean install and then restoring your personal files from there, I guess.</description>
		<content:encoded><![CDATA[<p>Works great, thanks a lot!</p>
<p>Regarding the worries about full restore, the screenshots at <a href="http://blog.duncandavidson.com/2008/01/restoring-from-time-machine.html" rel="nofollow">http://blog.duncandavidson.com/2008/01/restoring-from-time-machine.html</a> suggest that it should be possible to connect to a remote disk (the samba share) at the time you boot from the OS X DVD. Haven&#8217;t tried it myself though. Worst case scenario would be a clean install and then restoring your personal files from there, I guess.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Buee</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-60</link>
		<dc:creator>Buee</dc:creator>
		<pubDate>Wed, 05 Aug 2009 23:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-60</guid>
		<description>Absolute genius!  Been trying to get this going for weeks.  Thanks.

One concern I have is, does it go by the MAC address in the sparse bundle?  I ask because I would like to do the initial backup via gigabit ethernet, but that will obviously have a different MAC address.</description>
		<content:encoded><![CDATA[<p>Absolute genius!  Been trying to get this going for weeks.  Thanks.</p>
<p>One concern I have is, does it go by the MAC address in the sparse bundle?  I ask because I would like to do the initial backup via gigabit ethernet, but that will obviously have a different MAC address.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Jameson</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-59</link>
		<dc:creator>David Jameson</dc:creator>
		<pubDate>Tue, 04 Aug 2009 14:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-59</guid>
		<description>Perhaps this is a silly question, but if I have mounted the share, why can&#039;t Time Machine create the bundle itself on the share? Why does this have to be done manually?</description>
		<content:encoded><![CDATA[<p>Perhaps this is a silly question, but if I have mounted the share, why can&#8217;t Time Machine create the bundle itself on the share? Why does this have to be done manually?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart</title>
		<link>http://hupio.wordpress.com/2008/04/27/osx-timemachine-and-sambawindows-share/#comment-58</link>
		<dc:creator>Bart</dc:creator>
		<pubDate>Sat, 18 Jul 2009 01:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://hupio.wordpress.com/?p=3#comment-58</guid>
		<description>Thanks for the tip.  I&#039;ll second the suggestion to use Console to view the correct name for the sparse bundle.  I forgot that my computer name was mixed-case, but the logs in Console revealed the correct name. 

Some have asked about restoring from a backup done this way.  I just figured that out. 

I&#039;m not sure if it&#039;s possible to do the restore during the system install, but it can be done after through Applications-&gt;Utilities-&gt;Migration Assistant. 

You don&#039;t have to have Time Machine configured to use the Samba share, but you do have to mount the Samba share in Finder, as described in this article.  Then double-click the sparse bundle.  This will verify and mount it.  Now run Migration Assistant, and select &quot;From a Time Machine backup or other disk.&quot;  Your backup will appear there, and you can restore from it.</description>
		<content:encoded><![CDATA[<p>Thanks for the tip.  I&#8217;ll second the suggestion to use Console to view the correct name for the sparse bundle.  I forgot that my computer name was mixed-case, but the logs in Console revealed the correct name. </p>
<p>Some have asked about restoring from a backup done this way.  I just figured that out. </p>
<p>I&#8217;m not sure if it&#8217;s possible to do the restore during the system install, but it can be done after through Applications-&gt;Utilities-&gt;Migration Assistant. </p>
<p>You don&#8217;t have to have Time Machine configured to use the Samba share, but you do have to mount the Samba share in Finder, as described in this article.  Then double-click the sparse bundle.  This will verify and mount it.  Now run Migration Assistant, and select &#8220;From a Time Machine backup or other disk.&#8221;  Your backup will appear there, and you can restore from it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>