<?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: Corrupt download caused installation to hang, unzip lessons learned</title>
	<atom:link href="http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/</link>
	<description></description>
	<lastBuildDate>Fri, 28 Oct 2011 11:10:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Dan Norris</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2907</link>
		<dc:creator>Dan Norris</dc:creator>
		<pubDate>Fri, 05 Sep 2008 23:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2907</guid>
		<description>Good tips. I am pretty sure I&#039;ll remember unzip -q before I&#039;ll remember &lt;br&gt;to check the exit code. Weird how I usually remember to check $? in a &lt;br&gt;script, but never do it interactively.&lt;br&gt;&lt;br&gt;Thanks for the ideas!</description>
		<content:encoded><![CDATA[<p>Good tips. I am pretty sure I&#39;ll remember unzip -q before I&#39;ll remember <br />to check the exit code. Weird how I usually remember to check $? in a <br />script, but never do it interactively.</p>
<p>Thanks for the ideas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: markie_mark</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2906</link>
		<dc:creator>markie_mark</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2906</guid>
		<description>Ah yeah - and a general good practice is to check the error code of the command you last ran (especially for important steps!).&lt;br&gt;&lt;br&gt;$ echo $?&lt;br&gt;&lt;br&gt;Will return the exit status of the last command - generally &#039;0&#039; implies a successful execution - consulting the man page for most commands will give a detailed description of the exit status meanings:&lt;br&gt;&lt;br&gt;DIAGNOSTICS&lt;br&gt;       The exit status (or error level) approximates the exit codes defined by PKWARE and takes on the following values, except under VMS:&lt;br&gt;&lt;br&gt;              0      normal; no errors or warnings detected.&lt;br&gt;&lt;br&gt;              1      one  or  more  warning errors were encountered, but processing completed successfully anyway.  This includes zipfiles where one or more files was skipped due to unsupported compression&lt;br&gt;                     method or encryption with an unknown password.&lt;br&gt;&lt;br&gt;HTH&lt;br&gt;&lt;br&gt;Mark</description>
		<content:encoded><![CDATA[<p>Ah yeah &#8211; and a general good practice is to check the error code of the command you last ran (especially for important steps!).</p>
<p>$ echo $?</p>
<p>Will return the exit status of the last command &#8211; generally &#39;0&#39; implies a successful execution &#8211; consulting the man page for most commands will give a detailed description of the exit status meanings:</p>
<p>DIAGNOSTICS<br />       The exit status (or error level) approximates the exit codes defined by PKWARE and takes on the following values, except under VMS:</p>
<p>              0      normal; no errors or warnings detected.</p>
<p>              1      one  or  more  warning errors were encountered, but processing completed successfully anyway.  This includes zipfiles where one or more files was skipped due to unsupported compression<br />                     method or encryption with an unknown password.</p>
<p>HTH</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: markie_mark</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2908</link>
		<dc:creator>markie_mark</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2908</guid>
		<description>Another &quot;gotya&quot; of this nature is with tar files, especially with the non-GNU versions of tar, some of which have limitations with the length of basename and filename - resulting in tar spitting out files which are not usable - this is especially prevalent in older traditional unix systems (Solaris etc.).  The problem is reported however because most people execute tar with the verbose flag that there is so much output you don&#039;t notice the errors - $ tar xfv mark.tar.   If you drop the verbose flag - only errors and the tar summary are printed.  &lt;br&gt;&lt;br&gt;The resolution to opening tar files with long pathname is to install and use the GNU version of tar (often called gtar) and use it when manually creating and extracting tar files (Note: do not replace the system tar - it&#039;s used by pkginfo).&lt;br&gt;&lt;br&gt;HTH</description>
		<content:encoded><![CDATA[<p>Another &#8220;gotya&#8221; of this nature is with tar files, especially with the non-GNU versions of tar, some of which have limitations with the length of basename and filename &#8211; resulting in tar spitting out files which are not usable &#8211; this is especially prevalent in older traditional unix systems (Solaris etc.).  The problem is reported however because most people execute tar with the verbose flag that there is so much output you don&#39;t notice the errors &#8211; $ tar xfv mark.tar.   If you drop the verbose flag &#8211; only errors and the tar summary are printed.  </p>
<p>The resolution to opening tar files with long pathname is to install and use the GNU version of tar (often called gtar) and use it when manually creating and extracting tar files (Note: do not replace the system tar &#8211; it&#39;s used by pkginfo).</p>
<p>HTH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Norris</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2167</link>
		<dc:creator>Dan Norris</dc:creator>
		<pubDate>Fri, 05 Sep 2008 16:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2167</guid>
		<description>Good tips. I am pretty sure I&#039;ll remember unzip -q before I&#039;ll remember &lt;br&gt;to check the exit code. Weird how I usually remember to check $? in a &lt;br&gt;script, but never do it interactively.&lt;br&gt;&lt;br&gt;Thanks for the ideas!</description>
		<content:encoded><![CDATA[<p>Good tips. I am pretty sure I&#39;ll remember unzip -q before I&#39;ll remember <br />to check the exit code. Weird how I usually remember to check $? in a <br />script, but never do it interactively.</p>
<p>Thanks for the ideas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: markie_mark</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2162</link>
		<dc:creator>markie_mark</dc:creator>
		<pubDate>Fri, 05 Sep 2008 12:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2162</guid>
		<description>Ah yeah - and a general good practice is to check the error code of the command you last ran (especially for important steps!).&lt;br&gt;&lt;br&gt;$ echo $?&lt;br&gt;&lt;br&gt;Will return the exit status of the last command - generally &#039;0&#039; implies a successful execution - consulting the man page for most commands will give a detailed description of the exit status meanings:&lt;br&gt;&lt;br&gt;DIAGNOSTICS&lt;br&gt;       The exit status (or error level) approximates the exit codes defined by PKWARE and takes on the following values, except under VMS:&lt;br&gt;&lt;br&gt;              0      normal; no errors or warnings detected.&lt;br&gt;&lt;br&gt;              1      one  or  more  warning errors were encountered, but processing completed successfully anyway.  This includes zipfiles where one or more files was skipped due to unsupported compression&lt;br&gt;                     method or encryption with an unknown password.&lt;br&gt;&lt;br&gt;HTH&lt;br&gt;&lt;br&gt;Mark</description>
		<content:encoded><![CDATA[<p>Ah yeah &#8211; and a general good practice is to check the error code of the command you last ran (especially for important steps!).</p>
<p>$ echo $?</p>
<p>Will return the exit status of the last command &#8211; generally &#39;0&#39; implies a successful execution &#8211; consulting the man page for most commands will give a detailed description of the exit status meanings:</p>
<p>DIAGNOSTICS<br />       The exit status (or error level) approximates the exit codes defined by PKWARE and takes on the following values, except under VMS:</p>
<p>              0      normal; no errors or warnings detected.</p>
<p>              1      one  or  more  warning errors were encountered, but processing completed successfully anyway.  This includes zipfiles where one or more files was skipped due to unsupported compression<br />                     method or encryption with an unknown password.</p>
<p>HTH</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: markie_mark</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2161</link>
		<dc:creator>markie_mark</dc:creator>
		<pubDate>Fri, 05 Sep 2008 12:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2161</guid>
		<description>Another &quot;gotya&quot; of this nature is with tar files, especially with the non-GNU versions of tar, some of which have limitations with the length of basename and filename - resulting in tar spitting out files which are not usable - this is especially prevalent in older traditional unix systems (Solaris etc.).  The problem is reported however because most people execute tar with the verbose flag that there is so much output you don&#039;t notice the errors - $ tar xfv mark.tar.   If you drop the verbose flag - only errors and the tar summary are printed.  &lt;br&gt;&lt;br&gt;The resolution to opening tar files with long pathname is to install and use the GNU version of tar (often called gtar) and use it when manually creating and extracting tar files (Note: do not replace the system tar - it&#039;s used by pkginfo).&lt;br&gt;&lt;br&gt;HTH</description>
		<content:encoded><![CDATA[<p>Another &#8220;gotya&#8221; of this nature is with tar files, especially with the non-GNU versions of tar, some of which have limitations with the length of basename and filename &#8211; resulting in tar spitting out files which are not usable &#8211; this is especially prevalent in older traditional unix systems (Solaris etc.).  The problem is reported however because most people execute tar with the verbose flag that there is so much output you don&#39;t notice the errors &#8211; $ tar xfv mark.tar.   If you drop the verbose flag &#8211; only errors and the tar summary are printed.  </p>
<p>The resolution to opening tar files with long pathname is to install and use the GNU version of tar (often called gtar) and use it when manually creating and extracting tar files (Note: do not replace the system tar &#8211; it&#39;s used by pkginfo).</p>
<p>HTH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2129</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Thu, 28 Aug 2008 18:22:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2129</guid>
		<description>Useful tip.  I&#039;ve now started using the -q flag most of the time when I do an unzip.  Thanks!</description>
		<content:encoded><![CDATA[<p>Useful tip.  I&#39;ve now started using the -q flag most of the time when I do an unzip.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Norris</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2126</link>
		<dc:creator>Dan Norris</dc:creator>
		<pubDate>Thu, 28 Aug 2008 11:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2126</guid>
		<description>I hadn&#039;t checked the certification matrix on that, but I am rarely &lt;br&gt;seeing 3rd party clusterware being used these days (maybe it&#039;s just me), &lt;br&gt;so I haven&#039;t had a need to look it up. Thanks for the tip.</description>
		<content:encoded><![CDATA[<p>I hadn&#39;t checked the certification matrix on that, but I am rarely <br />seeing 3rd party clusterware being used these days (maybe it&#39;s just me), <br />so I haven&#39;t had a need to look it up. Thanks for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miles Anderson</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2125</link>
		<dc:creator>Miles Anderson</dc:creator>
		<pubDate>Thu, 28 Aug 2008 11:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2125</guid>
		<description>Dan,&lt;br&gt;&lt;br&gt;Thanks for clearing up this issue with Clusterware and Oracle.  Just so you know Oracle RAC with RHEL-5 OS is only certified with Oracle Clusterware.&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Miles</description>
		<content:encoded><![CDATA[<p>Dan,</p>
<p>Thanks for clearing up this issue with Clusterware and Oracle.  Just so you know Oracle RAC with RHEL-5 OS is only certified with Oracle Clusterware.</p>
<p>Thanks,<br />Miles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Norris</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2128</link>
		<dc:creator>Dan Norris</dc:creator>
		<pubDate>Wed, 27 Aug 2008 11:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2128</guid>
		<description>It sure could have, but this .zip file had been successfully been used &lt;br&gt;previously on other computers, so it was presumed to be &quot;good&quot; and there &lt;br&gt;was no reason to go through the extra checking step at this point. The &lt;br&gt;issue must have been when the .zip was copied from the shared drive to &lt;br&gt;my local machine--somehow a corruption was introduced during that copy. &lt;br&gt;Good tip, though--it&#039;ll definitely be on my list for troubleshooting if &lt;br&gt;this happens again!</description>
		<content:encoded><![CDATA[<p>It sure could have, but this .zip file had been successfully been used <br />previously on other computers, so it was presumed to be &#8220;good&#8221; and there <br />was no reason to go through the extra checking step at this point. The <br />issue must have been when the .zip was copied from the shared drive to <br />my local machine&#8211;somehow a corruption was introduced during that copy. <br />Good tip, though&#8211;it&#39;ll definitely be on my list for troubleshooting if <br />this happens again!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

