ubuntu mass deployment kickstart file how/where?

Posted by gkrawiec on Ask Ubuntu See other posts from Ask Ubuntu or by gkrawiec
Published on 2012-05-31T12:57:08Z Indexed on 2012/06/01 10:51 UTC
Read the original article Hit count: 315

Filed under:
|
|
|

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

© Ask Ubuntu or respective owner

Related posts about 12.04

Related posts about clone