公司购买了一批HP DL360G5服务器,数量大约有200台.要统一安装 RedHat Enterprise Linux AS 4 update 7 操作系统.如果一台一台手动安装不但费时费事,更是会让我羸弱的身体雪上加霜.于是公欲善其事,必先利其器.我决定使用PXE来批量安装这批服务器.
以下是安装配置的过程:
硬件和软件环境:
硬件:找一台安装了RedHat Enterprise Linux AS 4 update 7 系统的服务器,一台48口千兆交换机(没有千兆交互机可以用百兆交换机替代)
软件:tftp-server、dhcpd、vsftpd
软件安装配置过程:
1、安装tftp-server
从 RedHat Enterprise Linux AS 4 update 7 安装光盘找到 tftp-server-0.39-3.el4.i386.rpm 软件包并安装.
修改 /etc/xinetd.d/tftp 文件:
# default: off
# description: The tftp server serves files using the trivial file transfer
# protocol. The tftp protocol is often used to boot diskless
# workstations, download configuration files to network-aware printers,
# and to start the installation process for some operating systems.
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
disable = no #将原来的yes改成no
per_source = 11
cps = 100 2
flags = IPv4
} |
拥有帝国一切,皆有可能。欢迎访问phome.net重启 xinetd 服务
#service xinetd restart.
配置tftpboot目录内的文件
复制 RedHat Enterprise Linux AS 4 update 7 安装光盘中 /images/pxeboot/ 目录下的initrd.img和vmlinuz到/tftpboot目录下.
从 http://www.kernel.org/pub/linux/utils/boot/syslinux/ 下载最新版的 syslinux.我下载的是syslinux-3.84.zip.
解压syslinux-3.84.zip
复制其中的com32/menu/vesamenu.c32 到 /tftpboot 目录下.
复制其中的core/pxelinux.0 到 /tftpboot 目录下.
复制其中com32/hdt/art/backgnd.png 到 /tftpboot 目录下.
在 /tftpboot 目录下新建一个目录pxelinux.cfg
在 /tftpboot/pxelinux.cfg 目录下建立default文件,内容如下:
default vesamenu.c32
prompt 0
menu TITLE PXE Boot Install Menu By WOSZM
MENU BACKGROUND backgnd.png
timeout 100
label linux4u7
MENU LABEL ^0----Install RedHat AS4 update 7
kernel vmlinuz
append ks=ftp://192.168.0.1/ks.cfg ksdevice=eth0 initrd=initrd.img ramdisk_size=8192 |
/tftpboot 目录下的内容如下:
-rw-r--r-- 1 root root 10155 Feb 5 10:53 backgnd.png
-rw-r--r-- 1 root root 4266944 Feb 1 10:05 initrd.img
-rwxr-xr-x 1 root root 16466 Feb 1 10:04 pxelinux.0
-drwxr-xr-x 2 root root 4096 Feb 5 11:31 pxelinux.cfg
.----------rwxr-x |