9、生成kickstart脚本并放到http根目录/var/www/html下面:
auth --enableshadow --passalgo=sha512
install
url --url
firstboot --enable
ignoredisk --only-use=sda
keyboard --vckeymap=us --xlayouts='us'
lang en_US.UTF-8
network --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto
network --hostname=localhost.localdomain
rootpw --plaintext RedHat
timezone Asia/Chongqing --isUtc --nontp
xconfig --startxonboot
bootloader --location=mbr --boot-drive=sda
part / --fstype=xfs --size=5000
part swap --fstype=swap --size=512
clearpart --none --initlabel
%packages
@base
@core
1234567891011121314151617181920212223 @desktop-debugging
@dial-up
@fonts
@gnome-desktop
@guest-agents
@guest-desktop-agents
@input-methods
@internet-browser
@multimedia
@print-client
@x11
%end
%post
useradd redhat
echo redhat |passwd --stdin redhat
cat >/etc/yum.repos.d/test.repo<<EOF
[test]
name=test
baseurl=file:///iso
gpgcheck=0
<<EOF
%end
reboot
10、在/var/lib/tftpboot/pxelinux.0/default文件里面修改ks安装源
append initrd=initrd.img inst.ks=http://192.168.10.10/ks.cfg
11、新建虚拟机,启动虚拟机,从pxe network 启动,系统将会自动安装
-----------------------------分割线-----------------------------
使用PXE+DHCP+Apache+Kickstart无人值守安装CentOS5.8 x86_64
Linux PXE无人值守安装出现 PXE-E32:TFTP OPen timeout的解决办法
RHCE认证之无人值守安装Linux系统(FTP+TFTP+DHCP+Kickstart+PXE)
-----------------------------分割线-----------------------------