pxe自动化批量安装系统(Centos7)

简介: PXE:preboot execute environment 环境实现:主服务器ip:10.0.10.1 1 tfpt trivial简单文件共享服务,基于udp协议工作; 加载系统安装程序; 69/udp [root@t2 ~]# yum list *tftp* [root@t2...

PXEpreboot execute environment

环境实现:主服务器ip10.0.10.1

tfpt

trivial简单文件共享服务,基于udp协议工作;

加载系统安装程序;

69/udp

[root@t2 ~]# yum list *tftp*

[root@t2 ~]# yum install tftp tftp-server

[root@t2 ~]# rpm -ql tftp-server

 1 /etc/xinetd.d/tftp
 2 /usr/lib/systemd/system/tftp.service
 3 /usr/lib/systemd/system/tftp.socket
 4 /usr/sbin/in.tftpd
 5 /usr/share/doc/tftp-server-5.2
 6 /usr/share/doc/tftp-server-5.2/CHANGES
 7 /usr/share/doc/tftp-server-5.2/README
 8 /usr/share/doc/tftp-server-5.2/README.security
 9 /usr/share/man/man8/in.tftpd.8.gz
10 /usr/share/man/man8/tftpd.8.gz
11 /var/lib/tftpboot           # 默认共享路径
View Code

[root@t2 ~]# systemctl start tftp.service

dhcp

dynamic host configuration protocol

提供地址池(租约);不能跨路由器;

能提供的信息包括:ip, netmask,  gateway,  dns server, dns search domain, nis server, lease time

C/S

Client 68/udp

Server67/udp

    C           S           C          S

dhcpdiscover-->dhcppoffer-->dhcprequest-->dhcpack

VM虚拟机提供dhcp服务功能,故测试不能使用自带的三种用户模式,应自建虚拟网络。

ifconfig eth1 10.0.10.1/24 up

[root@t2 ~]# yum -y install dhcp

[root@t2 ~]# rpm -ql dhcp

cp -p /usr/share/doc/dhcp-4.2.5/dhcpd.conf.example /etc/dhcp/dhcpd.conf

[root@t2 ~]# cat /etc/dhcp/dhcpd.conf

dhcpd.conf    

[root@t2 ~]# systemctl start dhcpd.service

通过另外一台服务器配置dhcp设置网卡后,在dhcp服务器上存在租赁记录:

[root@t2 /etc/dhcp]# tail /var/lib/dhcpd/dhcpd.leases

dhcpd.leases    
 1 lease 10.0.10.11 {
 2   starts 6 2017/08/19 14:46:16;
 3   ends 6 2017/08/19 14:56:16;
 4   cltt 6 2017/08/19 14:46:16;
 5   binding state active;
 6   next binding state free;
 7   rewind binding state free;
 8   hardware ethernet 00:0c:29:e3:ea:af;
 9   client-hostname "t3";
10 }

http

[root@t2 ~]# yum -y install httpd

[root@t2 ~]# cat /etc/httpd/conf/httpd.conf|grep IncludeOptional

#IncludeOptional conf.d/*.conf

[root@t2 ~]# systemctl start httpd.service

mount /dev/sr0 /var/www/html/Centos7

准备系统文件:

[root@t2 ~]# yum -y install syslinux

[root@t2 ~]# cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/

[root@t2 ~]# cp /media/cdrom/images/pxeboot/{vmlinuz,initrd.img} /var/lib/tftpboot/

[root@t2 ~]# cp /usr/share/syslinux/{chain.c32,mboot.c32,menu.c32,memdisk} /var/lib/tftpboot/

[root@t2 ~]# mkdir -pv /var/lib/tftpboot/pxelinux.cfg

[root@t2 ~]# cat pxelinux.cfg/default

1 default menu.c32
2 prompt 5 
3 timeout 15
4 MENU TITLE Hello , luomr
5 
6 LABEL linux
7 MENU LABEL Install CentOS / x86_64
8 KERNEL vmlinuz
9 APPEND initrd=initrd.img inst.repo=http://10.0.10.1/Centos7 ks=http://10.0.10.1/ks.cfg
default

确认文件:

[root@t2 /var/lib/tftpboot]# ls

chain.c32   mboot.c32  menu.c32    pxelinux.cfg

initrd.img  memdisk    pxelinux.0  vmlinuz

ks.cfg

注:以下为ks.cfg内容,可直接复制粘贴使用

