通过使用PXE实现无人值守安装操作系统

Posted Jeffry Jiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过使用PXE实现无人值守安装操作系统相关的知识,希望对你有一定的参考价值。

一、环境准备

  • 一台centos7操作系统,地址:172.16.16.253/24
  • 关闭防火墙、selinux
  • 配置本地yum源

二、服务安装

yum install -y dhcp tftp-server httpd syslinux

三、服务配置

[root@pxe ~]# cat /etc/dhcp/dhcpd.conf
subnet 172.16.16.0 netmask 255.255.255.0 
  range 172.16.16.10 172.16.16.210;  #地址范围
  default-lease-time 3600;  #默认超时时间
  next-server 172.16.16.253;  #TFTP服务器地址
  filename "pxelinux.0";  #引导文件syslinux

[root@pxe ~]# cat /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 /var/lib/tftpboot
        disable                 = no  #修改此处为no
        per_source              = 11
        cps                     = 100 2
        flags                   = IPv4

cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot
cp /usr/share/syslinux/menu.c32 /var/lib/tftpboot
cp /mnt/isolinux/vmlinuz /var/lib/tftpboot
cp /mnt/isolinux/initrd.img /var/lib/tftpboot
mkdir pxelinux.cfg
touch default
[root@pxe pxelinux.cfg]# vim default
default menu.c32  #调用菜单文件
timeout 300  #设置超时时间
prompt 0  
label 1  #菜单
menu label ^1) install centos7  #显示内容
menu default  #默认菜单
kernel vmlinuz  #调用内核文件
append initrd=initrd.img method=http://172.16.16.253/centos7 ks=http://172.16.16.253/ks.cfg
mkdir /var/www/html/centos7
cp /mnt/* /var/www/html/centos7
cp anaconda-ks.cfg /var/www/html/ks.cfg

四、重启服务

重启所有服务,将网络与需要部署的服务器连接,开始自动部署操作系统。

以上是关于通过使用PXE实现无人值守安装操作系统的主要内容,如果未能解决你的问题,请参考以下文章

通过使用PXE实现无人值守安装操作系统

PXE高效批量网络装机实现Kickstart无人值守安装

Linux PXE远程安装服务 并实现KIckstart无人值守安装

PXE+Kickstack实现无人值守安装CentOS 7操作系统

PXE+Kickstack实现无人值守安装CentOS 7操作系统

部署PXE高效批量网络装机并实现Kickstart无人值守自动安装