Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread Keith Christian
--- Keith Christian <[EMAIL PROTECTED]> wrote: > Using a kickstart file that stops with a curses dialog "You have multiple > network devices on this system. Which one do you want to install through?" I'll check them out for my next server build, and I'll reply to this thread. I appreciate the

Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread Ross Cavanagh
Jay Hilliard wrote: In your pxelinux config file: add ksdevice=bootif also add "IPAPPEND 2" to the end of the file In your kickstart file, don't specify a device: "network --bootproto dhcp" -Jay Karl R. Balsmeier wrote: yeah, it can be a bit daunting at first, but the below info is righ

Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread Ross Cavanagh
Jay Hilliard wrote: In your pxelinux config file: add ksdevice=bootif also add "IPAPPEND 2" to the end of the file In your kickstart file, don't specify a device: "network --bootproto dhcp" -Jay Karl R. Balsmeier wrote: yeah, it can be a bit daunting at first, but the below info is righ

Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread Jay Hilliard
In your pxelinux config file: add ksdevice=bootif also add "IPAPPEND 2" to the end of the file In your kickstart file, don't specify a device: "network --bootproto dhcp" -Jay Karl R. Balsmeier wrote: yeah, it can be a bit daunting at first, but the below info is right. also consider down

Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread Karl R. Balsmeier
yeah, it can be a bit daunting at first, but the below info is right. also consider down the road if you are using PXE/DHCP that there can be conflicts, so PXE to eth0, kickstart to eth1, that sort of thing. -krb nate wrote: Keith Christian wrote: PXE begins the install with DHCP, so K

Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread nate
Keith Christian wrote: > PXE begins the install with DHCP, so Kickstart should already know which of > eth0, eth1, etc. to use. add ksdevice=eth0 to your kernel parameters, or eth1 if you want to use eth1. This works for me anyways. nate ___ CentOS m

Re: [CentOS] Kickstart stops with dialog about which networking device - how to avoid

2008-02-05 Thread Timothy Selivanow
On Tue, 2008-02-05 at 12:51 -0800, Keith Christian wrote: > Using a kickstart file that stops with a curses dialog "You have multiple > network devices on this system. Which one do you want to install through?" > > The machine being configured with PXEboot has two ethernet interfaces. What's >