LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 10-10-2003, 10:37 AM   #1
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Rep: Reputation: 15
XP and gentoo dual boot


Hello, i just installed Gentoo on my computer with XP existing already. I set up grub onto my boot partition on gentoo, i have been told i have to edit my boot.ini, but i do not know what to do. I have read another post in this forum saying that they needed to copy a file too. Do i need to copy a file? any help would be apreciated.
 
Old 10-10-2003, 11:02 AM   #2
Demonbane
LQ Guru
 
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796

Rep: Reputation: 47
do a
"dd if=/dev/hdX of=gentoo.bin bs=512 count=1"
where /dev/hdX is your gentoo root partition, or /boot if there is one
then copy gentoo.bin to a FAT formatted floppy disk(so its readable by XP), boot to xp then copy gentoo.bin to where your boot.ini is(usually C:\, and its hidden so you gotta show all files + protected system files in folder options-view) then open your boot.ini with notepad, add the following line:

c:\gentoo.bin="Gentoo"

next time you boot you should be able to see it on nt boot loader menu.
 
Old 10-10-2003, 02:06 PM   #3
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
i booted off of the floppy, but it brought me right into the grub config, and that command you told me wouldnt work, then i tried booting off of the cdc and i triied that command, but it didnt work either, how should i do it?
 
Old 10-10-2003, 02:25 PM   #4
aaa
LQ Guru
 
Registered: Jul 2003
Location: VA
Distribution: Slack 10.1
Posts: 2,194

Rep: Reputation: 47
"i booted off of the floppy, but it brought me right into the grub config"
What do you mean? Linux didn't start up and you just got 'grub>'?
If you are at a 'grub' prompt, you have several options. You may
be able to boot from your boot partition by chain-
loading: 'grub>root (hdx,x)', then 'grub>chainloader +1',
then 'grub>boot'. Or you can boot Gentoo directly if you know
where the Linux kernel image is: 'grub>kernel
(hdx,x)/path/to/kernel <put-options here>', then 'grub>boot'.
Note the different naming convention Grub has compared to
Linux: for example, /dev/hda=(hd0), /dev/hda1=(hd0,0). Fill in
the "x"'s with the correct numbers. Remember that grub counts
like this: 0, 1, 2, 3...

Or, from your Linux cd (or from Gentoo if you can boot it), you use 'dd':
Code:
mkdir /hd #makes a folder
mkdir /fd
mount -t vfat /dev/hdx /hd # mounts your Windows partition, fill in 'x' with number, works only if the partition is FAT32
mount -t vfat /dev/fd0 /fd #mounts a Windows floppy, in case you use NTFS, so you can use Windows to copy it later
dd if=/dev/hdx of=/xd/gentoo.bin bs=512 count=1 #Replace the first 'x' with the correct number of your boot partition , the second 'x' with 'h' or 'f', depending on whether you're using a floppy or not.
Copy the file and add entries to boot.ini in Windows as Demonbane instructed.

Last edited by aaa; 10-10-2003 at 02:27 PM.
 
Old 10-10-2003, 02:29 PM   #5
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
yes, when i was installing i had the option to create a boot disk, and thats what i did. SO when i booted off of it, it gave me a grub promt. i tried the command listed above from demonbane, and it didnt work.
Where do i go to copy the file from?
 
Old 10-10-2003, 02:36 PM   #6
Demonbane
LQ Guru
 
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796

Rep: Reputation: 47
Hmm strange the dd utility should be accessable with the live CD, what happens when you execute it?
but anyway you'll need to boot into gentoo in order to use the dd command, boot with your grub floppy, when you get to the grub prompt, first type
root (hdX, X)
to setup the root, the first X is the your disk, the second X is the partition
so for example if you have gentoo installed on the second partition of your first harddrive you would do root (hd0,1) , third partition (hd0,2) and so on, it starts from 0.
it'll show up the file system so you know if you chose the right one
after that type:
chainloader +1

then finally:
boot

it should load the actual grub in your bootsector, if its installed properly. After you get inside Gentoo invoke the commands in my previous post.

hope this helps
 
Old 10-10-2003, 02:39 PM   #7
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
thanks ill try that, i have my linux hard drive as my seconday slave with the root partition as partition 3, so it would be (hd2,2)? sorry, i just need some help with this :/
 
Old 10-10-2003, 02:43 PM   #8
Demonbane
LQ Guru
 
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796

Rep: Reputation: 47
if the secondary slave is the second disk (ie there's nothing on primary slave) then it should be (hd1,2)
but even its not it'll either just spit out an error message or tell you filesystem is unknown, keep using the root command until you find the right one.
 
Old 10-10-2003, 02:44 PM   #9
aaa
LQ Guru
 
Registered: Jul 2003
Location: VA
Distribution: Slack 10.1
Posts: 2,194

Rep: Reputation: 47
It would be (hd3,2).
 
Old 10-10-2003, 02:44 PM   #10
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
thanks, im going to go try it rright now
 
Old 10-10-2003, 03:01 PM   #11
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
ok, i booted from cd, and did the DD command, and it worked, it said something like 0 records in 1 records out , or sumthing liek that
now how do i copy the file?
 
Old 10-10-2003, 03:11 PM   #12
Demonbane
LQ Guru
 
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796

Rep: Reputation: 47
yea that's what it should say
mount the floppy then copy the file:

mkdir /mnt/floppy
mount -t vfat /dev/fd0 /mnt/floppy
cp gentoo.bin /mnt/floppy
umount /dev/fd0
reboot

boot into xp and do the boot.ini editing
 
Old 10-10-2003, 03:21 PM   #13
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
ok, i just did all of that, now im going to reboot, COMe ON COMPUTER lol
 
Old 10-10-2003, 03:51 PM   #14
-navairum-
Member
 
Registered: Sep 2003
Location: Canada
Distribution: Gentoo 2.4
Posts: 33

Original Poster
Rep: Reputation: 15
ok, the boot loader works, but whenever i choose gentoo, a black scree comes up with the word gentoo and a cursor. thenit just sits there, "gentoo *blinking cursor*"
 
Old 10-10-2003, 04:37 PM   #15
Demonbane
LQ Guru
 
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796

Rep: Reputation: 47
k boot with the grub bootdisk, does

root (hdX,X)
chainloader +1
boot

take you to the grub menu and allow you to load it?
 
  


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
dual boot xp/gentoo (selecting boot for each partition) saif__r Linux - Newbie 8 08-13-2005 10:23 AM
Dual boot XP / Gentoo gbkyle Linux - Laptop and Netbook 3 09-15-2004 03:58 AM
Dual boot w/ Gentoo/xp pro vs. gentoo-invalid partition table bobbear Linux - Software 3 02-10-2004 04:28 PM
Dual boot with Gentoo and XP jiggywiggy Linux - General 4 02-04-2004 06:43 PM
Gentoo w/ a dual boot augamecock Linux - Distributions 2 05-01-2002 10:12 AM

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

All times are GMT -5. The time now is 09:29 PM.

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