LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-24-2005, 08:39 PM   #1
lennysokol
Member
 
Registered: Feb 2005
Posts: 65

Rep: Reputation: 16
Dual Boot Help: Xp+fc3


Can anyone please help me dual boot Fedora Core Three and Windows XP?

I've done 14 diff. ways, and none have worked. They keep booting Windows!

I have been able to dual boot Win2k and FC3, but not WinXP and FC3.

Please help!
 
Old 04-24-2005, 08:59 PM   #2
jfryman
Member
 
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40

Rep: Reputation: 15
Re: Dual Boot Help: Xp+fc3

Quote:
Originally posted by lennysokol
Can anyone please help me dual boot Fedora Core Three and Windows XP?

I've done 14 diff. ways, and none have worked. They keep booting Windows!

I have been able to dual boot Win2k and FC3, but not WinXP and FC3.

Please help!
First a few questions for you:

1) Do you already have both OS's installed?
2) ARe you using XP's bootloader or GRUB?
2a) Can you post your grub.conf?

If you can't even get into linux, but have it installed... here is what I would do.

Grab your FC3 Disks, and boot off of the CD. Boot using the command
Code:
linux rescue
Let Anaconda do it's thing, and make sure that you mount your disks as read-write (Anaconda should ask you about this option), then issue the following command
Code:
chroot /mnt/sysimage
Now, open up /boot/grub/grub.conf using your favorite editor (VI!!!)

Add the following Lines
Code:
title Windows XP
root(hdX,Y)
chainloader +1
where X is the hard disk number, and Y is the partition number. IE: Disk 1, Parition 2 (/dev/hda2) = root(hd0,2)

Finally, if everything checks out, issue the command
Code:
/sbin/grub-install /dev/hdX
were X is the hard disk.

This is by no means a comprehensive guide to fixing GRUB. I would also check out the GRUB Manual @ http://www.gnu.org/software/grub/manual/html_node/

Good luck!
 
Old 04-24-2005, 10:06 PM   #3
lennysokol
Member
 
Registered: Feb 2005
Posts: 65

Original Poster
Rep: Reputation: 16
I installed GRUB on the MBR, but XP keeps booting.

I'll try booting into rescue.

This is how I did it with Fedora/Win2k

Installed Win2k - left unpart. space. Installed Fedora manually and installed Grub on /boot. Windows would boot. I'd go into Comp. Mang. and set /boot active. In WinXP it doesn't let you have that option.

Right now on my machine

I only have this

fat32 of Win2k
/ ext3

swap

If you could tell me how to set a part. active via Linux rescue, that'd be great.

thanks.
 
Old 04-25-2005, 07:49 AM   #4
jfryman
Member
 
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40

Rep: Reputation: 15
Quote:
Originally posted by lennysokol
I installed GRUB on the MBR, but XP keeps booting.

I'll try booting into rescue.

This is how I did it with Fedora/Win2k

Installed Win2k - left unpart. space. Installed Fedora manually and installed Grub on /boot. Windows would boot. I'd go into Comp. Mang. and set /boot active. In WinXP it doesn't let you have that option.

Right now on my machine

I only have this

fat32 of Win2k
/ ext3

swap

If you could tell me how to set a part. active via Linux rescue, that'd be great.

thanks.
While in rescue mode, issuse the command
Code:
fdisk /dev/hdX
You'll get a command prompt. Get a feel for what partitions are on your disk. Type 'P'. Should give you an output like this:
Quote:
Command (m for help): p

Disk /dev/hda: 40.0 GB, 40007761920 bytes
255 heads, 63 sectors/track, 4864 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 1 609 4891761 7 HPFS/NTFS
/dev/hda2 * 610 617 64260 83 Linux
/dev/hda3 618 4864 34114027+ 5 Extended
/dev/hda5 618 3353 21976888+ b W95 FAT32
/dev/hda6 3354 3416 506016 82 Linux swap
/dev/hda7 3417 4864 11631028+ 83 Linux

Command (m for help):
The asterix marks the active partition. To change the active, use the 'a' command, and select the partition # (i.e.: /dev/hda5 = 5, etc). Also, remember that you must deactivate the partition you don't want bootable. For example: I want /dev/hda7 bootable, so I must activate that using the 'a' command, and deactivate the previous partition, also using the 'a' command.

Make sure that you are happy with the results... press 'p' again. If the asterix appears once on the partition you want to boot, save it by using 'w'.

Reboot!

That should be it. Good luck!
 
Old 04-25-2005, 03:57 PM   #5
lennysokol
Member
 
Registered: Feb 2005
Posts: 65

Original Poster
Rep: Reputation: 16
Directions were great.

Just went making Linux active, and rebooting

I got this message: Error Loading OS.

Remember, I installed FC3 on the MBR.

I'll try to install with /boot and make that active and install grub on /boot

Will that solve the issue?
 
Old 04-25-2005, 04:43 PM   #6
jfryman
Member
 
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40

