Re: Booting with Grub

2004-07-01 Thread Dan Nelson
In the last episode (Jul 01), Andrew Walrond said:
 I have installed 5.2.1 into a partition and I want to use my existing
 bootloader, grub.
 
 Can anyone tell me what the required grub configuartion line would
 look like, or point me to an FAQ?

All I do with grub is chainload the FreeBSD partition's bootblock.

root(hd0,1)
chainloader +1

-- 
Dan Nelson
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Booting with Grub

2004-07-01 Thread Reed L. O'Brien
in grub.conf
# if it is default
default 0
# how long to wait usually with default
timeout 5
#title
title FreeBSD
#root location first on my disk here
root (hd0,0,e)
#kernel
kernel /boot/loader
# or if grub already exists and is working for WXP and Linux...
# I last did it like so
# FSBD 4.5 with (I think)
title FBSD 4.5
rootnoverify (hd0,1) # map w/o linux checks
makeactive # set
chainloader +1 #hand off
luck,
reed
Andrew Walrond wrote:
I have installed 5.2.1 into a partition and I want to use my existing 
bootloader, grub.

Can anyone tell me what the required grub configuartion line would look like, 
or point me to an FAQ?

Andrew Walrond
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

--
4.6692016090
'cmVlZEBpbnRlcnNpZWdlLmNvbQ==\n'.decode('base64')
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Booting with Grub

2004-07-01 Thread Bill Schoolcraft
At Thu, 1 Jul 2004 it looks like Andrew Walrond composed:

 I have installed 5.2.1 into a partition and I want to use my existing
 bootloader, grub.

 Can anyone tell me what the required grub configuartion line would look like,
 or point me to an FAQ?

 Andrew Walrond
 ___

Here is one that worked for me with FreeBSD on the 4th primary partition.
It was a while ago when I had RedHat-7.2 as the controller of GRUB.


# Note that you do not have to rerun grub after making changes to this
# file
# NOTICE:  You have a /boot partition.  This means that
#  all kernel and initrd paths are relative to /boot/, eg.
#  root (hd0,0)
#  kernel /vmlinuz-version ro root=/dev/hda3
#  initrd /initrd-version.img
#boot=/dev/hda
default=0
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
title Red Hat Linux (2.4.7-10)
root (hd0,0)
kernel /vmlinuz-2.4.7-10 ro root=/dev/hda3
initrd /initrd-2.4.7-10.img

title FreeBSD-4.2
root (hd0,4,a)
kernel /boot/loader
###
--
Bill Schoolcraft
PO Box 210076 -o)
San Francisco CA 94121 /\
UNIX, A Way Of Life._\_v

http://billschoolcraft.com

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Booting with Grub (correction)

2004-07-01 Thread Reed L. O'Brien
I shouldlspecify that  AFAIK
the first listing is the 'old' way which still works and with multiple *BSD
the second is the 'new' way that works with FBSD and maybe OBSD IIRC.
cheersm
reed
Reed L. O'Brien wrote:
in grub.conf
# if it is default
default 0
# how long to wait usually with default
timeout 5
#title
title FreeBSD
#root location first on my disk here
root (hd0,0,e)
#kernel
kernel /boot/loader
# or if grub already exists and is working for WXP and Linux...
# I last did it like so
# FSBD 4.5 with (I think)
title FBSD 4.5
rootnoverify (hd0,1) # map w/o linux checks
makeactive # set
chainloader +1 #hand off
luck,
reed
Andrew Walrond wrote:
I have installed 5.2.1 into a partition and I want to use my existing 
bootloader, grub.

Can anyone tell me what the required grub configuartion line would 
look like, or point me to an FAQ?

Andrew Walrond
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
 


--
4.6692016090
'cmVlZEBpbnRlcnNpZWdlLmNvbQ==\n'.decode('base64')
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Booting with Grub

2004-07-01 Thread Andrew Walrond
Thanks all

Andrew
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Booting with Grub

2004-07-01 Thread Jonathan Franks
Andrew Walrond wrote:
I have installed 5.2.1 into a partition and I want to use my existing 
bootloader, grub.

Can anyone tell me what the required grub configuartion line would look like, 
or point me to an FAQ?

Andrew Walrond
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

I'm actually using a GRUB floppy, but this is what I type in to boot 
freeBSD (it's on the second IDE drive in my system)

GRUB root (hd1,0)
GRUB chainloder +1
GRUB boot
in the first line, (hd1,0) refers to the HDD and the partition, in that 
order. So if you have only one drive, and BSD is on the second partiton, 
for example, you'd use root (hd0,1)

Hope this helps...
Jonathan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Booting with Grub

2004-07-01 Thread Andrew L. Gould
On Thursday 01 July 2004 09:32 am, Andrew Walrond wrote:
 I have installed 5.2.1 into a partition and I want to use my existing
 bootloader, grub.

 Can anyone tell me what the required grub configuartion line would
 look like, or point me to an FAQ?

 Andrew Walrond

I found the url below by searching for GRUB and FreeBSD on google.

http://geodsoft.com/howto/dualboot/grub.htm#freebsd

Best of luck,

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]