[root@t2 ~]# cp ks.cfg /var/www/html/

  1 #platform=x86, AMD64, 或 Intel EM64T
  2 #version=DEVEL
  3 # Install OS instead of upgrade
  4 install
  5 # Keyboard layouts
  6 keyboard 'us'
  7 # Root password
  8 rootpw --plaintext 000000
  9 # Use network installation
 10 url --url="http://10.0.10.1/Centos7"
 11 # System language
 12 lang zh_CN
 13 # Firewall configuration
 14 firewall --disabled
 15 # System authorization information
 16 auth  --useshadow  --passalgo=sha512
 17 # Use graphical install
 18 graphical
 19 # SELinux configuration
 20 selinux --disabled
 21 # Do not configure the X Window System
 22 skipx
 23 
 24 # Network information
 25 network  --bootproto=dhcp --device=eth0
 26 # Reboot after installation
 27 reboot
 28 # System timezone
 29 timezone Asia/Shanghai
 30 # System bootloader configuration
 31 bootloader --location=mbr
 32 # Partition clearing information
 33 clearpart --all --initlabel
 34 # Disk partitioning information
 35 part /boot --fstype="ext4" --ondisk=sda --size=200
 36 part /usr/local --fstype="ext4" --ondisk=sda --size=8000
 37 part swap --fstype="swap" --ondisk=sda --size=800
 38 part / --fstype="ext4" --grow --ondisk=sda --size=1
 39 
 40 %packages
 41 @development
 42 @remote-system-management
 43 ElectricFence
 44 ant
 45 babel
 46 bzr
 47 chrpath
 48 cmake
 49 cvs
 50 expect
 51 imake
 52 ksc
 53 lrzsz
 54 libstdc++-docs
 55 mercurial
 56 nasm
 57 net-tools
 58 perltidy
 59 rpmdevtools
 60 rpmlint
 61 vim
 62 systemtap-sdt-devel
 63 systemtap-server
 64 
 65 %end
 66 
 67 %post --interpreter=/bin/sh
 68 #!/bin/bash
 69 #by luomr
 70 
 71 #deploy yum 
 72 rm -rf /etc/yum.repos.d/*.repo
 73 cat>/etc/yum.repos.d/local.repo << EOF
 74 [Centos7]
 75 name=This is a local repo
 76 baseurl=http://10.0.10.1/Centos7
 77 enabled=1
 78 gpgcheck=0
 79 EOF
 80 yum clean all && yum list
 81 
 82 #network
 83 systemctl restart network.service
 84 
 85 ifconfig |grep inet|awk 'NR==1{print $2}' >/tmp/ip_local
 86 ip=`cat /tmp/ip_local`
 87 #nwn : network name
 88 nwn=`ifconfig |grep eno|awk -F: '{print $1}'`
 89 path_n=/etc/sysconfig/network-scripts/ifcfg-"$nwn"
 90 
 91 
 92 sed -i 's/BOOTPROTO=dhcp/BOOTPROTO=static/g' $path_n
 93 cat>>$path_n <<EOF
 94 IPADDR=$ip
 95 NETMASK=255.255.255.0
 96 EOF
 97 
 98 ifdown $nwn && ifup $nwn
 99 
100 %end
ks.cfg

配置完毕,测试,本人实操成功!

 

-------------------------------------------------------------

作者: 罗穆瑞

转载请保留此段声明,且在文章页面明显位置给出原文链接,谢谢!

------------------------------------------------------------------------------

如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!

------------------------------------------------------------------------------

目录
相关文章
|
28天前
|
人工智能 自然语言处理 JavaScript
Agent-E:基于 AutoGen 代理框架构建的 AI 浏览器自动化系统
Agent-E 是一个基于 AutoGen 代理框架构建的智能自动化系统,专注于浏览器内的自动化操作。它能够执行多种复杂任务,如填写表单、搜索和排序电商产品、定位网页内容等,从而提高在线效率,减少重复劳动。本文将详细介绍 Agent-E 的功能、技术原理以及如何运行该系统。
82 5
Agent-E:基于 AutoGen 代理框架构建的 AI 浏览器自动化系统
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第16天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括配置系统源、安装 SQL Server 2019 软件包以及数据库初始化,确保 SQL Server 正常运行。
|
2月前
|
Linux 开发工具 Windows
CentOS8 64位系统 搭建内网穿透frp
【10月更文挑战第23天】本文介绍了如何在Linux系统上搭建frp内网穿透服务,并配置Windows客户端进行访问。首先,通过系统信息检查和软件下载,完成frp服务端的安装与配置。接着,在Windows客户端下载并配置frpc,实现通过域名访问内网地址。最后,通过创建systemd服务,实现frp服务的开机自动启动。
94 14
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第8天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统准备、配置安装源、安装 SQL Server 软件包、运行安装程序、初始化数据库以及配置远程连接。通过这些步骤,您可以顺利地在 CentOS 系统上部署和使用 SQL Server 2019。
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第7天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统要求检查与准备、配置安装源、安装 SQL Server 2019、配置 SQL Server 以及数据库初始化(可选)。通过这些步骤,你可以成功安装并初步配置 SQL Server 2019,进行简单的数据库操作。
|
2月前
|
存储 Linux Docker
centos系统清理docker日志文件
通过以上方法,可以有效清理和管理CentOS系统中的Docker日志文件,防止日志文件占用过多磁盘空间。选择合适的方法取决于具体的应用场景和需求,可以结合手动清理、logrotate和调整日志驱动等多种方式,确保系统的高效运行。
140 2
|
2月前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。通过具体案例,读者可以了解如何准备环境、下载源码、编译安装、配置服务及登录 MySQL。编译源码安装虽然复杂,但提供了更高的定制性和灵活性,适用于需要高度定制的场景。
123 3
|
2月前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。
本文介绍了在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。内容涵盖准备工作、下载源码、编译安装、配置服务、登录设置及实践心得,帮助读者根据需求选择最适合的安装方法。
114 2
|
2月前
|
存储 安全 Linux
VMware安装CentOS7
【11月更文挑战第11天】本文详细介绍了在 VMware 中安装 CentOS 7 的步骤,包括准备工作、创建虚拟机、配置虚拟机硬件和安装 CentOS 7。具体步骤涵盖下载 CentOS 7 镜像文件、安装 VMware 软件、创建和配置虚拟机硬件、启动虚拟机并进行安装设置,最终完成 CentOS 7 的安装。在安装过程中,需注意合理设置磁盘分区、软件选择和网络配置,以确保系统的性能和功能满足需求。
243 0
|
2月前
|
运维 监控 网络协议
自动化运维的魔法——打造高效、可靠的系统
【10月更文挑战第32天】在数字化时代的浪潮下,运维不再是简单的硬件维护和故障排除。它已经演变成一场关乎效率、稳定性和创新的技术革命。自动化运维,作为这场革命的核心,正引领着企业走向更加智能和高效的未来。本文将带你探索自动化运维的世界,揭示其背后的原理和实践,让你领略到自动化带来的无限可能。
31 0