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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
04-24-2005, 08:39 PM
|
#1
|
Member
Registered: Feb 2005
Posts: 65
Rep:
|
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!
|
|
|
04-24-2005, 08:59 PM
|
#2
|
Member
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40
Rep:
|
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
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!
|
|
|
04-24-2005, 10:06 PM
|
#3
|
Member
Registered: Feb 2005
Posts: 65
Original Poster
Rep:
|
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.
|
|
|
04-25-2005, 07:49 AM
|
#4
|
Member
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40
Rep:
|
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 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!
|
|
|
04-25-2005, 03:57 PM
|
#5
|
Member
Registered: Feb 2005
Posts: 65
Original Poster
Rep:
|
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?
|
|
|
04-25-2005, 04:43 PM
|
#6
|
Member
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40
Rep:
|
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!
|
|
|
04-25-2005, 07:25 PM
|
#7
|
Member
Registered: Feb 2005
Posts: 65
Original Poster
Rep:
|
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?
|
|
|
04-25-2005, 08:08 PM
|
#8
|
Member
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40
Rep:
|
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!
|
|
|
04-25-2005, 09:03 PM
|
#9
|
Member
Registered: Feb 2005
Posts: 65
Original Poster
Rep:
|
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!
|
|
|
04-25-2005, 09:18 PM
|
#10
|
Member
Registered: Dec 2004
Location: Newport News, Virginia
Distribution: CentOS 4, FC4, Ubuntu Breezy/Dapper, Arch 0.7.1
Posts: 40
Rep:
|
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!
|
|
|
04-29-2005, 01:17 PM
|
#11
|
Member
Registered: Feb 2005
Posts: 65
Original Poster
Rep:
|
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
|
|
|
All times are GMT -5. The time now is 11:13 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|