Rep: Reputation: 15
Quote:
Originally posted by lennysokol
Directions were great.

Just went making Linux active, and rebooting

I got this message: Error Loading OS.

Remember, I installed FC3 on the MBR.

I'll try to install with /boot and make that active and install grub on /boot

Will that solve the issue?


That should work just fine. I've got my Bootloader on my boot partition. GRUB should install stage 1 on the MBR and stage 2 on the /boot partition.

Don't quote me on that... I'm no GRUB expert!
 
Old 04-25-2005, 07:25 PM   #7
lennysokol
Member
 
Registered: Feb 2005
Posts: 65

Original Poster
Rep: Reputation: 16
Worked!

Great it worked.

Thanks a lot!!! :-D

I'll see how it goes on my laptop this weekend.

DO you know if Linux works well w/ a Dell Lat. C640 or laptops in general?
 
Old 04-25-2005, 08:08 PM   #8
jfryman
Member
 
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40

Rep: Reputation: 15
Re: Worked!

Quote:
Originally posted by lennysokol
Great it worked.

Thanks a lot!!! :-D

I'll see how it goes on my laptop this weekend.

DO you know if Linux works well w/ a Dell Lat. C640 or laptops in general?

Yeah, I run Linux on a laptop now. Before you get started, there are some special things you should take into account. A good place to check out would be http://www.linux-on-laptops.com

Find your model, and give it a go. Feel free to e-mail me at jfryman@gmail.com if you need some extra help!
 
Old 04-25-2005, 09:03 PM   #9
lennysokol
Member
 
Registered: Feb 2005
Posts: 65

Original Poster
Rep: Reputation: 16
I'm the worst speller :-(

I would like to thank you once again for your help.

But new dell laptop hard drive just shipped, so I'll probably put Fedora on my laptop without dual booting. Do you backup your computer on dual booting? Do you update RHN updates or Windows Service Packs?

Also, do you have wireless configured on your Linux computer? Did Fedora recognize your wireless or Ethernet driver or did you have to install from another third-party download place?

Thanks once again! You are the best!!

Go Linux!
 
Old 04-25-2005, 09:18 PM   #10
jfryman
Member
 
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40

Rep: Reputation: 15
Quote:
Originally posted by lennysokol
I'm the worst speller :-(

I would like to thank you once again for your help.

But new dell laptop hard drive just shipped, so I'll probably put Fedora on my laptop without dual booting. Do you backup your computer on dual booting? Do you update RHN updates or Windows Service Packs?

Also, do you have wireless configured on your Linux computer? Did Fedora recognize your wireless or Ethernet driver or did you have to install from another third-party download place?

Thanks once again! You are the best!!

Go Linux!
I probably should backup my laptop! (I backup the important stuff on CD-RW every so often using k3b) but I end up upgrading my Linux distro after every Core Update. I like a usable system, but I've done one too many 'yum update' commands too many, and because Linux Laptop support isn't that great, it'll break something (in every case thus far, Xorg 6.2 -> 6.3 has broken support for my Video Card). This is why it's important to check the Linux Laptop database and see what problems others have had and how they've overcome. Even more so, if there isn't anything, you can pave the path for others. That's the greatness of OSS! Helping people out when you can!

I have a good ol' Prism2 card which after fandangling the IRQ settings for PCMCIA, I was able to get working just fine using RH's default wlan drivers, but I opted for the host-ap suite to be able to do some cooler stuff with my wireless (kismet... etc..)

Your laptop might have an internal card, which may be an intel chipset. So far, there is basic support for this using an ndiswrapper, which is essentially a windows driver being used in linux.

Hope that answers your questions! Keep posting here and there, and I'm sure you'll hear from me again! I've been using linux for about six years now, and I'm by no means an expert, but I feel like I can start contributing back to the community that has helped me so much! Good luck to you!
 
Old 04-29-2005, 01:17 PM   #11
lennysokol
Member
 
Registered: Feb 2005
Posts: 65

Original Poster
Rep: Reputation: 16
My laptop was running fine... I login on the next reboot and get this:

/etc/X11/gdm/PreSession/Default: Registering your session with
/etc/X11/gdm/PreSession/Default: running: /usr/bin/X11
/etc/X11/xinit/xinitrc-common: line 45: 3328 Segmentation f
Agent pid 3342
Failed to execute message bus daemon: No such file or directory
EOF in dbus-launch reading address from bus daemon
 
  


Reply



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
Dual boot issue w.r.t. XP and FC3 lnxkido Linux - Newbie 5 09-04-2005 06:16 PM
How to dual boot FC3 and Windows XP? futurist Fedora 4 09-02-2005 10:59 PM
FC3 dual boot problem Stregone Fedora - Installation 9 04-16-2005 04:05 PM
FC3 dual boot problem Joe47 Fedora 3 12-04-2004 04:04 PM
Dual Boot Win98/FC3 spartanM19SSM Linux - General 2 11-11-2004 05:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:31 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