<?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/"
		>
<channel>
	<title>Comments on: Slipstreaming Windows XP with Service Pack 3 in Linux</title>
	<atom:link href="http://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/</link>
	<description></description>
	<lastBuildDate>Sun, 05 Sep 2010 12:55:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Tom</title>
		<link>https://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/comment-page-1/#comment-5889</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 16 May 2010 11:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyvisser.wordpress.com/?p=657#comment-5889</guid>
		<description>To ensure you&#039;ve got all uppercase characters you could use the following command in the xp folder after slipstreaming SP3:

&lt;code&gt;for i in `find * -depth`; do (mv $i `echo $i&#124;tr [:lower:] [:upper:]`); done&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>To ensure you&#8217;ve got all uppercase characters you could use the following command in the xp folder after slipstreaming SP3:</p>
<p><code>for i in `find * -depth`; do (mv $i `echo $i|tr [:lower:] [:upper:]`); done</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Karcher</title>
		<link>https://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/comment-page-1/#comment-4783</link>
		<dc:creator>Michael Karcher</dc:creator>
		<pubDate>Tue, 22 Dec 2009 09:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyvisser.wordpress.com/?p=657#comment-4783</guid>
		<description>Thanks you very much for this post. Thanks especially to Josh too for mentioning the &lt;code&gt;-D&lt;/code&gt; switch! The &lt;code&gt;-N&lt;/code&gt; switch is not needed, if the &lt;code&gt;--max-iso-filenams&lt;/code&gt; switch works, as this switch includes &lt;code&gt;-N&lt;/code&gt;. But at least in recent versions of genisoimage, the switch &lt;code&gt;-c&lt;/code&gt; takes an argument - the file name of the boot catalog. If &lt;code&gt;--max-iso-filenames&lt;/code&gt; directly follows &lt;code&gt;-c&lt;/code&gt;, it is read as the name of the boot catalog instead of applied as switch.

I used this command line with success (after using &lt;code&gt;geteltorito&lt;/code&gt; to copy the boot image to &lt;code&gt;BOOT.BIN&lt;/code&gt; in the root directory of the CD contents):

&lt;blockquote&gt;&lt;code&gt;genisoimage -b BOOT.BIN -no-emul-boot -c BOOT.CAT -D --max-iso9660-filenames -relaxed-filenames -o /var/tmp/newimage.iso .&lt;/code&gt;&lt;/blockquote&gt;

</description>
		<content:encoded><![CDATA[<p>Thanks you very much for this post. Thanks especially to Josh too for mentioning the <code>-D</code> switch! The <code>-N</code> switch is not needed, if the <code>--max-iso-filenams</code> switch works, as this switch includes <code>-N</code>. But at least in recent versions of genisoimage, the switch <code>-c</code> takes an argument &#8211; the file name of the boot catalog. If <code>--max-iso-filenames</code> directly follows <code>-c</code>, it is read as the name of the boot catalog instead of applied as switch.</p>
<p>I used this command line with success (after using <code>geteltorito</code> to copy the boot image to <code>BOOT.BIN</code> in the root directory of the CD contents):</p>
<blockquote><p><code>genisoimage -b BOOT.BIN -no-emul-boot -c BOOT.CAT -D --max-iso9660-filenames -relaxed-filenames -o /var/tmp/newimage.iso .</code></p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott (srcbin)</title>
		<link>https://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/comment-page-1/#comment-4474</link>
		<dc:creator>Scott (srcbin)</dc:creator>
		<pubDate>Mon, 21 Sep 2009 04:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyvisser.wordpress.com/?p=657#comment-4474</guid>
		<description>Oops, I also had to enable Joliet extensions (-J) because I had a file that wasn&#039;t being seen -- I386/DriverLanguageMap.xml</description>
		<content:encoded><![CDATA[<p>Oops, I also had to enable Joliet extensions (-J) because I had a file that wasn&#8217;t being seen &#8212; I386/DriverLanguageMap.xml</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>https://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/comment-page-1/#comment-4472</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Mon, 21 Sep 2009 01:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyvisser.wordpress.com/?p=657#comment-4472</guid>
		<description>You&#039;re right about &lt;code&gt;geteltorito&lt;/code&gt; -- looks like it is shipped with &lt;code&gt;genisoimage&lt;/code&gt;. Thanks for the tip -- I will update the article.</description>
		<content:encoded><![CDATA[<p>You&#8217;re right about <code>geteltorito</code> &#8212; looks like it is shipped with <code>genisoimage</code>. Thanks for the tip &#8212; I will update the article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott (srcbin)</title>
		<link>https://jeremy.visser.name/2008/07/12/slipstreaming-windows-xp-with-service-pack-3-in-linux/comment-page-1/#comment-4471</link>
		<dc:creator>Scott (srcbin)</dc:creator>
		<pubDate>Mon, 21 Sep 2009 01:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyvisser.wordpress.com/?p=657#comment-4471</guid>
		<description>I also had to add the -N option, thanks Jeremiah.  Possibly because of a later Rev of genisoimage.  I&#039;m using Ubuntu 9.04.

You can remove bbie and wine and replace it with Linux:  geteltorito -o bootsect.img /dev/cdrom

Sweet...</description>
		<content:encoded><![CDATA[<p>I also had to add the -N option, thanks Jeremiah.  Possibly because of a later Rev of genisoimage.  I&#8217;m using Ubuntu 9.04.</p>
<p>You can remove bbie and wine and replace it with Linux:  geteltorito -o bootsect.img /dev/cdrom</p>
<p>Sweet&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
