<?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>huanix &#187; Dell rescue</title>
	<atom:link href="http://www.huanix.com/category/dell-rescue/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.huanix.com</link>
	<description>chown -R huanix /</description>
	<lastBuildDate>Sat, 03 Apr 2010 15:29:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Creating a Dell partition with Ubuntu to reinstall Windows on a new or blank hard drive with the recovery disk</title>
		<link>http://www.huanix.com/2009/12/10/creating-a-dell-partition-with-ubuntu-to-reinstall-windows-on-a-new-or-blank-hard-drive-with-the-recovery-disk/</link>
		<comments>http://www.huanix.com/2009/12/10/creating-a-dell-partition-with-ubuntu-to-reinstall-windows-on-a-new-or-blank-hard-drive-with-the-recovery-disk/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 05:44:57 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Dell rescue]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=362</guid>
		<description><![CDATA[Here's the scenario: You have a Dell and you have somehow lost and/or destroyed the hard drive with Windows on it and you need to reinstall Windows. I think there are various solutions that require downloading and or purchasing tools, but I've been able to use fdisk under Ubuntu linux to create this partition quickly and easily!]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the scenario: You have a Dell and you have somehow lost and/or destroyed the hard drive with Windows on it and you need to reinstall Windows. I think there are various solutions that require downloading and or purchasing tools, but I&#8217;ve been able to use fdisk under Ubuntu linux to create this partition quickly and easily!</p>
<p>When you restore a Dell computer with a restore disk it may give the error:</p>
<p>Windows could not start becuase of a computer disk hardware configuration problem.<br />
Could not read from the selected boot disk. Check boot path and disk hardware.<br />
Please check the Windows documentation about hardware disk configuration and your hardware reference manuals for additional information.</p>
<p>The Dell expected to find a special Dell Partition at the beginning of the hard drive, and a newly formatted drive will not have this partition.</p>
<p>The process for creating this partition really is simple &#8211; I&#8217;m going to give a simple overview, and then more detailed instructions. The key here is not to overthink things. The GOOD news is, if you&#8217;re starting with a blank hard drive, you have nothing to lose!</p>
<p><span style="text-decoration: underline;">Simple Overview</span></p>
<p>(If you are familiar with booting into a live linux environment and fdisk, this should be all you need!)</p>
<ol>
<li>delete the existing partition table</li>
<li>create a new dell partiton spanning the first 7 cylinders. (1-7)</li>
<li>create a second partition for windows spanning the rest of the drive. (8-default max)</li>
<li>set the first partition to type &#8220;de&#8221; (dell partition)</li>
<li>set the second partiton to type 7 (NTFS)</li>
<li>write the changes</li>
<li>exit, and install windows</li>
</ol>
<p><span style="text-decoration: underline;">Detailed process</span> (all command line language is in <em>italics</em>)</p>
<ol>
<li>Download an <a href="http://www.ubuntu.com/GetUbuntu/download">Ubuntu Desktop CD</a></li>
<li>Boot with the CD</li>
<li> F12 is the &#8220;one time boot menu on my computer; choose CD/DVD Drive &#8211; if this doesn&#8217;t work for you, enter BIOS and change the first boot device to the CD drive.</li>
<li> When the CD menu opens choose your language</li>
<li> Select &#8220;Try Ubuntu without any change to your computer&#8221;</li>
<li>Wait a minute while the CD loads. When it is done, you will see an ubuntu desktop.</li>
<li> Choose Applications &gt; Accessories &gt; Terminal</li>
<li> At the command line type: <em>sudo bash</em> (any linux nerd will tell you this can lead to trouble &#8211; we need to become the root user so we can modify the partition table)</li>
<li> <em>fdisk -l</em> (this tells fdisk to list your partitions. note the name under &#8220;Device&#8221; that you want to work with)</li>
<li> The target device will look something like &#8220;/dev/sd?&#8221;, where &#8220;?&#8221; represents a letter of the alphabet)</li>
<li> <em>fdisk /dev/sda</em> (instead of &#8220;/dev/sda&#8221;, use the correct name of the device listed in fdisk -l; do NOT add the number at the end of the device)</li>
<li> You are now in the fdisk utility. My instructions cannot fit every case perfectly, so you may need to improvise, but it&#8217;s easy. Type <em>m</em> if you need some guidance in fdisk. Protip: None of the changes you make will be written until you choose to write them. If you quit without writing, no changes (damage) will be done!</li>
<li> d (delete the existing partition table)</li>
<li>If you have multiple partitions you will be asked which one to delete. Delete them all one at a time. IF you only have one, it will automatically select it. Continue when you can type  <em>fdisk -l</em> and see a blank partition table.</li>
<li>Time to create the dell partition:<br />
Type <strong><em>n </em></strong>to create a new parition.<br />
Type <em><strong>p</strong> </em>to make this a primary partition.<br />
Type <em><strong>1 </strong></em>to make it the first partition.<br />
Type  <em><strong>1</strong></em> to make the paritition start at the first cylinder.<br />
Type  <em><strong>7</strong></em> to end the partition at cylinder 7.</li>
<li>Now we label the partition as a Dell partition:<br />
Type <strong><em>t</em></strong> to change the type of the partition.<br />
Type<em><strong> de</strong></em> to change the partition to type Dell.</li>
<li>Time to create the Windows partition:<br />
Type <strong><em>n </em></strong>to create a new parition.<br />
Type <em><strong>p</strong> </em>to make this a primary partition.<br />
Type <em><strong>2 </strong></em>to make it the second partition.<br />
Type  <em><strong>8 </strong></em>to make the paritition start at the first cylinder.<br />
Press <em><strong>Enter</strong></em> to end the partition at the last available cylinder of the hard drive.</li>
<li>Now we label the partition as a NTFS partition:<br />
Type <strong><em>t</em></strong> to change the type of the partition.<br />
Type <em><strong>2</strong></em> to select the second partition.<br />
Type<em><strong> 7</strong></em> to change the partition to type NTFS.</li>
<li>Now all you have to do is press <strong>w</strong> to write your changes and exit. If you do not write your changes before you exit, you will probably spend a long time trying to figure out why things didn&#8217;t work.</li>
<li>I always run <strong><em>fdisk -l</em></strong> one last time before I exit the command line to make sure I did everything right!</li>
<li>Shut down the computer.</li>
<li>Reboot the computer using the Dell Rescue CD and install windows.</li>
</ol>
<p>If you try this and it doesn&#8217;t work the first time, I suggest retrying. One common mistake is to run fdisk on /dev/sda1 (<span style="color: #ff0000;">wrong</span>) rather than /dev/sda (<span style="color: #339966;">right!</span>). Be sure you&#8217;re fdisking the correct volume! I have also talked to people that exit fdisk without writing the changes. If you exit without writing, it was just a dry run &#8211; nothing happened!</p>
<p>I am attaching some sequential screenshots &#8211; they are not complete, but they may help you understand the process if you&#8217;re having difficulty!</p>
<p><a href="http://www.huanix.com/wp-content/uploads/2009/12/fdisk.png"><img class="alignnone size-medium wp-image-363" title="fdisk" src="http://www.huanix.com/wp-content/uploads/2009/12/fdisk-300x203.png" alt="fdisk" width="300" height="203" /></a><a href="http://www.huanix.com/wp-content/uploads/2009/12/create_new_fdisk.png"><img class="alignnone size-medium wp-image-364" title="create_new_fdisk" src="http://www.huanix.com/wp-content/uploads/2009/12/create_new_fdisk-300x225.png" alt="create_new_fdisk" width="300" height="225" /></a><a href="http://www.huanix.com/wp-content/uploads/2009/12/writing-new-partitions-fdisk.png"><img class="alignnone size-medium wp-image-365" title="writing new partitions fdisk" src="http://www.huanix.com/wp-content/uploads/2009/12/writing-new-partitions-fdisk-300x225.png" alt="writing new partitions fdisk" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2009/12/10/creating-a-dell-partition-with-ubuntu-to-reinstall-windows-on-a-new-or-blank-hard-drive-with-the-recovery-disk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
