搭建PXE+DHCP+Apache+KicStart无人值守安装

测试环境:CentOS release 5.5 (Final)关闭iptables Selinux
所需服务:Dhcp Vsftp TftpXinted

一、搭建好Yum源:

首先挂载光盘到mnt下

/dev/scd0             4.1G  4.1G     0 100% /media

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

mv /etc/yum.repos.d/CentOS-Media.repo /etc/yum.repos.d/CentOS-Media.repo.bak

注:centos5要想配置kickstart ,首先要配置本地yum源,要不然用system-config-kickstart时选不上包。

而且,yum 源的名字一定是[base],要不然会报:


Package selection is disabled due to problemsdownloading package information.


CentOS 5 的配置文件local.repo内容:


[base]

name=base

baseurl=file:///media/

gpgcheck=0

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5


下面安装httpd,安装如下

yum -y install httpd*

编辑/etc/httpd/conf.d/welcome.conf

注解掉

#<LocationMatch "^/+$">

#    Options -Indexes

#    ErrorDocument 403 /error/noindex.html

#</LocationMatch>

server httpd start


安装 tftp-server,并启用tftp服务,同时启动xinetd进程,步骤如下所示。


1.我们用命令安装tftp-server,命令如下:

1
yum -y install tftp-server

2.接着修改/etc/xinetd.d/tftp文件,将disable的值由yes变为no,内容如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
service tftp
{
socket_type    = dgram
protocol    = udp
wait      = yes
user      = root
server      = /usr/sbin/in .tftpd
server_args    = -s /tftpboot
disable      = no
per_source    = 11
cps      = 100 2
flags      = IPv4
}

3.接着重启xinetd进程,命令如下所示:

1
service xinetd restart





你可能感兴趣的:(linux,DHCP,pxe)