<?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: Reinstall Ubuntu Grub Bootloader After Windows Wipes it Out</title>
	<atom:link href="http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/</link>
	<description>Computer Help from your Friendly How-To Geek</description>
	<lastBuildDate>Tue, 24 Nov 2009 00:22:01 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: md imran</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-80081</link>
		<dc:creator>md imran</dc:creator>
		<pubDate>Mon, 16 Nov 2009 14:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-80081</guid>
		<description>Hi.
I have installed Ubuntu 9.04 as windows application long back using wubi.
Now when i restart my PC its giving the menu to select either windows or ubuntu.But when i cliked on ubuntu its giving the following error “Cannot find GRLDR”. Please tell me how to get out of this issue.Atleast how to get the ubuntu data backup.

when i tried 
sudo grub
find /boot/grub/stage1 its saying no file found.

Since Ubuntu is not installed in separate external partition i am unable to get the backup..</description>
		<content:encoded><![CDATA[<p>Hi.<br />
I have installed Ubuntu 9.04 as windows application long back using wubi.<br />
Now when i restart my PC its giving the menu to select either windows or ubuntu.But when i cliked on ubuntu its giving the following error “Cannot find GRLDR”. Please tell me how to get out of this issue.Atleast how to get the ubuntu data backup.</p>
<p>when i tried<br />
sudo grub<br />
find /boot/grub/stage1 its saying no file found.</p>
<p>Since Ubuntu is not installed in separate external partition i am unable to get the backup..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gal</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-80014</link>
		<dc:creator>gal</dc:creator>
		<pubDate>Sun, 15 Nov 2009 03:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-80014</guid>
		<description>Works like a charm. i&#039;m with opensuse and windows kept overwriting my MBR. thanks a lot</description>
		<content:encoded><![CDATA[<p>Works like a charm. i&#8217;m with opensuse and windows kept overwriting my MBR. thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mjt</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-76598</link>
		<dc:creator>mjt</dc:creator>
		<pubDate>Sun, 13 Sep 2009 15:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-76598</guid>
		<description>I failed to mention that if you ONLY want to restore the MBR itself,
then the &quot;dd&quot; command should be:

# dd of=/dev/hda if=mbr.bin bs=446 count=1

If you execute &quot;dd&quot; as I explained in my previous post, the 
partition table will be restored, in addition to the MBR. So,
if you&#039;ve done any partitioning during the Windows install,
you&#039;ll *not* want to execute &quot;dd&quot; as in:

# dd of=/dev/hda if=mbr.bin bs=512 count=1

I always recommend doing the partitioning in Linux BEFORE
you install Windows.

mjt – author, “Inside Linux”.</description>
		<content:encoded><![CDATA[<p>I failed to mention that if you ONLY want to restore the MBR itself,<br />
then the &#8220;dd&#8221; command should be:</p>
<p># dd of=/dev/hda if=mbr.bin bs=446 count=1</p>
<p>If you execute &#8220;dd&#8221; as I explained in my previous post, the<br />
partition table will be restored, in addition to the MBR. So,<br />
if you&#8217;ve done any partitioning during the Windows install,<br />
you&#8217;ll *not* want to execute &#8220;dd&#8221; as in:</p>
<p># dd of=/dev/hda if=mbr.bin bs=512 count=1</p>
<p>I always recommend doing the partitioning in Linux BEFORE<br />
you install Windows.</p>
<p>mjt – author, “Inside Linux”.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mjt</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-76597</link>
		<dc:creator>mjt</dc:creator>
		<pubDate>Sun, 13 Sep 2009 15:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-76597</guid>
		<description>The *best* solution for restoring the MBR after a Windows install
is to backup the MBR *before* the Windows install. The tried and
true method is to use the &quot;dd&quot; command on the Linux side. I&#039;ve
been doing this for years - saving the binary file to my gmail acct.

To backup the MBR, jump to a CLI and:
# dd if=/dev/hda of=mbr.bin bs=512 count=1

The result is a file (in this example), &quot;mbr.bin&quot; - save that off to
a safe place .... its size is 512 bytes. Ensure you have a Live CD
or original Linux install CD at hand. Also, the device name path
for the hard drive will need to be adjusted - for example, you might
have to specify &quot;if=/dev/sda&quot; instead of &quot;hda&quot;.

Do the Windows install - then to restore your saved binary image,
simply boot your Live CD or Linux install CD, jump to a CLI and:

# dd of=/dev/hda if=mbr.bin bs=512 count=1

Be sure you specify the fully-qualified path to &quot;mbr.bin&quot;

mjt - author, &quot;Inside Linux&quot;.</description>
		<content:encoded><![CDATA[<p>The *best* solution for restoring the MBR after a Windows install<br />
is to backup the MBR *before* the Windows install. The tried and<br />
true method is to use the &#8220;dd&#8221; command on the Linux side. I&#8217;ve<br />
been doing this for years &#8211; saving the binary file to my gmail acct.</p>
<p>To backup the MBR, jump to a CLI and:<br />
# dd if=/dev/hda of=mbr.bin bs=512 count=1</p>
<p>The result is a file (in this example), &#8220;mbr.bin&#8221; &#8211; save that off to<br />
a safe place &#8230;. its size is 512 bytes. Ensure you have a Live CD<br />
or original Linux install CD at hand. Also, the device name path<br />
for the hard drive will need to be adjusted &#8211; for example, you might<br />
have to specify &#8220;if=/dev/sda&#8221; instead of &#8220;hda&#8221;.</p>
<p>Do the Windows install &#8211; then to restore your saved binary image,<br />
simply boot your Live CD or Linux install CD, jump to a CLI and:</p>
<p># dd of=/dev/hda if=mbr.bin bs=512 count=1</p>
<p>Be sure you specify the fully-qualified path to &#8220;mbr.bin&#8221;</p>
<p>mjt &#8211; author, &#8220;Inside Linux&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rhy</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-76385</link>
		<dc:creator>rhy</dc:creator>
		<pubDate>Mon, 07 Sep 2009 11:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-76385</guid>
		<description>Yah it works but if you are sure what number of (hd) &quot;heard disk&quot; you installed windows Xp or Vista. 

type in this command:

first - sudo grub

second - root (hd0,0) # the number of your heard disk #

third - setup (hd0,1) # frot he boot start up #</description>
		<content:encoded><![CDATA[<p>Yah it works but if you are sure what number of (hd) &#8220;heard disk&#8221; you installed windows Xp or Vista. </p>
<p>type in this command:</p>
<p>first &#8211; sudo grub</p>
<p>second &#8211; root (hd0,0) # the number of your heard disk #</p>
<p>third &#8211; setup (hd0,1) # frot he boot start up #</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samg</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-76320</link>
		<dc:creator>samg</dc:creator>
		<pubDate>Fri, 04 Sep 2009 23:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-76320</guid>
		<description>Here&#039;s a link to Ubuntu community discussion which may help you out.
https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a link to Ubuntu community discussion which may help you out.<br />
<a href="https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows" rel="nofollow">https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shan</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-76183</link>
		<dc:creator>shan</dc:creator>
		<pubDate>Wed, 02 Sep 2009 08:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-76183</guid>
		<description>ok my situation here is i have ubuntu 9.04 installed (no partition) and i want to reinstall XP so i can run cubase

but my xp backup disk is not being accepted by the computer


i think full ubuntu install precludes that


any suggestions?



ta    shan</description>
		<content:encoded><![CDATA[<p>ok my situation here is i have ubuntu 9.04 installed (no partition) and i want to reinstall XP so i can run cubase</p>
<p>but my xp backup disk is not being accepted by the computer</p>
<p>i think full ubuntu install precludes that</p>
<p>any suggestions?</p>
<p>ta    shan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venus</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-75937</link>
		<dc:creator>Venus</dc:creator>
		<pubDate>Fri, 28 Aug 2009 18:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-75937</guid>
		<description>Thanks Mr.&quot;Jonathan vz&quot;...Mine was &quot;hd(0,5)&quot;..i did never expected it&#039;ll be upto 5..And i struck for about 20 minutes by just a small mistake, i didn&#039;t give space after the &quot;find&quot; !!!...</description>
		<content:encoded><![CDATA[<p>Thanks Mr.&#8221;Jonathan vz&#8221;&#8230;Mine was &#8220;hd(0,5)&#8221;..i did never expected it&#8217;ll be upto 5..And i struck for about 20 minutes by just a small mistake, i didn&#8217;t give space after the &#8220;find&#8221; !!!&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-75648</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 22 Aug 2009 13:42:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-75648</guid>
		<description>This work perfectly.  I had Ubuntu 9.05 and Windows XP Pro working in dual boot when I decided to complicate things by installing the Windows 7 Release Candidate. Of course Windows assumed it was the only OS on the drive and schwanked grub.

I read the entire thread including helpful comments, found the windows partitions on my drive and was up and running in a few minutes. I was unable to find /boot/grub/menu.lst to make sure windows was in it. So I took a chance and rebooted without this step. Grub showed windows 7 as XP, but that is a minor detail I can fix easily.

Thanks for the help!</description>
		<content:encoded><![CDATA[<p>This work perfectly.  I had Ubuntu 9.05 and Windows XP Pro working in dual boot when I decided to complicate things by installing the Windows 7 Release Candidate. Of course Windows assumed it was the only OS on the drive and schwanked grub.</p>
<p>I read the entire thread including helpful comments, found the windows partitions on my drive and was up and running in a few minutes. I was unable to find /boot/grub/menu.lst to make sure windows was in it. So I took a chance and rebooted without this step. Grub showed windows 7 as XP, but that is a minor detail I can fix easily.</p>
<p>Thanks for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bastr</title>
		<link>http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/comment-page-2/#comment-73984</link>
		<dc:creator>bastr</dc:creator>
		<pubDate>Sun, 05 Jul 2009 04:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/#comment-73984</guid>
		<description>i see other way &gt;&gt;&gt;
sudo fdisk -l
sudo mount /dev/hda2 /mnt
sudo grub-install --root-directory=/mnt /hda

hint: hda2 mean where linux install 
thank you :)</description>
		<content:encoded><![CDATA[<p>i see other way &gt;&gt;&gt;<br />
sudo fdisk -l<br />
sudo mount /dev/hda2 /mnt<br />
sudo grub-install &#8211;root-directory=/mnt /hda</p>
<p>hint: hda2 mean where linux install<br />
thank you <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
