Kickstart File ExampleBelow is an example of a kickstart file that you can use to install and configure Parallels Cloud Server in unattended mode. You can use this file as the basis for creating your own kickstart files.
install
# cmdline
url --url http://example.com/pcs
lang en_US.UTF-8
keyboard us
# clearpart --drives=sda --all --initlabel # zerombr part /boot --fstype=ext4 --size=512 part / --fstype=ext4 --size=20096 part /vz --fstype=ext4 --size=40768 --grow part swap --size=4000
network --bootproto dhcp
rootpw xxxxxxxxx
auth --enableshadow --passalgo=sha512
timezone --utc America/New_York
bootloader --location=mbr
reboot
key XXXXXX-XXXXXX-XXXXXX-XXXXXX-XXXXXX
vznetcfg --net=virt_network1:eth0
%eztemplates --cache centos-6-x86_64
centos-6
%packages @base @core @vz @ps Kickstart file example for installing on EFI-based systems You can use the file above to install Parallels Cloud Server on BIOS-based systems. For installation on EFI-based systems, you need to modify the following places in the file (the changes are highlighted in bold): # The following 4 commands are used to remove all partitions from the SDA hard drive and create these partitions: /boot/efi (required for EFI-based systems), /boot, /, /vz, and swap. # clearpart --drives=sda --all --initlabel part /boot/efi --fstype=efi --grow --maxsize=200 --size=20 part /boot --fstype=ext4 --size=512 part / --fstype=ext4 --size=20096 part /vz --fstype=ext4 --size=40768 --grow part swap --size=4000
bootloader --location=partition Kickstart file example for upgrading to Parallels Cloud Server 6.0 Below is an example of a kickstart file you can use to upgrade your system to Parallels Cloud Server 6.0.
upgrade
url --url http://example.com/pcs
lang en_US.UTF-8
keyboard us
timezone --utc America/New_York
bootloader --upgrade |
||||
|