linux_wiki:os_install_kickstart

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
linux_wiki:os_install_kickstart [2016/11/28 22:40]
billdozor [CentOS 6 Example Kickstart File]
linux_wiki:os_install_kickstart [2019/05/25 23:50] (current)
Line 22: Line 22:
 ---- ----
  
-====== CentOS 6 Example Kickstart File ======+====== CentOS 6 Example Kickstart File (bios) ======
  
 The following kickstart file performs a network install of CentOS 6 minimal, on /dev/sda, using MBR, with LVM, and reboots after installation. The following kickstart file performs a network install of CentOS 6 minimal, on /dev/sda, using MBR, with LVM, and reboots after installation.
Line 45: Line 45:
  
 ## System Configuration ## ## System Configuration ##
-rootpw  --iscrypted <root-hash-here>+rootpw  --iscrypted <root-encrypted-password-here>
  
 ####################################### #######################################
Line 121: Line 121:
 ---- ----
  
-====== CentOS 7 Example Kickstart File ======+====== CentOS 7 Example Kickstart File (bios) ======
  
 **Modify the encrypted root password before using.** **Modify the encrypted root password before using.**
- 
-===== CentOS 7 BIOS Kickstart ===== 
  
 <code bash centos7-ks-bios.cfg> <code bash centos7-ks-bios.cfg>
Line 137: Line 135:
 ## Install Location ## ## Install Location ##
 graphical graphical
-nfs --server=10.0.0.200 --dir=/iso/centos7.2-dvd+nfs --server=10.1.2.--dir=/iso/centos7.2-dvd
  
 ## Locale Settings ## ## Locale Settings ##
Line 145: Line 143:
  
 ## System Configuration ## ## System Configuration ##
-rootpw  --iscrypted <root-hash-here>+rootpw  --iscrypted <root-encrypted-password-here>
  
 ####################################### #######################################
Line 173: Line 171:
 volgroup vglocal --pesize=4096 pv.01 volgroup vglocal --pesize=4096 pv.01
 logvol /tmp  --fstype="ext4" --size=2048 --name=lvtmp --vgname=vglocal logvol /tmp  --fstype="ext4" --size=2048 --name=lvtmp --vgname=vglocal
-logvol swap  --fstype="swap" --size=4096 --name=lvswap --vgname=vglocal+logvol swap  --fstype="swap" --size=8192 --name=lvswap --vgname=vglocal
 logvol /home  --fstype="ext4" --size=4096 --name=lvhome --vgname=vglocal logvol /home  --fstype="ext4" --size=4096 --name=lvhome --vgname=vglocal
 logvol /  --fstype="ext4" --size=4096 --name=lvroot --vgname=vglocal logvol /  --fstype="ext4" --size=4096 --name=lvroot --vgname=vglocal
Line 195: Line 193:
  
 ## Reboot After Installation ## ## Reboot After Installation ##
-reboot+reboot --eject 
 + 
 +#### Auto execute post install commands #### 
 +%post --interpreter /bin/sh --log=/root/ks-post.log 
 +
 +## Enter post install commands here to execute prior to reboot 
 +# Useful for performing something like the below example: 
 + 
 +# Startup rpcbind for NFS 
 +#systemctl start rpcbind 
 + 
 +# Mount admin share 
 +#mount -vt nfs 10.1.2.3:/admin /mnt 
 + 
 +# Create /root/scripts dir 
 +#mkdir /root/scripts 
 + 
 +# Copy the firstboot script to the new dir, set owner/permissions 
 +#cp -v /mnt/deploy/firstboot/firstboot.sh /root/scripts/ 
 +#chown -Rv root:root /root/scripts 
 +#chmod -Rv 700 /root/scripts 
 + 
 +# Copy firstboot service unit to system, set owner/permissions 
 +#cp -v /mnt/deploy/firstboot/firstboot.service /etc/systemd/system/ 
 +#chown -v root:root /etc/systemd/system/firstboot.service 
 +#chmod -v 644 /etc/systemd/system/firstboot.service 
 + 
 +# Enable firstboot service for next boot 
 +#systemctl enable firstboot.service 
 + 
 +# Un-mount admin share 
 +#umount -v /mnt 
 +
 +%end
 </code> </code>
  
 ---- ----
  
-===== CentOS 7 EFI Kickstart =====+====== CentOS 6/7 EFI Kickstart ======
  
 The only difference for EFI based systems in a kickstart file is the addition of a /boot/efi partition. The only difference for EFI based systems in a kickstart file is the addition of a /boot/efi partition.
  • linux_wiki/os_install_kickstart.1480390801.txt.gz
  • Last modified: 2019/05/25 23:50
  • (external edit)