<?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"
	>
<channel>
	<title>Comments on: Disk images suck: An examination of why, and of the alternatives</title>
	<atom:link href="http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives/feed" rel="self" type="application/rss+xml" />
	<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives</link>
	<description>The personal weblog of Peter Hosey.</description>
	<pubDate>Thu, 08 Jan 2009 23:59:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Peter Hosey</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-134980</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Thu, 01 Nov 2007 16:27:42 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-134980</guid>
		<description>Martin: Agreed.

However, some users don't use English as their system language, even if they know English and accept it in web responses. For these users, you should have your Download link go to a page that redirects to the disk image for the automatically-chosen language, and offers direct links to the disk images in all the other languages.</description>
		<content:encoded><![CDATA[<p>Martin: Agreed.</p>
<p>However, some users don't use English as their system language, even if they know English and accept it in web responses. For these users, you should have your Download link go to a page that redirects to the disk image for the automatically-chosen language, and offers direct links to the disk images in all the other languages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Redington</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-134979</link>
		<dc:creator>Martin Redington</dc:creator>
		<pubDate>Thu, 01 Nov 2007 16:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-134979</guid>
		<description>You should be able to serve up localized disk images, by inspecting the language settings of incoming http requests, and configuring your webserver to send the appopriate image, or an english fallback if you don't have a version for the users language.

This would actually be pretty sweet.</description>
		<content:encoded><![CDATA[<p>You should be able to serve up localized disk images, by inspecting the language settings of incoming http requests, and configuring your webserver to send the appopriate image, or an english fallback if you don't have a version for the users language.</p>
<p>This would actually be pretty sweet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Smith</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47400</link>
		<dc:creator>David Smith</dc:creator>
		<pubDate>Tue, 15 May 2007 16:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47400</guid>
		<description>In response to comment 2, just that they behave like normal disk images.</description>
		<content:encoded><![CDATA[<p>In response to comment 2, just that they behave like normal disk images.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ssp</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47398</link>
		<dc:creator>ssp</dc:creator>
		<pubDate>Tue, 15 May 2007 15:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47398</guid>
		<description>When I played with all options of the hdiutil command a few years back it seemd to decrease the size of the disk image slightly. At least in the tests I did back then I could beat pretty much any other feasible compression method which is why we went with disk images as we didn't have a lot of bandwidth to waste then.</description>
		<content:encoded><![CDATA[<p>When I played with all options of the hdiutil command a few years back it seemd to decrease the size of the disk image slightly. At least in the tests I did back then I could beat pretty much any other feasible compression method which is why we went with disk images as we didn't have a lot of bandwidth to waste then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hosey</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47213</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Mon, 14 May 2007 10:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47213</guid>
		<description>I find the zsh equivalent far more straightforward:

&lt;code&gt;function dmg { hdiutil create -ov -format UDBZ -layout NONE -srcdir $1 $2.dmg &#38;&#38; hdiutil internet-enable $2.dmg }
&lt;/code&gt;

Should work in bash, too, but I haven't tested it.

I hadn't known about -layout NONE before. Does that help anything?</description>
		<content:encoded><![CDATA[<p>I find the zsh equivalent far more straightforward:</p>
<p><code>function dmg { hdiutil create -ov -format UDBZ -layout NONE -srcdir $1 $2.dmg &amp;&amp; hdiutil internet-enable $2.dmg }<br />
</code></p>
<p>Should work in bash, too, but I haven't tested it.</p>
<p>I hadn't known about -layout NONE before. Does that help anything?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ssp</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47209</link>
		<dc:creator>ssp</dc:creator>
		<pubDate>Mon, 14 May 2007 09:43:37 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47209</guid>
		<description>Ah, well I forgot half of what I wanted to say: I meant to post two links (below) the upshot of which is that you want to have a line like 

alias dmg	'hdiutil create -ov -format UDZO -layout NONE -imagekey zlib-level=9 -fs 'HFS+' -srcfolder \!:1 \!:2.dmg; hdiutil internet-enable -yes \!:2.dmg'

in your .tcshrc (or use UDBZ in there if you don't need X.3  compatibility, of course). Turning this into something equivalent for bash or other shell hell or putting it into an Automator workflow is left as an exercise to the reader.

http://earthlingsoft.net/ssp/blog/2003/11/xcode
http://earthlingsoft.net/ssp/blog/2007/04/software_distribution</description>
		<content:encoded><![CDATA[<p>Ah, well I forgot half of what I wanted to say: I meant to post two links (below) the upshot of which is that you want to have a line like </p>
<p>alias dmg	'hdiutil create -ov -format UDZO -layout NONE -imagekey zlib-level=9 -fs 'HFS+' -srcfolder \!:1 \!:2.dmg; hdiutil internet-enable -yes \!:2.dmg'</p>
<p>in your .tcshrc (or use UDBZ in there if you don't need X.3  compatibility, of course). Turning this into something equivalent for bash or other shell hell or putting it into an Automator workflow is left as an exercise to the reader.</p>
<p><a href="http://earthlingsoft.net/ssp/blog/2003/11/xcode" rel="nofollow">http://earthlingsoft.net/ssp/blog/2003/11/xcode</a><br />
<a href="http://earthlingsoft.net/ssp/blog/2007/04/software_distribution" rel="nofollow">http://earthlingsoft.net/ssp/blog/2007/04/software_distribution</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hosey</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47177</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Mon, 14 May 2007 04:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47177</guid>
		<description>ssp and Michael: I've updated the post to include your comments. Thanks!</description>
		<content:encoded><![CDATA[<p>ssp and Michael: I've updated the post to include your comments. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simone Manganelli</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47162</link>
		<dc:creator>Simone Manganelli</dc:creator>
		<pubDate>Mon, 14 May 2007 02:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47162</guid>
		<description>Michael: I stand corrected.  So you can. :)</description>
		<content:encoded><![CDATA[<p>Michael: I stand corrected.  So you can. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Tsai</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47146</link>
		<dc:creator>Michael Tsai</dc:creator>
		<pubDate>Mon, 14 May 2007 00:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47146</guid>
		<description>Simone: You can setup a configuration in DropDMG with the options that you want (such as Internet enabled), then create an Automator workflow that uses that DropDMG configuration, and finally save the workflow as a contextual menu item plug-in.</description>
		<content:encoded><![CDATA[<p>Simone: You can setup a configuration in DropDMG with the options that you want (such as Internet enabled), then create an Automator workflow that uses that DropDMG configuration, and finally save the workflow as a contextual menu item plug-in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ssp</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47128</link>
		<dc:creator>ssp</dc:creator>
		<pubDate>Sun, 13 May 2007 21:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47128</guid>
		<description>I had my 2.71 words to say on this in the past. And the bottom line isn't clear at all. In particular I found that the size advantage of disk images can range from being very small - around 5% say – to quite large – I think I've seen up to 1/3, depending on the data you have. 

From a user-friendliness POV, though, I think zip always wins these days. If only because Safari will decompress the archives almost instantaneously while even an internet enabled disk image requires quite lengthy processing with the mounting, copying and unmounting that has to be done. You can even see the mounted image while this happens which can easily lead to unintended confusion as well.

I guess this is the price we have to pay for Apple choosing the very 'compatible'  zip format for us.</description>
		<content:encoded><![CDATA[<p>I had my 2.71 words to say on this in the past. And the bottom line isn't clear at all. In particular I found that the size advantage of disk images can range from being very small - around 5% say – to quite large – I think I've seen up to 1/3, depending on the data you have. </p>
<p>From a user-friendliness POV, though, I think zip always wins these days. If only because Safari will decompress the archives almost instantaneously while even an internet enabled disk image requires quite lengthy processing with the mounting, copying and unmounting that has to be done. You can even see the mounted image while this happens which can easily lead to unintended confusion as well.</p>
<p>I guess this is the price we have to pay for Apple choosing the very 'compatible'  zip format for us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simone Manganelli</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47127</link>
		<dc:creator>Simone Manganelli</dc:creator>
		<pubDate>Sun, 13 May 2007 21:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47127</guid>
		<description>&lt;a href="http://c-command.com/dropdmg/" rel="nofollow"&gt;DropDMG&lt;/a&gt; is a nice piece of software that'll make an internet-enabled disk image from a folder, but it costs $20 and isn't a contextual menu item.  But it's worth mentioning anyway.</description>
		<content:encoded><![CDATA[<p><a href="http://c-command.com/dropdmg/" rel="nofollow">DropDMG</a> is a nice piece of software that'll make an internet-enabled disk image from a folder, but it costs $20 and isn't a contextual menu item.  But it's worth mentioning anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hosey</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47121</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Sun, 13 May 2007 19:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47121</guid>
		<description>How don't they work properly in other browsers? (Aside from being just like non-internet-enabled images.)</description>
		<content:encoded><![CDATA[<p>How don't they work properly in other browsers? (Aside from being just like non-internet-enabled images.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Smith</title>
		<link>http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47120</link>
		<dc:creator>David Smith</dc:creator>
		<pubDate>Sun, 13 May 2007 19:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://boredzo.org/blog/archives/2007-05-13/disk-images-suck-an-examination-of-why-and-of-the-alternatives#comment-47120</guid>
		<description>Internet Enabled disk images also don't work properly in all browsers, which can be a bit awkward (my parents, for example, are Camino users).</description>
		<content:encoded><![CDATA[<p>Internet Enabled disk images also don't work properly in all browsers, which can be a bit awkward (my parents, for example, are Camino users).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.221 seconds -->
