ubuntu mass deployment kickstart file how/where?
- by gkrawiec
i've succesfully been able to prepare an OEM image that is ready to be cloned and installed in about 1100 machines. My only issue right now is that when the machine boots for the first time it asks for the basic setup questions.
I think I have the kickstart file ready, but I dont know how to call it. My logic says that before I run the "prepare to ship to end user" script that I have to modify the boot parameters to call the ks file so the ks.cfg file goes with each drive.
My issue is I cant figure out how to modify the boot parameters. Also, i dont know if there is a log i can check to see if its actually calling it or not.
I am using ubuntu 12.04 desktop x64.
I am trying on /etc/default/grub
by modifying one line from
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash ks=file:/ks.cfg"
then I run an update-grub but its not working.
My ks.cfg file is:
-----------------------
#Generated by Kickstart Configurator
#System language
lang en_US
#System keyboard
keyboard us
#System timezone
timezone America/Tijuana
Initial user
user mytestuser --fullname "Test User" --iscrypted --password $sdfsfsdgthrttyujtkyktru
#Rebootafter installation
reboot
-------------------------
what am I doing wrong?
thanks,
-gk