#platform=x86, AMD64, or Intel EM64T
#auth(必需)
#默认情况密码使用正常解码,我们这里使用md5解密。
auth --useshadow --enablemd5
# Clear the Master Boot Record
zerombr
# bootloader(必需)
#--location= — 指定引导目录方式 ,默认
bootloader --location=mbr
#install(可选)
#提示系统安装一个新系统操作优先于更新已存在系统
Install
#keyboard(必需)
#Sets system keyboard type.
keyboard us
#lang (必需)
lang en_US
#network (可选)
#network --bootproto=dhcp --device=eth0 --onboot=on
network --device eth0 --bootproto static --ip 192.168.51.145 --netmask 255.255.255.0 --gateway 192.168.51.254 --nameserver 202.67.240.222,203.80.96.10 --hostname testauto //要指定network,此处必须指定hostname
# clearpart(必需)
#--all —相当于初式化操作
#--initlabel — Initializes the disk label to the default for your architecture (for example msdos for x86 and gpt for Itanium). It is useful so that the installation program does not ask if it should initialize the disk label if installing to a brand new hard drive.
#clearpart --all –initlabel
clearpart --all –initlabel
# 使用图形安装
#graphical
# 防火墙
firewall –disabled //此处默认不需要
# SELinux configuration
selinux --disabled
# Run the Setup Agent on first boot
#firstboot --disable
# Installation logging level
#logging --level=info
# Use NFS installation media //指定NFS
nfs --server=192.168.51.139 --dir=/install
#Root password(必需)
rootpw --iscrypted $1$n7nvXV.C$W7Gb22PTpGKQUZZIrgk6N/ #此处可自行定义 详细请参考 http://www.lishiming.net/thread-731-1-1.html
# System timezone(可选 )
timezone Asia/Shanghai
# Install OS instead of upgrade
#reboot(可选 )
#系统安装成功后自动重启
reboot
#text(可选 )
#文字模式安装,默认为图形模式
text
# X Window System configuration information
#xconfig --defaultdesktop=GNOME --depth=32 --resolution=800x600
# Disk partitioning information
#onpart为使用已存在的磁盘,不格式化,而用ondisk新建磁盘
part / --fstype="ext3" --size=20480 –asprimary --ondisk=hda
part swap --fstype="swap" --size=51200 --ondisk=hda
part /usr --fstype="ext3" --size=20480 --ondisk=hda
part /home --fstype="ext3" --size=30720 --ondisk=hda
part /var --fstype="ext3" --size=1 –grow --ondisk=hda
part /usr/local --fstype="ext3" --size=2133499 --ondisk=hdb
part /data0 --fstype="ext3" --size=1 –grow --ondisk=hdb
#packages
#--ignoremissing 忽略缺少的软件包或软件包组,而不是暂停安装来向用户询问是中止还是继续安装
%packages --ignoremissing
@editors
@graphics
@x-software-development
@development-libs
@development-tools
kernel-devel
e2fsprogs
kernel
安装包根据情况而定。根据系统需要
更多参数这里不做过多介绍,可见RADHAD官网
#auth(必需)
#默认情况密码使用正常解码,我们这里使用md5解密。
auth --useshadow --enablemd5
# Clear the Master Boot Record
zerombr
# bootloader(必需)
#--location= — 指定引导目录方式 ,默认
bootloader --location=mbr
#install(可选)
#提示系统安装一个新系统操作优先于更新已存在系统
Install
#keyboard(必需)
#Sets system keyboard type.
keyboard us
#lang (必需)
lang en_US
#network (可选)
#network --bootproto=dhcp --device=eth0 --onboot=on
network --device eth0 --bootproto static --ip 192.168.51.145 --netmask 255.255.255.0 --gateway 192.168.51.254 --nameserver 202.67.240.222,203.80.96.10 --hostname testauto //要指定network,此处必须指定hostname
# clearpart(必需)
#--all —相当于初式化操作
#--initlabel — Initializes the disk label to the default for your architecture (for example msdos for x86 and gpt for Itanium). It is useful so that the installation program does not ask if it should initialize the disk label if installing to a brand new hard drive.
#clearpart --all –initlabel
clearpart --all –initlabel
# 使用图形安装
#graphical
# 防火墙
firewall –disabled //此处默认不需要
# SELinux configuration
selinux --disabled
# Run the Setup Agent on first boot
#firstboot --disable
# Installation logging level
#logging --level=info
# Use NFS installation media //指定NFS
nfs --server=192.168.51.139 --dir=/install
#Root password(必需)
rootpw --iscrypted $1$n7nvXV.C$W7Gb22PTpGKQUZZIrgk6N/ #此处可自行定义 详细请参考 http://www.lishiming.net/thread-731-1-1.html
# System timezone(可选 )
timezone Asia/Shanghai
# Install OS instead of upgrade
#reboot(可选 )
#系统安装成功后自动重启
reboot
#text(可选 )
#文字模式安装,默认为图形模式
text
# X Window System configuration information
#xconfig --defaultdesktop=GNOME --depth=32 --resolution=800x600
# Disk partitioning information
#onpart为使用已存在的磁盘,不格式化,而用ondisk新建磁盘
part / --fstype="ext3" --size=20480 –asprimary --ondisk=hda
part swap --fstype="swap" --size=51200 --ondisk=hda
part /usr --fstype="ext3" --size=20480 --ondisk=hda
part /home --fstype="ext3" --size=30720 --ondisk=hda
part /var --fstype="ext3" --size=1 –grow --ondisk=hda
part /usr/local --fstype="ext3" --size=2133499 --ondisk=hdb
part /data0 --fstype="ext3" --size=1 –grow --ondisk=hdb
#packages
#--ignoremissing 忽略缺少的软件包或软件包组,而不是暂停安装来向用户询问是中止还是继续安装
%packages --ignoremissing
@editors
@graphics
@x-software-development
@development-libs
@development-tools
kernel-devel
e2fsprogs
kernel
安装包根据情况而定。根据系统需要
更多参数这里不做过多介绍,可见RADHAD官网
编辑回复