1.先安装一台 rhel5,IP地址为:192.168.1.205,主机名test1
2.将anaconda-ks.cfg复制到/var/www/html目录下并改名为kickstat.cfg
cp /root/anaconda-ks.cfg /var/www/html/kickstat.cfg
chmod +r /var/www/html/kickstat.cfg
3.启动http服务器
service httpd start
4.在/var/www/html 目录下建立软连接指向cdrom
ln -s /media/RHEL_5.6\ i386\ DVD/ iso
这步,我们可以用
mkdir /var/www/html/iso
mount -o loop rhel5.6.iso /var/www/html/iso
这样服务端就配置好了,注意iptables 策略增加80端口或者暂时停止iptables服务。
修改后kickstat文件如下
- [root@rheltest1 ~]#cat /var/www/html/kickstat.cfg
-
# Kickstart file automatically generated by anaconda.
-
-
install
-
#cdrom
-
url --url
-
key 49af89414d147589
-
lang en_US.UTF-8
-
keyboard us
-
xconfig --startxonboot
-
network --device eth0 --bootproto static --ip 192.168.1.206 --netmask 255.255.255.0 --gateway 192.168.1.254 --nameserver 218.2.135.1 --hostname rheltest2
-
rootpw --iscrypted $1$hHc3MqIB$nv3b2O.t0FECxiJYQ8QMX0
-
firewall --enabled --port=22:tcp
-
authconfig --enableshadow --enablemd5
-
selinux --enforcing
-
timezone --utc Asia/Shanghai
-
bootloader --location=mbr --driveorder=sda --append="rhgb quiet"
-
# The following is the partition information you requested
-
# Note that any partitions you deleted are not expressed
-
# here so unless you clear all partitions first, this is
-
# not guaranteed to work
-
clearpart --linux
-
part /boot --fstype ext3 --size=100
-
part swap --size=1024
-
part pv.4 --size=100 --grow
-
volgroup VolGroup00 --pesize=32768 pv.4
-
logvol / --fstype ext3 --name=LogVol01 --vgname=VolGroup00 --size=7328
-
logvol /usr/local --fstype ext3 --name=LogVol00 --vgname=VolGroup00 --size=12000
-
-
%packages
-
@admin-tools
-
@base
-
@cluster-storage
-
@clustering
-
@core
-
@development-libs
-
@development-tools
-
@dialup
-
@editors
-
@ftp-server
-
@gnome-desktop
-
@gnome-software-development
-
@games
-
@graphical-internet
-
@graphics
-
@java
-
@legacy-network-server
-
@legacy-software-development
-
@legacy-software-support
-
@mail-server
-
@mysql
-
@network-server
-
@news-server
-
@office
-
@openfabrics-enterprise-distribution
-
@printing
-
@server-cfg
-
@sound-and-video
-
@system-tools
-
@text-internet
-
@web-server
-
@smb-server
-
@x-software-development
-
@base-x
-
@xen
-
kexec-tools
-
iscsi-initiator-utils
-
bridge-utils
-
fipscheck
-
device-mapper-multipath
-
sgpio
-
perl-XML-SAX
-
perl-Convert-ASN1
-
perl-XML-NamespaceSupport
-
python-imaging
-
python-dmidecode
-
pexpect
-
imake
-
emacs
-
libsane-hpaio
-
tftp-server
-
vnc-server
-
dnsmasq
-
tog-pegasus
-
festival
-
audit
-
mesa-libGLU-devel
-
xorg-x11-utils
-
xorg-x11-server-Xnest
-
xorg-x11-server-Xvfb
红色部分是修改的,修改安装文件http路径,ip地址,防止冲突。蓝色部分原本是#注释的,是分区的操作,redhat为了安全起见就注释了分区的操作,可以由管理员手工分区,取消注释即为自动分区。
5.新安装机器,插入光盘在boot:后输入
linux ks=
回车。
如果有dhcp服务器系统会自动配置网络,如果没有就手工配置网络后,就等着安装完成吧。
阅读(1249) | 评论(0) | 转发(0) |