Expert kickstart options:
NIC bonding (RHEL 7 only)
Comment out the un-bonded network line and uncomment the bonded network alternative.
Change the slave NIC names to match the hardware
After installation review the files in /etc/sysconfig/network-scripts. Delete any referring to ens0 or ens1. Leave the ifcfg-bond* files.
Example:
network --device=bond0 --bondslaves=ens1,ens2--bootproto=static --ip=10.10.11.44 --netmask=255.255.255.0 --gateway=10.10.11.1 --nameserver=10.10.11.11 --hostname=acrmaster.bigcorp.com
Second NIC in different subnet
Uncomment the prototype second NIC line, and manually change the IP address, net mask and device name
Example:
network --device=ens3--bootproto=static --ip=10.10.12.123 --netmask=255.255.255.0
Two or more disks (designated disks)
You must designate a disk for each partition. The typical way to do this is to /calls on the largest disk and the other partitions on the smaller. Allow /var/lib/pgsql to grow to fill the smaller disk. Add the ondisk suffix to each partition
Example - note how the default size of /opt/witness has been increased to allow for larger log files:
part /boot --fstype=ext4 --size=200 --ondisk=sda
|