PXE+Kickstart远程装机(Centos7.3)

简介: PXE+Kickstart远程装机(Centos7.3)

本人环境:CentOS7.3(192.168.2.1)

保证当前网段可以通信(192.168.2.0)

[root@localhost pxeboot]# systemctl stop firewalld
[root@localhost pxeboot]# setenforce 0

准备包(需要装机的ISO镜像):

虚拟机环境只需要mount挂在即可

[root@localhost ~]# mount /dev/sr0 /mnt/
mount: /dev/sr0 写保护,将以只读方式挂载

实施环境需要将镜像拷贝到服务器中

mount -o loop /root/iso系统文件.iso /mnt

配置阿里源或者配置本地yum源(二选一)

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
yum clean all
yum makecache

本地yum源

[root@localhost ~]# rm -f /etc/yum.repos.d/*
[root@localhost ~]# vi /etc/yum.repos.d/local.repo
[base]
name=local
baseurl=file:///mnt
enabled=1
gpgcheck=0

准备软件仓库(PXE引导请求时会到这里下载)

[root@localhost ~]# mkdir -p /var/ftp/centos7
[root@localhost ~]# cp -rp /mnt/* /var/ftp/centos7/

安装vsftpd服务(FTP服务提供系统请求)

[root@localhost ~]# yum -y install vsftpd
[root@localhost ~]# systemctl start vsftpd
[root@localhost ~]# systemctl enable vsftpd
Created symlink from /etc/systemd/system/multi-user.target.wants/vsftpd.service to /usr/lib/systemd/system/vsftpd.service.

安装TFTP服务(提供内核和引导文件)

[root@localhost ~]# yum -y install tftp-server
[root@localhost ~]# systemctl start tftp
[root@localhost ~]# systemctl enable tftp
Created symlink from /etc/systemd/system/sockets.target.wants/tftp.socket to /usr/lib/systemd/system/tftp.socket.

配置文件位于/etc/xinetd.d/tftp,将disable=yes改为no然后重启即可

[root@localhost ~]# vi /etc/xinetd.d/tftp 
 disable                 = no       #tftp默认为关闭
 wait          = no       #默认为yes表示一台一台连接,no为客户端可以多台连接(根据个人需求)
[root@localhost ~]# systemctl restart tftp

准备linux内核,初始化文件

也就是我们镜像文件中的image下

[root@localhost ~]# cd /mnt/images/pxeboot/
[root@localhost pxeboot]# ls
initrd.img  TRANS.TBL  vmlinuz
[root@localhost pxeboot]# cp vmlinuz initrd.img /var/lib/tftpboot/

准备PXE引导程序,启动菜单文件

[root@localhost pxeboot]# yum -y install syslinux
[root@localhost pxeboot]# cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/

编写启动菜单(此处不需要填写,创建即可,到kickstart的时候根据个人需要来添加内容)

[root@localhost ~]# mkdir /var/lib/tftpboot/pxelinux.cfg
[root@localhost ~]# vi /var/lib/tftpboot/pxelinux.cfg/default
default auto    #默认模式
prompt 1      #是否需要登录 1等待用户选择 0执行默认模式
label auto      #图像化安装
        kernel vmlinuz
        append initrd=initrd.img method=ftp://192.168.2.1/centos7
label linux text  #文本安装(最小化)
        kernel vmlinuz
        append text initrd=initrd.img method=ftp://192.168.2.1/centos7
label linux rescue  #安全模式
        kernel vmlinuz
        append rescue initrd=initrd.img method=ftp://192.168.2.1/centos7

安装DHCP

[root@localhost ~]# yum -y install dhcp
[root@localhost ~]# vim /etc/dhcp/dhcpd.conf 
subnet 192.168.2.0 netmask 255.255.255.0 {
        option routers 192.168.2.1;       #网关
        option subnet-mask 255.255.255.0;
        option domain-name "cjx.com";
        option domain-name-servers 8.8.8.8;
        default-lease-time 21600;
        max-lease-time 43200;
        range 192.168.2.10 192.168.2.100;   #分配的网段
        next-server 192.168.2.1;        #tftp服务器地址
        filename "pxelinux.0";          #指引引导文件
}
[root@localhost ~]# systemctl start dhcpd
[root@localhost ~]# systemctl enable dhcpd

