<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>IT Tech &#187; OS</title>
	<atom:link href="http://ittech.wordpress.com/category/os/feed/" rel="self" type="application/rss+xml" />
	<link>http://ittech.wordpress.com</link>
	<description>Technology blog</description>
	<lastBuildDate>Sat, 11 Nov 2006 05:42:46 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ittech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1336b9ac584c3ab99c5f765d27824d6f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>IT Tech &#187; OS</title>
		<link>http://ittech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ittech.wordpress.com/osd.xml" title="IT Tech" />
		<item>
		<title>Dual Boot Windows and Linux: Single and Multiple Hard Drives</title>
		<link>http://ittech.wordpress.com/2006/11/03/dual-boot-windows-and-linux-single-and-multiple-hard-drives/</link>
		<comments>http://ittech.wordpress.com/2006/11/03/dual-boot-windows-and-linux-single-and-multiple-hard-drives/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 13:25:10 +0000</pubDate>
		<dc:creator>ittech</dc:creator>
				<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://ittech.wordpress.com/2006/11/03/dual-boot-windows-and-linux-single-and-multiple-hard-drives/</guid>
		<description><![CDATA[The internet is full of technical articles, many of which are way too  complicated for the average computer user who just wants to solve a simple  problem. If you pay close attention, the internet is also a place where the  “gurus” spend a lot of time yelling for help in discussion boards [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittech.wordpress.com&blog=516704&post=9&subd=ittech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The internet is full of technical articles, many of which are way too  complicated for the average computer user who just wants to solve a simple  problem. If you pay close attention, the internet is also a place where the  “gurus” spend a lot of time yelling for help in discussion boards and forums. So  don’t feel bad, nobody has all the answers.</p>
<p>So you want to dual boot  Windows and Linux on the same computer—it is really quite easy. I only have  enough room here to tell you the most common way to do this on a single hard  drive or using multiple hard drives. Obviously then, there are many ways to get  the job done, but there are some critical things you should know. Let’s start  with some critical information.</p>
<p><strong>Windows and Linux: Same Hard  Drive</strong><br />
The windows operating system MUST occupy the master boot record  (MBR). Linux, on the other hand does not have to. In this scenario, you must  install windows first! After Windows has been successfully installed, then you  can install Linux. This is critical! The Linux “boot loader” is called GRUB.  When you install Linux—MAKE SURE YOU DO NOT INSTALL THE LINUX BOOT LOADER TO THE  MBR.</p>
<p>Configure the Windows Boot Loader: A Two Step Process<br />
It is also  possible to use GRUB to dual boot Windows and Linux on the same drive but this  is a bit more complex—the Windows boot loader will get the job done. In the  following commands, you will create a copy of the Linux boot sector and then  save it in a file in the top level directory under Windows (C:\).</p>
<p>Step 1:  Linux<br />
From the shell in your Linux installation (boot from your installation  disks):<br />
Execute the following shell command, replacing /dev/hda3 with the  location of your Linux boot partition.</p>
<p>shell# dd if=/dev/hda3  of=/bootsect.lnx bs=512 count=1</p>
<p>Copy the new file—bootsect.lnx—to a  floppy disk and reboot to Windows.</p>
<p>Step 2: Windows<br />
Copy bootsect.lnx  to C:\ in Windows. Then execute the following command at the DOS  prompt.</p>
<p>C:\&gt; attrib -H -R -S \boot.ini</p>
<p>Edit boot.ini so that  the first two lines are:</p>
<p>[boot loader]<br />
timeout=30</p>
<p>After the  last line, add:</p>
<p>c:\bootsect.lnx=“Start Linux”</p>
<p>That’s it, you are  done! Reboot your machine and you will see a menu allowing you to select either  Windows or Linux. Congratulations.</p>
<p><strong>Windows and Linux: Two Hard  Drives</strong><br />
This is also quite easy. In this case, you will boot to the Linux  drive. We will add Windows to the Linux boot loader (i.e., GRUB). GRUB is my  favorite boot loader.</p>
<p>Edit the /boot/grub/grub.conf file. One of the very  first lines should contain:</p>
<p>timeout=30</p>
<p>After the last line  add:</p>
<p>title Start Windows<br />
map (hd1) (hd0)<br />
map (hd0)  (hd1)<br />
rootnoverify (hd1,0)<br />
makeactive<br />
chainloader +1</p>
<p>Reboot your  machine to the Linux drive and you will see a menu allowing you to select  between Linux or Windows. Nice work!</p>
<p>This article is obviously short and  does not include any explanations of how these commands work. There are  variations on what I have shown here depending on your hardware setup, but I  believe that these are the most common and should get the job done nicely. I  would be happy to direct you to additional resources if this does not work for  you.</p>
<p>David Picella is a Family Nurse Practitioner and PhD Student at UW  Milwaukee who studies women&#8217;s health issues and NaProTechnology. He also writes  computer technical articles. You can find additional technical resources for  this article in the technology section at: <a href="http://www.majella.us/" target="_blank">http://www.majella.us</a>  <!-- ctxt_ad_partner = "5696117100"; ctxt_ad_section = "12224"; ctxt_ad_bg = ""; ctxt_ad_width = 468; ctxt_ad_height = 60; ctxt_ad_bc = "FFFFFF"; ctxt_ad_cc = "FFFFFF"; ctxt_ad_lc = "003399"; ctxt_ad_tc = "000000"; ctxt_ad_uc = "999999"; // --></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ittech.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ittech.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittech.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittech.wordpress.com&blog=516704&post=9&subd=ittech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ittech.wordpress.com/2006/11/03/dual-boot-windows-and-linux-single-and-multiple-hard-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2ee4d47aa1517c8587c1eb214057606f?s=96&#38;d=identicon" medium="image">
			<media:title type="html">ittech</media:title>
		</media:content>
	</item>
	</channel>
</rss>