Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 16-07-2005, 05:20 PM   #1 (permalink)
Alpha Geek
 
godsownman's Avatar
 
Join Date: Feb 2005
Location: Bombay
Posts: 879
Default Red Hat Linux


I have just installed Red Hat Linux 9 .

When I installed it I did not write the Boot loader to the MBR instead I selected the first sector on the partition.

As the setup was coming to an end I was prompted to create a boot disk.

Now, what is happeninig is that if the boot disk is not inserted in my computer it directly loads Windows without giving me the option for loading Linux.

Is there any way to do away with this method of inserting the floppy for Linux to load.

However, I dont want to modify the MBR also.

Thanks
godsownman is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 16-07-2005, 05:26 PM   #2 (permalink)
Walking, since 2004.
 
mail2and's Avatar
 
Join Date: Apr 2004
Location: London, UK
Posts: 926
Default

The best way to try Linux and not install it on the hard disk is to try out a live CD.. you could try out ubuntu 5.04 live CD.. and if u like it then u can install it

Otherwise without booting via floppy or disturbing the MBR, i don't think u can boot into linux.
__________________
Mumbai, I miss you. :(
mail2and is offline  
Old 16-07-2005, 05:36 PM   #3 (permalink)
In The Zone
 
busyanuj's Avatar
 
Join Date: Dec 2003
Posts: 488
Default

why don't you want to modify mbr ?
when you install RH Linux 9, let it install the grub bootloader onto the mbr of your hard drive. That way, each time when you start your computer, you'll get the menu to boot into windows or linux.

otherwise, you will have to keep a boot floppy.

besides, if you are scared of installing grub on the mbr, you can try the live cd of some other linux distro, as mail2and suggested.
__________________
You are a living magnet. What you attract into your life is in harmony with your dominant thoughts.
busyanuj is offline  
Old 16-07-2005, 05:58 PM   #4 (permalink)
In Pursuit of "Happyness"
 
kalpik's Avatar
 
Join Date: May 2005
Location: New Delhi
Posts: 3,432
Default

There is another solution!!!

But it applies only if u r running windows nt, 2000 or xp.

Here it is:

1. Boot into linux using ur floppy.
2. Go to the root terminal.
3. Type fdisk -l
4. Now note down the partition on which u installed the boot loader (suppose its hda6)
5. Put a blank formatted floppy in the floppy drive.
6. Type the following command in the root terminal:
Code:
dd if=/dev/hda6 of=/mnt/floppy/redhat.img bs=512 count=1
It will show 1 records in, one records out... something like that!!
7. Now boot into windows.
9. Copy redhat.img from the floppy onto C:\
9. Find boot.ini (its a hidden, system file in c:\)
10. Now at the end, add the following line:
Code:
C:\redhat.img="RedHat"
11. Now save and restart windows.
12. Yu should now get an option to boot into RedHat!

Please post back if it doesnt work!
kalpik is offline  
Old 17-07-2005, 11:01 AM   #5 (permalink)
Alpha Geek
 
godsownman's Avatar
 
Join Date: Feb 2005
Location: Bombay
Posts: 879
Default

Thanks Kaplik ,

It worked .

Thanks a lot . You saved me of a lot of troubles
__________________
From the body of one guilty deed a thousand ghostly fears and haunting thoughts proceed !

Visit (http://www.meebo.com)
godsownman is offline  
Old 17-07-2005, 03:53 PM   #6 (permalink)
In Pursuit of "Happyness"
 
kalpik's Avatar
 
Join Date: May 2005
Location: New Delhi
Posts: 3,432
Default

Sure no prob! BTW, its "Kalpik", not "Kaplik"!!!
__________________
Whenever you find yourself on the side of the majority, it is time to pause and reflect. - Mark Twain
kalpik is offline  
Old 03-10-2005, 07:52 PM   #7 (permalink)
Alpha Geek
 
godsownman's Avatar
 
Join Date: Feb 2005
Location: Bombay
Posts: 879
Default

Sorry to Bump this thread but

Kalpik ,

Is there anyway to do the same thing in Ubuntu 5.04
__________________
From the body of one guilty deed a thousand ghostly fears and haunting thoughts proceed !

Visit (http://www.meebo.com)
godsownman is offline  
Old 03-10-2005, 08:04 PM   #8 (permalink)
Alpha Geek
 
Join Date: Dec 2003
Posts: 780
Default

You can use the same method, it will work fine.
__________________
Hardware - Celeron 266 MHz, 128MB RAM, Intel i740 8MB RAM
Software - Slackware Linux 10.1; Archlinux 0.7; Windows 98 SE
Humanware - GS/CS C++ L+++ w b+++ DI+ D+ e
ujjwal is offline  
Old 03-10-2005, 08:06 PM   #9 (permalink)
In Pursuit of "Happyness"
 
kalpik's Avatar
 
Join Date: May 2005
Location: New Delhi
Posts: 3,432
Default

Hi! Yeah its exactly the same! It works for EVERY linux distro! Just try the same steps!

instead of:
Code:
dd if=/dev/hda6 of=/mnt/floppy/redhat.img bs=512 count=1
use:
Code:
dd if=/dev/hda6 of=/mnt/floppy/ubuntu.img bs=512 count=1
and instead of:
Code:
C:\redhat.img="RedHat"
use:
Code:
C:\ubuntu.img="Ubuntu"
thats it!

Just be sure you have root priviledges on Ubuntu (use "sudo" in front of the command "dd")

Post back (and send me a pm too ) if u need more help!

Take care!
__________________
Whenever you find yourself on the side of the majority, it is time to pause and reflect. - Mark Twain
kalpik is offline  
Old 03-10-2005, 08:37 PM   #10 (permalink)
Alpha Geek
 
godsownman's Avatar
 
Join Date: Feb 2005
Location: Bombay
Posts: 879
Default

Thanks for the help
__________________
From the body of one guilty deed a thousand ghostly fears and haunting thoughts proceed !

Visit (http://www.meebo.com)
godsownman is offline  
Old 04-10-2005, 02:29 PM   #11 (permalink)
Wise Old Owl
 
vignesh's Avatar
 
Join Date: Jul 2004
Location: Chennai
Posts: 1,659
Default

Quote:
Originally Posted by kalpik
Hi! Yeah its exactly the same! It works for EVERY linux distro! Just try the same steps!

instead of:
Code:
dd if=/dev/hda6 of=/mnt/floppy/redhat.img bs=512 count=1
use:
Code:
dd if=/dev/hda6 of=/mnt/floppy/ubuntu.img bs=512 count=1
and instead of:
Code:
C:\redhat.img="RedHat"
use:
Code:
C:\ubuntu.img="Ubuntu"
thats it!

Just be sure you have root priviledges on Ubuntu (use "sudo" in front of the command "dd")

Post back (and send me a pm too ) if u need more help!

Take care!
Thanks mate...
vignesh is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by Charan
- by Charan

Advertisement




All times are GMT +5.5. The time now is 04:49 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2