安装kickstart无人值守安装

1. [root@localhost tftpboot]# yum -y install system-config-kickstart
2. [root@localhost tftpboot]# system-config-kickstart

根据个人需求来进行勾选

这里必要选择(勾选即可)

保存到/var/ftp/ks.cfg

[root@localhost ~]# ls /var/ftp/ks.cfg

根据个人需求添加

可以根据需要将/root/anaconda-ks.cfg 的软件包安装脚本复制到/var/ftp/ks.cfg文件中,只需要复制%packages 到%end 部分即可。如要求最小化安装,可复制下面内容:vim ks.cfg,加到末尾即可
%packages
@^minimal
%end

配置无人监控安装(实施最小化安装)

root@localhost ~]# vi /var/lib/tftpboot/pxelinux.cfg/default 
default linux test
prompt 0
label linux test
        kernel vmlinuz
        append test initrd=initrd.img method=ftp://192.168.2.1/centos7 ks=ftp://192.168.2.1/ks.cfg

PXE服务器端就配置完成了

客户端请求即可:
1.保证网段互通
2.服务器端防火墙和selinux都关闭
3.虚拟机安装需要内存大于2G(服务器应该都不会小于2G)
4.服务器端安装如果不自动跳转到网络安装,需要手动进入BOIS调节外网络安装
目录
相关文章
|
6月前
|
运维 网络协议 Linux
【运维系列】Centos7安装并配置PXE服务
PXE是Intel开发的预启动执行环境,允许工作站通过网络从远程服务器启动操作系统。它依赖DHCP分配IP,DNS服务分配主机名,TFTP提供引导程序,HTTP/FTP/NFS提供安装源。要部署PXE服务器,需关闭selinux和防火墙,安装dhcpd、httpd、tftp、xinetd及相关服务,配置引导文件和Centos7安装源。最后,通过syslinux安装引导文件,并创建pxelinux.cfg/default配置文件来定义启动参数。
355 0
|
6月前
|
Linux 网络安全 开发工具
利用pxe无人值守最小化安装centos7
利用pxe无人值守最小化安装centos7
88 0
|
6月前
|
存储 Linux 网络安全
PXE网络批量装机(centos7)
PXE(Preboot Execution Environment)装机是一种通过网络引导和安装操作系统的方法。它允许计算机在没有本地存储设备(如硬盘或光盘驱动器)的情况下,通过网络从远程服务器或网络共享位置加载操作系统安装文件并完成安装过程。
322 0
|
11月前
|
Linux 网络安全 数据安全/隐私保护
vm 永久有效 centos7 快速安装镜像,免去图形装机步骤
vm 永久有效 centos7 快速安装镜像,免去图形装机步骤
141 0
|
Linux 网络安全 芯片
【Linux网络服务】centos7搭建PXE高效能批量网络装机
【Linux网络服务】centos7搭建PXE高效能批量网络装机
【Linux网络服务】centos7搭建PXE高效能批量网络装机
|
Linux 芯片
PXE+Kickstart无人值守安装CentOS7各种类型系统
PXE+Kickstart无人值守安装CentOS7各种类型系统
260 0
|
Linux 网络安全 持续交付
PXE+Kicstart自动部署Centos系统
PXE+Kicstart自动部署Centos系统
205 0
|
Linux
CentOS7下部署Cobbler实现PXE+Kickstart自动化安装【脚本版】
CentOS7下部署Cobbler实现PXE+Kickstart自动化安装【脚本版】
248 0
CentOS7下部署Cobbler实现PXE+Kickstart自动化安装【脚本版】
|
Linux
CentOS7下部署Cobbler实现PXE+Kickstart自动化安装
CentOS7下部署Cobbler实现PXE+Kickstart自动化安装
371 0
CentOS7下部署Cobbler实现PXE+Kickstart自动化安装
|
Linux 网络安全 人机交互
VMware实现PXE+kickstart无人值守安装Centos7系统
VMware实现PXE+kickstart无人值守安装Centos7系统
407 0
VMware实现PXE+kickstart无人值守安装Centos7系统
下一篇
无影云桌面