<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ersin Acar &#187; compaq</title>
	<atom:link href="http://ersinacar.com/tag/compaq/feed" rel="self" type="application/rss+xml" />
	<link>http://ersinacar.com</link>
	<description>PHP and Web Technologies Freak</description>
	<lastBuildDate>Fri, 06 Jan 2012 14:19:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Compaq ML and DL series CompaqSmartArray driver problem</title>
		<link>http://ersinacar.com/compaq-ml-and-dl-series-compaqsmartarray-driver-problem_157.html</link>
		<comments>http://ersinacar.com/compaq-ml-and-dl-series-compaqsmartarray-driver-problem_157.html#comments</comments>
		<pubDate>Fri, 03 Jul 2009 15:50:23 +0000</pubDate>
		<dc:creator>Ersin Acar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[compaq]]></category>
		<category><![CDATA[dl]]></category>
		<category><![CDATA[ml]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[smartarray]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=157</guid>
		<description><![CDATA[If you have problem with installation on compaq DL or ML servers (i have a ML370) with CompaqSmartArray Raid card, You can&#8217;t install ubuntu with normal way; you must use highway Ok here we go; 1st of all you need to make a custom CD ( You can use this one too http://skydisc.de/downloads/ubuntufeistysmartarray.iso) To create [...]]]></description>
			<content:encoded><![CDATA[<p>If you have problem with installation on compaq DL or ML servers (i have a ML370) with CompaqSmartArray Raid card, You can&#8217;t install ubuntu with normal way; you must use highway <img src='http://ersinacar.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Ok here we go;<br />
<span id="more-157"></span><br />
1st of all you need to make a custom CD ( You can use this one too <a href="http://skydisc.de/downloads/ubuntufeistysmartarray.iso">http://skydisc.de/downloads/ubuntufeistysmartarray.iso</a>)</p>
<p>To create the custom CD…..</p>
<p>Mount the install…</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>scd0 <span style="color: #000000; font-weight: bold;">/</span>cdrom</pre></div></div>

<p>Copy the CD.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>cd-image
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>cdrom<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>cd-image
<span style="color: #c20cb9; font-weight: bold;">cp</span> –r <span style="color: #000000; font-weight: bold;">/</span>cdrom<span style="color: #000000; font-weight: bold;">/</span>.disk <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>cd-image</pre></div></div>

<p>Extract the initrd.gz from the cd image</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> extract
<span style="color: #7a0874; font-weight: bold;">cd</span> extract
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">zcat</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>cd-image<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>initrd.gz <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cpio</span> <span style="color: #660033;">-i</span></pre></div></div>

<p>Delete the modules in sym53c8xx_2 directory</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">rm</span> –rf .<span style="color: #000000; font-weight: bold;">/</span>extract<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>2.6.20-<span style="color: #000000;">15</span>-generic<span style="color: #000000; font-weight: bold;">/</span>kernel<span style="color: #000000; font-weight: bold;">/</span>drivers<span style="color: #000000; font-weight: bold;">/</span>scsi<span style="color: #000000; font-weight: bold;">/</span>sym53c8xx_2</pre></div></div>

<p>Repack the modified files.</p>
<p>Cd back to to your extract directory</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cpio</span> <span style="color: #660033;">-o</span> <span style="color: #660033;">--format</span>=<span style="color: #ff0000;">'newc'</span> <span style="color: #000000; font-weight: bold;">|</span>   <span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #660033;">-9</span> <span style="color: #000000; font-weight: bold;">&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>initrd.gz.new</pre></div></div>

<p>Put the new file into our CD replacing the old one.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cp</span> ~<span style="color: #000000; font-weight: bold;">/</span>initrd.gz.new <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>cd-image<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>initrd.gz</pre></div></div>

<p>Now create the iso image.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #007800;">IMAGE</span>=custom.iso
<span style="color: #007800;">BUILD</span>=<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>cd-image<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
mkisofs <span style="color: #660033;">-r</span> <span style="color: #660033;">-V</span> <span style="color: #ff0000;">&quot;Custom Ubuntu Install CD&quot;</span> \
            <span style="color: #660033;">-cache-inodes</span> \
            <span style="color: #660033;">-J</span> <span style="color: #660033;">-l</span> <span style="color: #660033;">-b</span> isolinux<span style="color: #000000; font-weight: bold;">/</span>isolinux.bin \
            <span style="color: #660033;">-c</span> isolinux<span style="color: #000000; font-weight: bold;">/</span>boot.cat <span style="color: #660033;">-no-emul-boot</span> \
            <span style="color: #660033;">-boot-load-size</span> <span style="color: #000000;">4</span> <span style="color: #660033;">-boot-info-table</span> \
            <span style="color: #660033;">-o</span> <span style="color: #007800;">$IMAGE</span> <span style="color: #007800;">$BUILD</span></pre></div></div>

<p>Burn the image to CD and you should be able to install to your Compaq Smart Array controller.</p>
<p><strong>Installation</strong></p>
<p>1. Boot the install CD. At the splash screen hit [esc] to get the boot: prompt and enter: <strong>expert</strong> as the only option.</p>
<p>2. Do all the steps up to &#038; including &#8220;<strong>Install the Base System</strong>&#8221;</p>
<p>3. After installing the Base System, hit <strong>Alt-F2</strong> and enter the console.</p>
<p>4. type: </p>
<p>echo &#8220;cpqarray&#8221; >>/target/etc/mkinitramfs/modules<br />
*it can be<br />
echo &#8220;cpqarray&#8221; >>/target/misc/mkinitramfs/modules<br />
or<br />
echo &#8220;cpqarray&#8221; >>/target/etc/modules<br />
(You must find it out it can be diffrent by versions)<br />
- check to see which one your system is trying to use.</p>
<p>5. Exit the console. Press <strong>Alt+F1</strong> to return to the install.</p>
<p>6. Continue the installation steps as normal.</p>
<p><strong>Networking and Upgrade version after installation</strong><br />
You can check <a href="https://help.ubuntu.com/9.04/serverguide/C/network-configuration.html">this</a> page for network stuff<br />
you must check <a href="https://help.ubuntu.com/community/GutsyUpgrades">this</a> page for upgrading</p>
<p><strong>Don&#8217;t forget</strong><br />
Your old version&#8217;s /etc/apt/sources.list is wrong you must change it like this</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>old-releases.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span> feisty main restricted universe multiverse
deb http:<span style="color: #000000; font-weight: bold;">//</span>old-releases.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span> feisty-updates main restricted universe multiverse
deb http:<span style="color: #000000; font-weight: bold;">//</span>old-releases.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span> feisty-security main restricted universe multiverse
deb http:<span style="color: #000000; font-weight: bold;">//</span>old-releases.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span> feisty-backports main restricted universe multiverse
deb http:<span style="color: #000000; font-weight: bold;">//</span>old-releases.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span> feisty-backports main<span style="color: #000000; font-weight: bold;">/</span>debian-installer
deb-src http:<span style="color: #000000; font-weight: bold;">//</span>old-releases.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span> feisty-backports main restricted universe multiverse</pre></div></div>

<p>P.S. there is a bug about update-manager if you get an error until updating version you must<br />
change this file <strong>/var/lib/update-manager/meta-release</strong></p>
<p>herefore (on Feisty), edit /var/lib/update-manager/meta-relase and just replace all occurences of:</p>
<p>http://archive.ubuntu.com/ubuntu/dists/gutsy/</p>
<p>with</p>
<p>http://old-releases.ubuntu.com/ubuntu/dists/gutsy/</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/compaq-ml-and-dl-series-compaqsmartarray-driver-problem_157.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

