2024年10月如何配置Kickstart脚本

发布时间:

  ⑴我们都知道,kickstart可用来自动化安装Linux系统,比手动安装速度更快,但是为了更好的安装系统,需要对kickstart脚本进行配置,下面小编就给大家介绍下配置kickstart脚本的方法,一起来学习下吧。

  ⑵配置kickstart脚本的方法

  ⑶###############################################################

  ⑷# Sample Kickstart Configuration File

  ⑸###############################################################

  ⑹###############################################################

  ⑺# point to a local installation server, or use “cdrom”

  ⑻###############################################################

  ⑼url --url

  ⑽rootpw RedHat

  ⑾bootloader --location=mbr --password=redhat

  ⑿###############################################################

  ⒀# partitioning

  ⒁###############################################################

  ⒂zerombr yes

  ⒃clearpart --all --initlabel

  ⒄part /boot --fstype ext --size

  ⒅part / --fstype ext --size --grow

  ⒆part swap --remended

  ⒇###############################################################

  ⒈# work configuration

  ⒉# - the following is for the “remended solution” outlined

  ⒊# in the Red Hat Academy Instructor‘s Guide

  ⒋###############################################################

  ⒌work --bootproto=dhcp --device=eth

  ⒍firewall --disabled

  ⒎#work --bootproto=static --ip=... --mask=...

  ⒏--device=eth

  ⒐#firewall --medium --http --port=https:tcp

  ⒑###############################################################

  ⒒# environment

  ⒓###############################################################