* netboot
@ 1998-06-13 0:22 Alberto Brealey
1998-06-13 9:05 ` netboot Gert Doering
0 siblings, 1 reply; 5+ messages in thread
From: Alberto Brealey @ 1998-06-13 0:22 UTC (permalink / raw)
To: ultralinux
i'm trying to netboot my ss4 to install ultra-1.0.9 on it.
i followed the directions on the users guide, set up arp/rarp and tftp.
however, whenever i issue a 'boot net' on the prompt, i crash the switches
of the campus network... (really shitty by the way, the switches)
i have one question:
on another machine i have to run arp -s and rarp -s with the MAC and IP of
the machine i want to install? on both arp and rarp?
i browsed the man pages and i think i'm doing right, but the switches
continue crashing...
any help would be appreciated
alberto
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: netboot
1998-06-13 0:22 netboot Alberto Brealey
@ 1998-06-13 9:05 ` Gert Doering
0 siblings, 0 replies; 5+ messages in thread
From: Gert Doering @ 1998-06-13 9:05 UTC (permalink / raw)
To: ultralinux
Hi,
Alberto Brealey wrote:
> however, whenever i issue a 'boot net' on the prompt, i crash the switches
> of the campus network... (really shitty by the way, the switches)
Sounds like a real bad bug in the switches' firmware. Nothing a host can
do should ever crash a switch.
gert
--
USENET is *not* the non-clickable part of WWW!
//www.muc.de/~gert/
Gert Doering - Munich, Germany gert@greenie.muc.de
fax: +49-89-35655025 gert.doering@physik.tu-muenchen.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* netboot
@ 2007-06-26 5:58 Robert Millan
2007-06-26 9:01 ` netboot Bean
0 siblings, 1 reply; 5+ messages in thread
From: Robert Millan @ 2007-06-26 5:58 UTC (permalink / raw)
To: grub-devel
In the wiki there's a link titled "GRUB2 netboot development" that points
to:
http://www.inma.ucl.ac.be/~guffens/grub2_netboot/index.html
(broken link)
Anyone knows what did this contain? Is there uncommitted work for network
support there? Who's guffens?
--
Robert Millan
My spam trap is honeypot@aybabtu.com. Note: this address is only intended
for spam harvesters. Writing to it will get you added to my black list.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: netboot
2007-06-26 5:58 netboot Robert Millan
@ 2007-06-26 9:01 ` Bean
2007-06-26 9:28 ` netboot Adam Lackorzynski
0 siblings, 1 reply; 5+ messages in thread
From: Bean @ 2007-06-26 9:01 UTC (permalink / raw)
To: The development of GRUB 2
On Tue, Jun 26, 2007 at 07:58:44AM +0200, Robert Millan wrote:
>
> In the wiki there's a link titled "GRUB2 netboot development" that points
> to:
>
> http://www.inma.ucl.ac.be/~guffens/grub2_netboot/index.html
>
> (broken link)
>
> Anyone knows what did this contain? Is there uncommitted work for network
> support there? Who's guffens?
I found an old article on this subject:
http://lists.gnu.org/archive/html/grub-devel/2006-05/msg00020.html
It seems that vincent guffens has ported a glue to bind grub2 and etherboot
together. However, it's no longer maintained, and the patch is nowhere to be
found.
But porting etherboot to grub2 may not be that difficult after all, we can
use the driver from etherboot, and the glue code from Grub Legacy. The problem
is etherboot used in Grub Legacy is very old (5.0.5). The data structure has
changed a lot since then, so the glue code needs to be modified accordingly.
There is another method, that is to rely on PXE sevice. I have written a
PXE driver for grub4dos, it uses real mode service provided by PXE stack to
access remote files, for example, to load a kernel from server, uses:
kernel (pd)/vmlinuz
init (pd)/initrd
The advantage of this methid is that it doesn't rely on network card, the PXE
stack handles difference internally. The disadvantage is that the stack is
present only when booting from PXE ROM (hardware rom or software rom from
etherboot).
BTW, pxelinux also uses this method to access files.
--
Bean
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: netboot
2007-06-26 9:01 ` netboot Bean
@ 2007-06-26 9:28 ` Adam Lackorzynski
0 siblings, 0 replies; 5+ messages in thread
From: Adam Lackorzynski @ 2007-06-26 9:28 UTC (permalink / raw)
To: grub-devel
On Tue Jun 26, 2007 at 17:01:26 +0800, Bean wrote:
> On Tue, Jun 26, 2007 at 07:58:44AM +0200, Robert Millan wrote:
> >
> > In the wiki there's a link titled "GRUB2 netboot development" that points
> > to:
> >
> > http://www.inma.ucl.ac.be/~guffens/grub2_netboot/index.html
> >
> > (broken link)
> >
> > Anyone knows what did this contain? Is there uncommitted work for network
> > support there? Who's guffens?
>
> I found an old article on this subject:
>
> http://lists.gnu.org/archive/html/grub-devel/2006-05/msg00020.html
>
> It seems that vincent guffens has ported a glue to bind grub2 and etherboot
> together. However, it's no longer maintained, and the patch is nowhere to be
> found.
>
> But porting etherboot to grub2 may not be that difficult after all, we can
> use the driver from etherboot, and the glue code from Grub Legacy. The problem
> is etherboot used in Grub Legacy is very old (5.0.5). The data structure has
> changed a lot since then, so the glue code needs to be modified accordingly.
>
> There is another method, that is to rely on PXE sevice. I have written a
> PXE driver for grub4dos, it uses real mode service provided by PXE stack to
> access remote files, for example, to load a kernel from server, uses:
>
> kernel (pd)/vmlinuz
> init (pd)/initrd
>
> The advantage of this methid is that it doesn't rely on network card, the PXE
> stack handles difference internally. The disadvantage is that the stack is
> present only when booting from PXE ROM (hardware rom or software rom from
> etherboot).
There's also the PXE implementation in my patched grub1 version:
http://os.inf.tu-dresden.de/~adam/grub/0.97/
The grub-0.97-os.3.README has some more infos, version os.5 is the current
released version.
Adam
--
Adam adam@os.inf.tu-dresden.de
Lackorzynski http://os.inf.tu-dresden.de/~adam/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-06-26 9:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-26 5:58 netboot Robert Millan
2007-06-26 9:01 ` netboot Bean
2007-06-26 9:28 ` netboot Adam Lackorzynski
-- strict thread matches above, loose matches on Subject: below --
1998-06-13 0:22 netboot Alberto Brealey
1998-06-13 9:05 ` netboot Gert Doering
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.