<?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: How to split DMG into segments</title>
	<atom:link href="http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments/feed" rel="self" type="application/rss+xml" />
	<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments</link>
	<description>Flash technology blog</description>
	<pubDate>Fri, 29 Aug 2008 05:20:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Danijel</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-170</link>
		<dc:creator>Danijel</dc:creator>
		<pubDate>Wed, 04 Jun 2008 00:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-170</guid>
		<description>thnx for the help man, now i know that the terminal is way better and stable then other shitty apps, thnx alot for the help ^^</description>
		<content:encoded><![CDATA[<p>thnx for the help man, now i know that the terminal is way better and stable then other shitty apps, thnx alot for the help ^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ain Tohvri</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-100</link>
		<dc:creator>Ain Tohvri</dc:creator>
		<pubDate>Fri, 01 Feb 2008 09:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-100</guid>
		<description>Try converting your read/write UDRW image to read-only UDCO with &lt;code&gt;-format UDCO&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Try converting your read/write UDRW image to read-only UDCO with <code>-format UDCO</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-99</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 31 Jan 2008 17:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-99</guid>
		<description>This does not work, I get the following message:

hdiutil: segment: format UDRW not recognized
hdiutil: segment failed - Operation not supported

So wtf is wrong?</description>
		<content:encoded><![CDATA[<p>This does not work, I get the following message:</p>
<p>hdiutil: segment: format UDRW not recognized<br />
hdiutil: segment failed - Operation not supported</p>
<p>So wtf is wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt White</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-40</link>
		<dc:creator>Matt White</dc:creator>
		<pubDate>Tue, 13 Nov 2007 01:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-40</guid>
		<description>You can get a more detailed description by typing the following in Terminal

man hdiutil</description>
		<content:encoded><![CDATA[<p>You can get a more detailed description by typing the following in Terminal</p>
<p>man hdiutil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Perry</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-20</link>
		<dc:creator>Scott Perry</dc:creator>
		<pubDate>Sun, 04 Nov 2007 21:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-20</guid>
		<description>using -segmentCount  will save some of the more OCD people some internal struggle, splitting a disk image into num equally-sized segments.</description>
		<content:encoded><![CDATA[<p>using -segmentCount  will save some of the more OCD people some internal struggle, splitting a disk image into num equally-sized segments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ain Tohvri</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-9</link>
		<dc:creator>Ain Tohvri</dc:creator>
		<pubDate>Thu, 18 Oct 2007 23:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-9</guid>
		<description>It does not directly answer your question but if you'd like to password-protect your image with hdiutil you may want to try 2 additional options which are &lt;code&gt;-encryption&lt;/code&gt; and &lt;code&gt;-stdinpass&lt;/code&gt;. 
The latter will read the password from standard input so you'll be asked for it. 
&lt;code&gt;-encryption&lt;/code&gt; is required to force the encryption (defaults to CEncryptedEncoding that utilizes the AES cipher with a 128 bit key).

So for the above sample the command would be
&lt;code&gt;hdiutil segment -o mydvd -segmentSize 100M -encryption -stdinpass /Users/[your Mac username]/Desktop/dvdimage.dmg&lt;/code&gt; </description>
		<content:encoded><![CDATA[<p>It does not directly answer your question but if you&#8217;d like to password-protect your image with hdiutil you may want to try 2 additional options which are <code>-encryption</code> and <code>-stdinpass</code>.<br />
The latter will read the password from standard input so you&#8217;ll be asked for it.<br />
<code>-encryption</code> is required to force the encryption (defaults to CEncryptedEncoding that utilizes the AES cipher with a 128 bit key).</p>
<p>So for the above sample the command would be<br />
<code>hdiutil segment -o mydvd -segmentSize 100M -encryption -stdinpass /Users/[your Mac username]/Desktop/dvdimage.dmg</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wendy</title>
		<link>http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-8</link>
		<dc:creator>Wendy</dc:creator>
		<pubDate>Thu, 18 Oct 2007 11:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments#comment-8</guid>
		<description>I've tried to type "hdiutil help" and gotten a long details of "hdiutil" methods. This is wonderful. How can you find out this things? It's amazing. ^-^

By the way, do you know how to use "hdiutil chpass"?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried to type &#8220;hdiutil help&#8221; and gotten a long details of &#8220;hdiutil&#8221; methods. This is wonderful. How can you find out this things? It&#8217;s amazing. ^-^</p>
<p>By the way, do you know how to use &#8220;hdiutil chpass&#8221;?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
