Quad Booting...


 
Thread Tools Search this Thread
Operating Systems BSD Quad Booting...
# 1  
Old 02-26-2005
Quad Booting...

Ok so currently I have XP and Slack booting on my laptop, the next two goals will be FreeBSD and Windows Server 2003, in that order (though I may need to start over and do server before unix/linux.

Either way, how I got linux interacting nicely with XP was via this link:

http://bratlady.com/linux_boot.shtml

One of the catches is I am using the Windows Boot manager, so the key to getting linux to work was this part of the deal:

dd if=/dev/hdc2 of=/bootsect.lnx bs=512 count=1

Which I sorta went with, I have no idea what the file it creates really does nor even what the command itself executes, I know what they tell me on that site "rip the bootsector from our Linux root partition", so thats easy to understand right?

So now I suppose the question is, how do I accomplish the same thing with FreeBSD 5.3 so I can just plug the file into the windows boot loader and get it booting to it correctly?

Thanks,

J
# 2  
Old 03-02-2005
Bootloader options

There are a few options:
1. Continue to use Windows Boot Manager (ntldr). However, it's probably not a very good idea because Windows Server 2003 might start complaining. But if you want to try, take a look at this.

http://www.freebsd.org/doc/en_US.ISO...#NT-BOOTLOADER

If the FreeBSD installation is on the same hard disk with Windows, copy /boot/boot1 to your windows partition. You can rename the file if you want to. Then put C:\BOOTSECT.BSD="FreeBSD" into boot.ini. However, if you have it on a different disk **DO NOT** use /boot/boot1 or /boot/boot0. This would wipe out the partition table in your hard disk. I had accidentally done it before and I wasn't able to recover the partitions. Instead you can do:

# dd if=/dev/ad?s?? of=/bootsect.bsd bs=512 count=1

Change ad?s?? to the appropriate device node. The device for the first hard disk, first partition, first slice (FreeBSD partition scheme), is ad0s1a. Then modify boot.ini, and it should work. This command copies the first 512-byte block from the device you specified to the output file (in this case bootsect.bsd).

2. Use your BIOS. Some computer has BIOS that allows you to choose what device to boot after POST.

3. Use the default FreeBSD bootloader. However, the bootloader will display ??? for ntfs partitions.

4. Use GRUB (GRand Unified Bootloader).

http://www.gnu.org/software/grub/

If you want to install it through FreeBSD, download the precompiled package from the FreeBSD ftp site. It's under the sysutils category. Use pkg_add to install the package and configure the loader. Documentation is on the GRUB web site. In my opion, this is the best way. Windows won't complain it's not the only OS on the computer, and it can boot almost any OS through chain loading. Also, it provides a very nice screen at start up and very flexible.

If you have any questions, just post it to this thread.
I hope this helps you. Good Luck! Smilie

Enoch
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

How to Check Memory if Single/Dual/Quad Rank

What command in redhat linux to know your memory if it is single, dual or quad rank. Anyone? (2 Replies)
Discussion started by: Mujakol
2 Replies

2. HP-UX

how can i know this processor quad or dual core ?

hi every body i want to know if i have server with hp-ux os if i did "machinfo" i will see no of cpu = for example 16 how can i know this is dual or quad core . thanks (2 Replies)
Discussion started by: maxim42
2 Replies

3. Solaris

SunFire V440 Quad gigabit ce1 won't run Gig

Hi there. My first time posting so apologies for any indescretions in advance. :o I've got two SunFire V440 servers running Solaris 5v10. Both have a quad Gigabit ethernet card fitted, both have the same symptom; that is, I can't get the first port ce1 to run Gigabit. Motherboard ports are ce0 and... (10 Replies)
Discussion started by: fixit9660
10 Replies

4. Solaris

quad card configuration

Hi Group, I Have just installed quad card in my V440 machine, I am facing problem I cn just ping its ce0 card only rest of the cards are not ping able, here is details of my machine. ifconfig -a lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1 ... (2 Replies)
Discussion started by: sameergrover
2 Replies

5. Solaris

Quad Ethernet

I have a Quad Ethernet card in a 220R. 2 ports activated. Each has its own hostname file and both hostnames are in the hosts file. I want both ports to have the same IP address so we can use the 2nd port in case we lose communication on the port. On bootup, the box gives me: SIOCSLIFFLAGS:... (5 Replies)
Discussion started by: hshapiro
5 Replies

6. UNIX for Dummies Questions & Answers

gar stupid quad booting

well running win xp home win xp pro and linux suse 10 about to install freebsd 5.1 just wondering what problems :mad: im gonna have and any handy tips :rolleyes: (0 Replies)
Discussion started by: lord_of_pie
0 Replies

7. Windows & DOS: Issues & Discussions

Quad or Duel Processors

Which hardware configuration gives you the best though put for processing? 1.) Quad CPU at 2 GHZ 2.) Dual CPU at 3 GHZ and More Memory. We currently have setup #1, I want to upgrade the server and I am investigating hardware configurations. Wanted to know if set #1 gives better though put... (4 Replies)
Discussion started by: rfmurphy_6
4 Replies

8. IP Networking

Quad Fast Ethernet Card on Sparc 10?

I am having a problem getting my configuration to stick. After I installed my quad-card I did the following: 1. created hostname.qe0, hostname.qe1, hostname.qe2, hostname.qe3 files in my /etc directory. 2. In my /etc/hosts file I added the ip address of each interface and the name for each... (7 Replies)
Discussion started by: jskillet
7 Replies
Login or Register to Ask a Question