Operating System - Linux
1753620 Members
5813 Online
108797 Solutions
New Discussion юеВ

Re: where can i get partition magic and....

 
SOLVED
Go to solution
shawn barnett
Advisor

where can i get partition magic and....

where can i get partition magic and how can i dual boot win xp and RH 7... because win xp is located on hda and rh 7 is located on hdb but i can not get win xp to boot nor can i get it to pop up a screen to choose which os i want to load any help would be appreciated...thanks
31 REPLIES 31
Stuart Browne
Honored Contributor

Re: where can i get partition magic and....

Windows XP comes with a boot-loader similar to Windows NT.

Have a read through http://www.ibiblio.org/pub/Linux/docs/HOWTO/mini/other-formats/html_single/Linux+NT-Loader.html, and it should be faily simple.
One long-haired git at your service...
shawn barnett
Advisor

Re: where can i get partition magic and....

thats great but i can't load win xp on the other hd and i don't know how i can get to it i am new to linux and didn't expect for this to happen
Stuart Browne
Honored Contributor

Re: where can i get partition magic and....

Right, so your MBR is already fried. Great.

If you can get into Linux, reinstall which ever boot loader you've got there into the MBR, and then add another entry in your /etc/{grub,lilo}.conf file to point to the other file system.

You want to install the boot loader into /dev/hda's MBR, or using a Grub reference: (hd0,0).

Do you know which boot loader you installed when you installed Linux? Your choices are 'Lilo' or 'Grub'.

If you tell us, I'll see what I can do to throwing out some more detailed instructions.
One long-haired git at your service...
shawn barnett
Advisor

Re: where can i get partition magic and....

i installed it via a custom installation and installed LiLo
Stuart Browne
Honored Contributor
Solution

Re: where can i get partition magic and....

ok!

Modify /etc/lilo.conf

boot=/dev/hda
..
..
image=/boot/vmlinuz-...
label=linux
read-only
root=/dev/hdb?

other=/dev/hda1
label=WinXP

Make sure it has similar things. Re-run '/sbin/lilo', and try a re-boot.

You might need to boot off your CD into rescue mode, and chroot /dev/hdb? (whichever your root partition is).

If you need more help, we'll need some details:

a copy of /etc/lilo.conf
sfdisk -l /dev/hda
sfdisk -l /dev/hdb

This will show us where the various pieces of information are hiding.
One long-haired git at your service...
shawn barnett
Advisor

Re: where can i get partition magic and....

what program in RH 7 can i modify this file with? or should i save it to disk and modify it on another comp in a windows based environment
Steven E. Protter
Exalted Contributor

Re: where can i get partition magic and....

Welcome to the wonderful world of Unix.

You will hate it at first, but try the program vi.

vi /filename_to_edit

You'll want to search itrc and learn the basics, but hard core admins all learn vi.

We all resist at first, but we all eventually capitulate.

Transferring files back and forth to a windows environment can cause problems. If you transfer a file in binary format that should be ascii, it will screw up the Linux/Unix system.

Partition magic is available at most computer stores for around $49(US).


P
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
shawn barnett
Advisor

Re: where can i get partition magic and....

stuart browne what do the .'s stand for is that info already contained in the file or should i type it exactly as you have it written
Stuart Browne
Honored Contributor

Re: where can i get partition magic and....

The ...'s stand for "Leave lines not mentioned alone".

One long-haired git at your service...