安装时的流程
安装centos系统的流程和系统启动流程是有一些类似的, 我们以光盘安装为例来看一下安装的几个几段和他们分别对应的文件
- BIOS加电自检,同启动流程的加电自检
- 读取MBR,光盘中的isolinux/boot.cat文件就相当于MBR,由于硬盘中还没有引导程序,所以会自动加载到光盘中的这个文件当做MBR
- boot loader,通过光盘的MBR程序,加载这个光盘目录下面的isolinux.bin文件,他根据isolinux.cfg文件的选项来加载内核vmlinuz和initrd.img文件,而这个isolinux.cfg文件就是我们安装时所看到的菜单了
- initrd.img文件中的/sbin/loader文件会探测安装介质,如果探测到是cd安装,就会运行images目录中的stage2.img(安装过程需要的所有镜像)镜像文件,这个文件中最重要的就是anaconda程序,我们看到的安装过程中的向导图就是这个anaconda程序的作用。
5.然后就是anaconda程序接管安装过程了,这个过程可以使用交互的方式,也可以使用应答文件来自动安装,这里我们就需要使用应答文件来实现自动安装
安装步骤
我们的环境为centos6.9,然后做6.9和7.3的启动,所以需要有这两个版本的光盘。之后先将selinux和iptables禁掉,这样会少很多问题。
- 先安装需要的服务和程序并启用
[root@localhost ~]# yum -y install dhcp tftp-server httpd syslinux #安装
[root@localhost ~]# service httpd start #启动httpd服务
[root@localhost ~]# chkconfig httpd on #将httpd服务添加到开机启动
[root@localhost ~]# vim /etc/xinetd.d/tftp #tftp服务为xinetd代理的,将tftp配置文件中的disable=yes改为no,这样才能启用tftp
[root@localhost ~]#service xinetd start
- 修改dhcp配置文件并启用
[root@localhost ~]# mv /etc/dhcp/dhcpd.conf{,.bak} #将原文件做备份
[root@localhost ~]# cp /usr/share/doc/dhcp*/dhcpd.conf.sample/etc/dhcp/dhcpd.conf #将模板文件设为dhcpd配置文件
然后到配置文件中添加一段subnet
subnet 192.168.200.0 netmask 255.255.255.0 {
range 192.168.200.120 192.168.200.150;
filename "pxelinux.0";
next-server 192.168.8.133;
}
然后重启dhcp服务,如果出问题了就使用cat /var/log/messages |grep dhcpd
来查看问题
3.准备yum源和应答文件
准备yum源
[root@localhost ~]# mkdir /var/www/html/centos6
[root@localhost ~]# mkdir /var/www/html/centos7 #创建6和7的yum源的存放路径
[root@localhost ~]# mount /dev/sr0 /var/www/html/centos6 #挂载光盘
[root@localhost ~]# mount /dev/sr1 /var/www/html/centos7
制作应答文件
使用system-config-kickstart
命令,最后点左上角file将文件保存为/root/centos6.cfg(注意,如果提示没有X,就安装x window 和desktop这两个包组,然后在虚拟机里边的终端执行,在xdhell中需要开启哪个xstart才可以),这里为实验生成的应答文件,可以直接使用,注意文件一定是要可以读的,没有读权限就不能读取,用chmod a+r file
来将文件添加读权限
#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use network installation
url --url="http://192.168.200.100/centos6"
# Root password
rootpw --iscrypted $1$OAs3My.7$aICEXwH28N4o37CAZkiUG/
# System authorization information
auth --useshadow --passalgo=sha512
# Use graphical install
#graphical
text
reboot
# System keyboard
keyboard us
# System language
lang zh_CN
# SELinux configuration
selinux --enforcing
# Do not configure the X Window System
skipx
# Installation logging level
logging --level=info
# System timezone
timezone Asia/Shanghai
# Network information
network --bootproto=dhcp --device=eth0 --onboot=on
# System bootloader configuration
bootloader --location=mbr
zerombr
# Partition clearing information
clearpart --all
# Disk partitioning information
part /boot --fstype="ext4" --size=500
part / --fstype="ext4" --size=5000
part swap --fstype="swap" --size=2000
part /app --fstype="ext4" --size=5000
%post
useradd feng
echo "123" |passwd --stdin feng
rm -rf /etc/yum.repos.d/*
cat > /etc/yum.repos.d/base.repo << EOF
[base]
name=base
baseurl=http://172.16.0.1/centos/6
gpgcheck=0
EOF
%end
%packages
@base
@core
@server-policy
@workstation-policy
%end
然后将应答文件复制到/var/www/html/ks下
[root@localhost ~]# mkdir /var/www/html/ks
[root@localhost ~]# cp /root/centos6.cfg /var/www/html/ks
7的应答文件在7中同样的步骤实现,将生成的7的应答文件放到/var/www/html/ks中名为centos7.cfg
4.准备boot loader阶段文件
总共需要5个必要的文件,分别为vmlinuz内核文件,initrd.img虚拟磁盘文件,isolinux.cfg安装菜单文件,pxelinux.0用来引导使用pxe,和背景文件menu.c32,其中,前三个文件在光盘的isolinux/目录下直接可以复制过去,而后两文件是通过安装syslinux程序来生成的,步骤如下:
[root@localhost ~]# mkdir /var/lib/tftpboot/pxelinux.cfg/
[root@localhost ~]# mkdir /var/lib/tftpboot/centos6
[root@localhost ~]# mkdir /var/lib/tftpboot/centos7 #创建目录
[root@localhost ~]# cp /var/www/html/centos6/isolinux/{initrd.img,vmlinuz} /var/lib/tftpboot/centos6/
[root@localhost ~]# cp /var/www/html/centos7/isolinux/{initrd.img,vmlinuz} /var/lib/tftpboot/centos7/ #复制对应系统的内核和虚拟磁盘到对应的目录下
[root@localhost ~]# cp /usr/share/syslinux/{pxelinux.0,menu.c32} /var/lib/tftpboot/
[root@localhost pxelinux.cfg]# cp /var/www/html/centos6/isolinux/isolinux.cfg /var/lib/tftpboot/pxelinux.cfg/default #复制lsolinux.cfg菜单文件到指定目录并改名为default文件
编辑安装菜单
default menu.c32
#prompt 1
timeout 600
menu title Welcome to CentOS 6.9 or CentOS 7.3
label autocentos7
menu label ^Automatic Mini Install CentOS 7
kernel centos7/vmlinuz
append initrd=centos7/initrd.img ks=http://192.168.200.200/ks/centos7.cfg
label autocentos6
menu label Automatic ^Desktop Install CentOS 6
kernel centos6/vmlinuz
append initrd=centos6/initrd.img ks=http://192.168.200.200/ks/centos6.cfg
label manual
menu label ^Manual Install CentOS 6
kernel centos6/vmlinuz
append initrd=centos6/initrd.img
label local
menu label Boot from ^local drive
localboot 0xffff
完成后,就可以去验证了。