我們都知道,kickstart可用來自動化安裝Linux系統,比手動安裝速度更快,但是為了更好的安裝系統,需要對kickstart腳本進行配置,下面小編就給大家介紹下配置kickstart腳本的方法,一起來學習下吧。
配置kickstart腳本的方法
###############################################################
#
# Sample Kickstart Configuration File
#
###############################################################
###############################################################
#
# point to a local installation server, or use “cdrom”
#
###############################################################
url --url http://rha-server/pub/rhel5/
#cdrom
rootpw RedHat
bootloader --location=mbr --password=redhat
###############################################################
#
# partitioning
#
###############################################################
zerombr yes
clearpart --all --initlabel
part /boot --fstype ext3 --size 128
part / --fstype ext3 --size 1 --grow
part swap --recommended
###############################################################
#
# network configuration
# - the following is for the “recommended solution” outlined
# in the Red Hat Academy Instructor‘s Guide
#
###############################################################
network --bootproto=dhcp --device=eth0
firewall --disabled
#network --bootproto=static --ip=192.168.0.254 --netmask=255.255.255.0
--device=eth0
#firewall --medium --http --port=https:tcp
###############################################################
#
# environment
#
###############################################################
上一頁12下一頁共2頁