本文主要是介绍搭建PXE网络启动服务器安装CentOS7系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、服务器系统安装
PXE服务器使用CentOS7-x86_64位系统。最好配置上网权限,这样能够用yum方便地安装软件包。
二、安装TFTP服务
首先安装tftp软件包:yum install -y tftp-server
创建tftpboot目录用做tftp服务器的根目录:mkdir -p /tftpboot
编辑tftp配置文件/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 = dgramprotocol = udpwait = yesuser = rootserver = /usr/sbin/in.tftpd
<span style="color:#FF0000;"> server_args = -s /tftpbootdisable = no</span>per_source = 11cps = 100 2flags = IPv4
}
重启xinetd服务:service xinetd restart
三、获得pxelinux.0文件
pxelinux.0文件在syslinux包中:
yum install -y syslinux
cp /usr/share/syslinux/pxelinux.0 /tftpboot/
四、安装dhcp服务
这篇关于搭建PXE网络启动服务器安装CentOS7系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!