PXE自动安装Linux系统
PXE 自动安装 Linux 系统 前提条件 1. 确保所有的终端和网络设备处于同一网段内。 2. 这个网段内只能有一台的 DHCP 服务器。 3. 所要装系统的裸机必须要支持 PXE (现在的电脑网卡都已经集成) 步骤 1. 配置 1. 对 pxe-server ,需要提前配置好 dhcp yum install syslinux -y ##pxe 架构 yum install tftp-server -y ##pxe 传输镜像用软件 然后,开启 tftp 服务 cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot vim /etc/xinetd.d/tftp disable = no ##rhel7.0 需要更改这个, 7.0 以上不需要更改, ps : systemctl start tftp-server ##rhel7.0 以上直接输入即可 然后重启服务 systemctl restart xinetd systemctl stop firewalld 配置 dhcp ,使其可以读取配置文件来安装 linux vim /etc/dhcpd/dhcpd.conf next-server 172.25.254.119; filename "pxelinux.0"; 然后将配置文件导入到 tftp 的目录 mkdir /var