<?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, 12 Feb 2010 01:55:10 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<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>
	<item>
		<title>By: Brian Bent</title>
		<link>http://www.dannorris.com/2008/08/22/corrupt-download-caused-installation-to-hang-unzip-lessons-learned/comment-page-1/#comment-2127</link>
		<dc:creator>Brian Bent</dc:creator>
		<pubDate>Tue, 26 Aug 2008 19:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2127</guid>
		<description>Dan,&lt;br&gt;Curious if a checksum of the zip file would have revealed a different number than what is listed on the OTN page.  Yeah I know it is after the fact, but another tool at hand to help us with those files we download from the Internet.&lt;br&gt;&lt;br&gt;Brian</description>
		<content:encoded><![CDATA[<p>Dan,<br />Curious if a checksum of the zip file would have revealed a different number than what is listed on the OTN page.  Yeah I know it is after the fact, but another tool at hand to help us with those files we download from the Internet.</p>
<p>Brian</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-2124</link>
		<dc:creator>Dan Norris</dc:creator>
		<pubDate>Tue, 26 Aug 2008 11:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2124</guid>
		<description>Hi Miles,&lt;br&gt;&lt;br&gt;No, I don&#039;t think so. Red Hat doesn&#039;t deliver any Oracle software with &lt;br&gt;any of its releases. Oracle Clusterware must be installed from the &lt;br&gt;Oracle Clusterware media (CD or .zip file or .cpio archives) after RHEL &lt;br&gt;is installed.&lt;br&gt;&lt;br&gt;In any case, you will *always* have to install Oracle Clusterware--even &lt;br&gt;if you do use a supported 3rd-party clusterware (I don&#039;t think RH&#039;s &lt;br&gt;clusterware is supported or necessary for RAC unless it&#039;s required for &lt;br&gt;RH&#039;s cluster filesystem--not sure on the support status of that). So, if &lt;br&gt;you were using, for example, Veritas Cluster Server or Veritas Storage &lt;br&gt;Foundation for Oracle RAC, you&#039;d install and configure that product and &lt;br&gt;then install Oracle Clusterware &quot;on top&quot; of it. Oracle Clusterware&#039;s &lt;br&gt;installation process will detect installed and supported 3rd party &lt;br&gt;clusterware and properly integrate with it as appropriate. If the 3rd &lt;br&gt;party clusterware is not supported, then Oracle Clusterware very likely &lt;br&gt;won&#039;t detect it which may lead to conflicts in the future if one &lt;br&gt;clusterware wants to evict a node and the other does not.&lt;br&gt;&lt;br&gt;Hope that clears it up.&lt;br&gt;&lt;br&gt;Dan</description>
		<content:encoded><![CDATA[<p>Hi Miles,</p>
<p>No, I don&#39;t think so. Red Hat doesn&#39;t deliver any Oracle software with <br />any of its releases. Oracle Clusterware must be installed from the <br />Oracle Clusterware media (CD or .zip file or .cpio archives) after RHEL <br />is installed.</p>
<p>In any case, you will *always* have to install Oracle Clusterware&#8211;even <br />if you do use a supported 3rd-party clusterware (I don&#39;t think RH&#39;s <br />clusterware is supported or necessary for RAC unless it&#39;s required for <br />RH&#39;s cluster filesystem&#8211;not sure on the support status of that). So, if <br />you were using, for example, Veritas Cluster Server or Veritas Storage <br />Foundation for Oracle RAC, you&#39;d install and configure that product and <br />then install Oracle Clusterware &#8220;on top&#8221; of it. Oracle Clusterware&#39;s <br />installation process will detect installed and supported 3rd party <br />clusterware and properly integrate with it as appropriate. If the 3rd <br />party clusterware is not supported, then Oracle Clusterware very likely <br />won&#39;t detect it which may lead to conflicts in the future if one <br />clusterware wants to evict a node and the other does not.</p>
<p>Hope that clears it up.</p>
<p>Dan</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-2123</link>
		<dc:creator>Miles Anderson</dc:creator>
		<pubDate>Tue, 26 Aug 2008 11:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannorris.com/?p=219#comment-2123</guid>
		<description>Dan,&lt;br&gt;&lt;br&gt;Just wanted to ask you a few questions concerning RAC.  Is the Clusterware that is delivered with Redhat V5 the same as Oracle Clusterware.  &lt;br&gt;If I already have the Clusterware that comes with Redhat V5 do I still need to install the Oracle Clusterware for RAC?  &lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Miles</description>
		<content:encoded><![CDATA[<p>Dan,</p>
<p>Just wanted to ask you a few questions concerning RAC.  Is the Clusterware that is delivered with Redhat V5 the same as Oracle Clusterware.  <br />If I already have the Clusterware that comes with Redhat V5 do I still need to install the Oracle Clusterware for RAC?  </p>
<p>Thanks,<br />Miles</p>
]]></content:encoded>
	</item>
</channel>
</rss>
