LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-28-2009, 10:17 PM   #1
Ranti
LQ Newbie
 
Registered: Jun 2006
Location: Sydney, Australia
Distribution: RHEL4
Posts: 7

Rep: Reputation: 0
Dual Boot problem with 32-bit vist a and 64-bit Fedora 10


Hi,

I was using 32-bit windows vista and yesterday tried to install the 64-bit fedora 10. but the problem is after installing fedora 10, I cannot boot into vista. it comes up with a msg BOOTMGR missing....Press Ctrl+alt+del to restart. After researching on the internet how to recover from this issue, I have successfully recovered vista but now the problem is there is no grub boot loader or anything now it just boots to vista, doesnt show me any option.

So what is the solution for this problem? should i install a third party boot loader ?? can you suggest any thirdparty boot loader that would solve my problem and would be able to boot vista and fedora?

thanks in advance. I would really appreciate your suggestion.

Ranti
 
Old 03-28-2009, 10:36 PM   #2
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,103

Rep: Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117
Sounds like Anaconda (the Fedora installer) merely guessed the wrong partition for Vista. Grub is booting that combination (amongst others) on this very laptop. Would have been easier to fix grub then.
You should be able to boot the Fedora disk and select to boot into your disk system and re-install grub to the MBR.

You can also use the Vista loader to boot Fedora, but you'll need to re-install grub anyway for that to work.
 
Old 03-28-2009, 10:59 PM   #3
saagar
Member
 
Registered: Jul 2008
Location: Chennai, India
Distribution: RHEL5, Ubuntu
Posts: 191

Rep: Reputation: 37
Mr.syg00, cud u pls explain what happens to the vista loader when grub is loaded in mbr. if vista loader is to be placed in some other place, how windows will find out the location of the vista loader when it is booting.? when booting windows, the bios will search for bootloader in mbr, if it is not there, how will it function...? thanks.
 
Old 03-29-2009, 12:42 AM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,103

Rep: Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117
@Ranti, just boot the first CD, and select your installed system. Then from a terminal try
Code:
su -c "grub-install /dev/sda"
/dev/sda should be correct for you. You will still have the issue with Vista - post the output from these, and we'll see if we can fix that too.
Code:
su -c "/sbin/fdisk -l
cat /boot/grub/manu.lst
@saagar; to use the Vista loader, you install grub to a partition (root or /boot usually) and update the BCD data to add Linux as a boot option. I use EasyBCD.
 
Old 03-29-2009, 01:57 AM   #5
alan_ri
Senior Member
 
Registered: Dec 2007
Location: Croatia
Distribution: Debian GNU/Linux
Posts: 1,733
Blog Entries: 5

Rep: Reputation: 127Reputation: 127
syg00,there are some typo mistakes in this code:
Code:
su -c "/sbin/fdisk -l
cat /boot/grub/manu.lst
It should be:
Code:
su -c /sbin/fdisk -l
cat /boot/grub/menu.lst
saagar,
As you said,bios will search for bootloader in MBR and it will find it,then GRUB will point to Vista's loader if you select to boot into it and it will do that by chainloading because GRUB can't boot into Windoze directly.You can read more about it here and here.
 
Old 03-29-2009, 02:04 AM   #6
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,103

Rep: Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117Reputation: 4117
Quote:
Originally Posted by alan_ri View Post
syg00,there are some typo mistakes in this code
Erk - sorry 'bout that. Thought I'd checked it - shouldn't post while watching the Grand Prix ...
 
Old 03-30-2009, 02:13 AM   #7
Ranti
LQ Newbie
 
Registered: Jun 2006
Location: Sydney, Australia
Distribution: RHEL4
Posts: 7

Original Poster
Rep: Reputation: 0
Ok, yesterday i've spent most of the morning and afternoon trying to solve this problem. But couldn't solve this problem.its like a cat and mouse game. Vista was installed on my hdd and then i tried to install fedora 10 which was 64 bit and my installed vista is 32 bit. after installing fedora, it was booting perfectly but when i tried to boot vista from the grub menu, it showed me an error- BOOTMGR missing Press CLTR+ALT+DEL to restart. after googling around to fix this problem i find some solution. I boot with my vista dvd and enter in the rescue mode. then putting the following command in command prompt-

bootrec /rebuildbcd

bcdedit /export C:\BCD_Backup

ren c:\boot\bcd bcd.old

bootrec /rebuildbcd
bootrec /fixmbr
bootrec /fixboot

after couple of try it actually worked and i clould get into vista again. but there were no option to go inside fedora. so I again restarted my pc with fedore dvd and enter into the rescue mode and tried to reinstall grub. and actually successfully installed grub. but then when i tried to reboot again grub menu came and booting into fedora was fine however booting into vista again showing the same error msg- BOOTMGR missing press CTRL+ALT+DEL to restart

so this is the situation. maybe there is some compatibility issue with 32-bit vista and 64-bit fedora.
 
Old 04-03-2009, 10:32 AM   #8
alan_ri
Senior Member
 
Registered: Dec 2007
Location: Croatia
Distribution: Debian GNU/Linux
Posts: 1,733
Blog Entries: 5

Rep: Reputation: 127Reputation: 127
Is Fedora on the logical partition? If it's not that would be the problem most likely,if so create extended partition and few logical partitions on it.Maybe for /root,/home and swap for example.Vista should be installed first.
I had Vista and Fedora long time ago on the laptop with Grub and everything was great.
You asked for bootloader,well I used GAG before.It's great.
 
Old 04-03-2009, 09:07 PM   #9
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,444

Rep: Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474Reputation: 2474
If you are now able to boot Fedora, you should log in as root and enter 'fdisk -l' command (w/o quotes, lower case Letter L) and post the output here. This will give us your partition information. Also post the output of /boot/grub/grub.conf file.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] HP Proliant DL380G6 dual boot 32-bit and 64-bit RHEL5.0 sekhar_vgt Linux - Server 1 11-05-2008 09:56 AM
Q: how to create dual boot disk with ubuntu 32-bit and 64-bit maxreason Ubuntu 4 08-07-2008 11:11 AM
Dual-boot SUSE 10.2 64-bit and Windows XP 64-bit mijohnst SUSE / openSUSE 4 03-27-2007 08:46 PM
dual boot 32 64 bit problem RobEQS Fedora - Installation 1 11-15-2006 10:22 AM
Need help with 64bit Fedora/ 32 bit Windows Dual Boot Sliceman Fedora - Installation 0 05-20-2004 04:18 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration