PXE装机服务搭建(安装CentOS7)
这⾥是⼯作中对⼀个pxe装机需求测试记录,所有操作都是在笔记本电脑上VMware虚拟机中实现,内容仅供参考。
环境介绍:
1、PXE测试服务器为⼀台1c2g的VMware虚拟机,⽹络模式为NAT模式,操作系统为CentOS7.9,IP地址为192.168.1.11。
2、需要准备⼀个CentOS7.9的ISO镜像包。
3、PXE服务其实是通过http/ftp、TFTP、DHCP服务来实现,这⾥安装在⼀台服务器上,可以分开部署。
学编程网课哪个好
搭建PXE服务器
1、配置本地yum源,这⾥不做介绍,可以参考:“”。这⾥我们将本地源的挂载⽬录配置为:/mnt/cdrom
它主要的作⽤是⽤来安装软件和提供远程服务器需要的系统⽂件。
2、安装httpd,pxe装机需要⽤到httpd服务的功能。这⾥使⽤httpd,ftp跟httpd⼏乎⼀样。
yum -y install httpd
3、创建⼀个存放系统镜像⽂件⽬录,然后把镜像⽂件cp到该⽬录中。
mkdir /var/www/html/centos7
cp -a /mnt/cdrom/* /var/www/html/centos7/
4、启动httpd,设置开机启动。
systemctl start httpd
systemctl enable httpd
5、安装TFTP服务,修改配置⽂件并启动。这⾥修改⼀下tftp的根⽬录,因为还需要测试ubuntu系统,这⾥做⼀个区分,如果只安装⼀个系统,可以不⽤修改。
yum -y install tftp-server
vim /etc/xinetd.d/tftp
#将disable=yes 修改为
disable=no
#将 server_args = -s /var/lib/tftpboot 修改为
server_args = -s /var/lib/tftpboot/centos7 -c
vim /usr/lib/systemd/system/tftpd.service
#将 ExecStart=/usr/sbin/in.tftpd -s /var/lib/tftpboot  修改为
ExecStart=/usr/sbin/in.tftpd -s /var/lib/tftpboot/centos7
systemctl daemon-reload
systemctl restart tftp
systemctl enable tftp
6、安装PXE引导程序。
yum -y install syslinux
7、将linux内核、初始化镜像⽂件和pxe引导⽂件cp到tftp⽬录中。
cp /mnt/cdrom/images/pxeboot/vmlinuz /var/lib/tftpboot/centos7
cp /mnt/cdrom/images/pxeboot/initrd.img /var/lib/tftpboot/centos7
cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/centos7
8、创建启动菜单⽬录。
mkdir /var/lib/tftpbppt/centos7/pxelinux.cfg
9、配置启动菜单,启动菜单分为典型启动菜单和⽆⼈值守启动菜单。
⽆⼈值守菜单
cat  <<EOF > /var/lib/tftpboot/centos7/pxelinux.cfg/default
default auto
prompt 0
label auto
kernel vmlinuz
append initrd=initrd.img method=192.168.1.11/centos7 ks=192.168.1.11/centos7/ks.cfg
EOF
典型启动菜单,典型菜单在安装好dhcp后就可以安装系统了。
cat  <<EOF > /var/lib/tftpboot/centos7/pxelinux.cfg/default
default auto
prompt 0
label auto
kernel vmlinuz
append initrd=initrd.img method=192.168.1.11/centos7
EOF
10、安装DHCP服务器,并且添加配置,启动。客户端会请求到dhcp服务器,dhcp服务器会提供给客户端IP信息、tftp信息、pxe引导⽂件信息等。所以,在客户端⽹络环境中,不要配置其他的dhcp服务器了。
yum -y install dhcp
cat <<EOF >> /etc/f
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.200;        #dhcp服务为客户端分配的ip范围
option domain-name-servers 8.8.8.8;        #dns
option domain-name "";
option routers 192.168.1.1;                #⽹关
option broadcast-address 192.168.1.255;    #⼴播
default-lease-time 21600;                  #租约时间,默认值是600,单位是秒
max-lease-time 43200;                      #最⼤租约时间
next-server 192.168.1.11;                  #指定TFTP服务器的地址
filename "pxelinux.0";                    #指定PXE引导程序的⽂件名
}
EOF
systemctl start dhcpd
systemctl enable dhcpd
11、准备ks.cfg⽂件,注意⽂件存放位置。这个是为了在安装系统的时候,⾃动去做相应配置,不需要⼈⼯⼲预,典型启动就不需要这个⽂件。第⼀次或者有cp此⽂件有问题的,建议通过图形界⾯,安装system-config-kickstart,⾃⼰配置保存⼀个⽂件。
cat <<EOF > /var/www/html/centos7/ks.cfg
horizontal tab#platform=x86, AMD64, 或 Intel EM64T
#version=DEVEL
java教程怎么使用# Install OS instead of upgrade
install
# Keyboard layouts
keyboard 'us'
# Root password
rootpw --iscrypted $1$Q/XYvFAh$qdLAUR8q7c3jjaGmefO5F/
# System language
lang en_US
# System authorization informationdreamweaver代码大全
auth  --useshadow  --passalgo=sha512
# Use graphical install
graphical
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# Firewall configuration
firewall --disabled
# Network information
network  --bootproto=dhcp --device=ens33
# Reboot after installation
reboot
# System timezonecentos和ubuntu
timezone Asia/Shanghai
# Use network installation
url --url="ftp://192.168.1.11/centos7"
# System bootloader configuration
bootloader --location=mbr
# Partition clearing information
clearpart --all
# Disk partitioning information
part /boot --fstype="xfs" --size=200
part / --fstype="xfs" --size=18980
%post --interpreter=/bin/bash
cd /pos.d
rm -rf *
echo -e "[base]" > po
echo -e "baseurl=ftp://192.168.1.11/centos7" >> po
echo -e "enabled=1" >> po
echo -e "gpgcheck=0" >> po
%end
#下⾯是⼿动添加的,保存出来的⽂件没有,意思就是最⼩化安装系统,如果需要安装其他包,可以写在%packages下⾯%packages
@^minimal
%end
EOF
汇编语言程序设计视频
上⾯⽂件中root密码是1q2w3e4r
12、图形界⾯保存ks.cfg。
12.1、安装kickstart
yum -y install system-config-kickstart
12.2、打开kickstart
12.3、基本配置,根据⾃⼰的需求选择。
12.4、安装⽅法,选择http,如果你搭建的ftp就选ftp。
12.5、引导装载程序选择安装
12.6、分区信息,选择清除主引导记录,添加好⾃⼰的分区信息。
12.7、⽹络添加dhcp
12.8、认证
12.9、禁⽤防⽕墙,根据需求,可以不禁⽤。
12.10、根据需求,选择是否安装图形界⾯
12.11、最后根据⾃⼰的需求,写⼊脚本信息,可以不写,我这个是按照上⾯的ks.cfg⽂件截图的,其他没截图的均为默认。
12.12、最后保存⽂件即可
测试安装
1、关闭vmware中NAT模式⽹卡的dhcp服务。
2、创建⼀个虚拟机,不选择安装镜像,⾄少配置2g内存,硬盘记得配置为ks.cfg⽂件中配置分区的总和⼤⼩以上,以上ks⽂件只需要20G。
3、然后直接运⾏虚拟机,正常情况下,它会⾃动安装好操作系统并重启。
PXE安装CentOS7的系统介绍就到这⾥,ubuntu的配置约有不同,可以参考:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。