4-28 14 views
一、环境准备
1.1 镜像
准备工作,如果没有可以去“http://ftp.sjtu.edu.cn/centos”下载
CentOS的历史版可以到“http://vault.centos.org/”下载
1 2 |
CentOS 7 安装镜像 CentOS 6 安装镜像 |
1.2 PXE环境
单台也可以哈,不强制必须要2台
1 2 |
文件服务器 192.168.99.2 PXE服务器 192.168.99.1 |
二、部署环境
2.1 文件服务器
2.1.1 关闭防火墙
1 2 3 4 |
[root@localhost ~]# systemctl disable firewalld [root@localhost ~]# systemctl stop firewalld [root@localhost ~]# sed -i '/SELINUX/s/enforcing/disabled/g' /etc/selinux/config [root@localhost ~]# reboot |
2.1.2 安装并配置中间件
1 2 3 |
[root@localhost ~]# yum install httpd system-config-kickstart -y [root@localhost ~]# systemctl enable httpd [root@localhost ~]# systemctl start httpd |
2.1.2 配置”文件服务器”
操作前先将两个镜像挂载到服务器中,此处我是分别挂载到“/mnt”和“/media”下
1 2 |
[root@localhost ~]# mkdir -p /var/www/html/centos/7 ; cp -r /mnt /var/www/html/centos/7/os [root@localhost ~]# cp -r /media /www/html/centos/6/os |
2.1.3 ks脚本
CentOS 6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
[root@localhost ~]# vim /var/www/html/ksdir/c6-ks.cfg #platform=x86, AMD64, or Intel EM64T #version=DEVEL # Install OS instead of upgrade install # Keyboard layouts keyboard 'us' # Root password rootpw --iscrypted $1$XxU20Fra$899RPyboZyHRoKAhJ8zfY. # Use network installation url --url="http://192.168.99.2/centos/6/os" # System language lang en_US # Firewall configuration firewall --disabled # System authorization information auth --useshadow --passalgo=sha512 # Use text mode install text firstboot --disable # SELinux configuration selinux --disabled # Network information network --bootproto=dhcp # Reboot after installation reboot # System timezone timezone Asia/Shanghai --isUtc # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record zerombr # Partition clearing information autopart clearpart --all --initlabel %packages @core %end %post --interpreter=/bin/bash ADDRESS=`ip addr |grep global |awk '{print $2}'` ADDR=${ADDRESS%%/*} PREFIX=${ADDRESS##*/} GATEWAY=`ip route show |grep default |awk '{print $3}'` DEVNAME=`ip addr |grep global |awk '{print $NF}'` sed -i -e "/BOOTPROTO/c BOOTPROTO=static\nIPADDR=${ADDR}\nPREFIX=${PREFIX}\nGATEWAY=${GATEWAY}" /etc/sysconfig/network-scripts/ifcfg-${DEVNAME} %end |
CentOS 7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
[root@localhost ~]# vim /var/www/html/ksdir/c7-ks.cfg #platform=x86, AMD64, or Intel EM64T #version=DEVEL # Install OS instead of upgrade install # Keyboard layouts keyboard 'us' # Root password rootpw --iscrypted $1$dpnoKSvm$oHrpeaZxQs9N0ErvwQ/qP1 # Use network installation url --url="http://192.168.99.2/centos/7/os" # System language lang en_US # Firewall configuration firewall --disabled # System authorization information auth --useshadow --passalgo=sha512 # Use text mode install text firstboot --disable # SELinux configuration selinux --disabled # Network information network --bootproto=dhcp # Reboot after installation reboot # System timezone timezone Asia/Shanghai --isUtc # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record zerombr # Partition clearing information autopart --type=lvm clearpart --all --initlabel %packages @^minimal @core chrony vim %end %post ADDRESS=`ip addr |grep global |awk '{print $2}'` ADDR=${ADDRESS%%/*} PREFIX=${ADDRESS##*/} GATEWAY=`ip route show |grep default |awk '{print $3}'` DEVNAME=`ip addr |grep global |awk '{print $NF}'` sed -i -e "/BOOTPROTO/c BOOTPROTO=static\nIPADDR=${ADDR}\nPREFIX=${PREFIX}\nGATEWAY=${GATEWAY}" /etc/sysconfig/network-scripts/ifcfg-${DEVNAME} %end |
1 |
[root@localhost ~]# chmod +r /var/www/html/ |
2.2 PXE 服务器
2.2.1 关闭防火墙
1 2 3 4 |
[root@localhost ~]# systemctl disable firewalld [root@localhost ~]# systemctl stop firewalld [root@localhost ~]# sed -i '/SELINUX/s/enforcing/disabled/g' /etc/selinux/config [root@localhost ~]# reboot |
2.2.2 安装并配置中间件
1 2 |
[root@localhost ~]# yum install dhcp tftp-server syslinux -y [root@localhost ~]# yum install httpd system-config-kickstart -y |
2.2.3 配置”PXE服务器”
2.2.3.1 配置tftp
1 2 3 4 5 6 7 8 |
[root@localhost ~]# mkdir /var/lib/tftpboot/pxelinux.cfg/ [root@localhost ~]# mkdir /var/lib/tftpboot/centos{6,7} [root@localhost ~]# cp /usr/share/syslinux/{pxelinux.0,menu.c32} /var/lib/tftpboot/ [root@localhost ~]# scp root@192.168.99.2:/var/www/html/centos/7/os/isolinux/{initrd.img,vmlinuz} /var/lib/tftpboot/centos7/ [root@localhost ~]# scp root@192.168.99.2:/var/www/html/centos/7/os/isolinux/isolinux.cfg /var/lib/tftpboot/pxelinux.cfg/default [root@localhost ~]# scp root@192.168.99.2:/var/www/html/centos/6/os/isolinux/{initrd.img,vmlinuz} /var/lib/tftpboot/centos6/ [root@localhost ~]# systemctl start tftp [root@localhost ~]# ss -tunlp |grep :69 |
2.2.3.2 配置dhcp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[root@localhost ~]# cp /usr/share/doc/dhcp*/dhcpd.conf.example /etc/dhcp/dhcpd.conf [root@localhost ~]# vim /etc/dhcp/dhcpd.conf default-lease-time 600; max-lease-time 7200; log-facility local7; subnet 192.168.99.0 netmask 255.255.255.0 { range 192.168.99.100 192.168.99.200; option routers 192.168.99.1; next-server 192.168.99.1; filename "pxelinux.0"; } [root@localhost ~]# systemctl enable dhcpd [root@localhost ~]# systemctl start dhcpd [root@localhost ~]# ss -tunlp |grep 67 |
2.2.3.3 配置引导菜单
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
[root@localhost ~]# vim /var/lib/tftpboot/pxelinux.cfg/default default menu.c32 timeout 60 menu title CentOS Linux PXE Install label centos7 menu default menu label Auto Install CentOS Linux^7 kernel centos7/vmlinuz append initrd=centos7/initrd.img ks=http://192.168.99.2/ksdir/c7-ks.cfg label centos6 menu label Auto Install CentOS Linux^6 kernel centos6/vmlinuz append initrd=centos6/initrd.img ks=http://192.168.99.2/ksdir/c6-ks.cfg label centos7 menu label ^Manual Install CentOS Linux 7 kernel centos7/vmlinuz append initrd=centos7/initrd.img ks=http://192.168.99.2/centos/7/os label centos6 menu label ^Manual Install CentOS Linux 6 kernel centos6/vmlinuz append initrd=centos6/initrd.img ks=http://192.168.99.2/centos/6/os label local menu label Boot from ^local drive localboot 0xffff menu end |
三、开始自动安装
将要安装的系统接入到跟PXE同一网段,然后从网络启动就好
如果想赏钱,可以用微信扫描下面的二维码,一来能刺激我写博客的欲望,二来好维护云主机的费用; 另外再次标注博客原地址 itnotebooks.com 感谢!
