PXE预启动执行环境 | 修改开机启动画面
一,概述 注意:创建一个虚拟机,并且采用PXE方式启动,如果没有安装以下软件,那么无法启动 ##启动界面正在获取dhcp数据包 二,PXE网络安装 1,yum install httpd dhcp tftp-server syslinux -y 2.启用服务 systemctl stop firewalld systemctl disable firewalld ##启动httpd服务 systemctl start httpd systemctl enable httpd mount /iso/rhel-server-7.0-x86_64-dvd.iso /var/www/html/rhel7.0/ source /etc/rc.d/rc.loca 重新读取文件 ##启用tftp服务 vim /etc/xinetd.d/tftp systemctl restart xinetd chkconfig --list ###chkconfig命令检查,设置系统的各种服,它可查询操作系统在每一个执行等级中会执行哪些系统服务,其中包括各类常驻服务 3,制作预安装环境(/usr/share/doc/syslinux-4.05/pxelinux.txt中有详细信息) cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/ mkdir /var