On Jan 18, 11:44 pm, brumik <
brum...@gmail.com> wrote:
>
> I would like to move the functionality of the kickstart server to
> Jumpstart. Mainly because we cannot / do not have access to remote
> site to install the kickstart server to any hardware.
>
> Unfortunately we have to use Solaris 10 because our jumpstart is
> colocated with other software certified for sol 10 only.
oh i'm sorry I misread. I thought you wanted it the other way
around :-}
it should be perfectly doable. As a matter of fact, we do exactly that
at $DAYJOB.
The trick is that we already had a solaris x86 jumpstart server,
whereas you may only have sparc jumpstart.
but basic principles are similar.
You configure the dhcp server to know about the clients. you tell it
to use the grub or pxegrub initial bootstrap loader over tftp.
That will then talk back to the tftp server once more, to load a
'grub' menu file.
That then tells the client where to load everything else.
A typical grub menu entry looks like
title 9 CentOS 5.7 64bit
kernel /boot/centos57/vmlinuz text \
ks=
http://1.2.3.4/kickstart/centos57 ksdevice=eth0
initrd /boot/centos57/initrd.img
So, then just make sure you also have an http server to serve out all
distribution files as above, and you'll be good to go.
The biggest pain is just initially getting DHCP working, if you arent
already using DHCP for your jumpstarts.