1.kickstart介绍
在企业中安装多台操作系统时面临的问题?
当安装Linux操作系统时,安装过程会需要回答很多关于设定的问题。
这些问题必须手动选择,否则无法进行安装 。
当只安装1台Linux系统,手动选择设定工作量比较轻松,
当安装多台Linux,这些设定需要重复多次,这些重复动作是效率低下的操作。
如何解决以上问题?
用文件来记录所有安装过程中问题的答案,并让所有需要安装的主机自动读取。
kickstart作用:
以上解决方案中记录系统安装过程中所有问题答案的文件叫kickstart脚本。
2.步骤
在rhel7系统中提供图形的kickstart制作方式。
在rhel8中已经把图形的工具取消,并添加到rhn网络中。
在rhel8中如果无法通过rhn网络制作kickstart,可以使用模板生成。通过模板生成kickstart文件,在已经装好的rhel8中,/root/anaconda-ks.cfg
就是安装当前系统时回答的所有问题的答案生成的kickstart,此文件为kickstart模板。
1.设定网络
网桥模式:
cd /etc/sysconfig/network-scripts
vim ifcfg-br0
vim ifcfg-ens160
nmcli connection reload
bridge link show
2.关闭火墙和selinux
systemctl disable --now firewalld
systemctl status firewalld
setenforce 0
getenforce
3.配置软件仓库
配置本地仓库:
mkdir /pika
mount /dev/cdrom /pika
cd /etc/yum.repos.d
ls
rm -fr *
vim pika.repo
cat pika.repo
创建共享仓库:
4.搭建dhcp服务
修改配置文件:
查看ip的分配:
5.用模板制作kickstart
[root@localhost html]# cat westos.cfg
#version=RHEL8
#ignoredisk --only-use=nvme0n1
# Partition clearing information
clearpart --all --initlabel
# Use graphical install
#graphical
text
repo --name="AppStream" --baseurl=http://192.168.43.83/westos/AppStream
# Use CDROM installation media
#cdrom
url --url=http://192.168.43.83/westos
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8 --addsupport=zh_CN.UTF-8
# Network information
#network --bootproto=dhcp --device=ens160 --onboot=off --ipv6=auto --no-activate
#network --bootproto=dhcp --device=ens224 --onboot=off --ipv6=auto
network --bootproto=dhcp --onboot=on
# Root password
rootpw --iscrypted $6$OZMgUNKLkUtNwQb.$RQdfEXXKl5NIgK4YfzvAfED1BKeissBOyU7bhkehlVL05WH.1EusxkSuH4eiA8wVBkXTzsuYdsHkohXgX1/Yo/
# X Window System configuration information
#xconfig --startxonboot
# Run the Setup Agent on first boot
firstboot --disable
# System services
services --disabled="chronyd"
# System timezone
timezone Asia/Shanghai --isUtc --nontp
#user --name=westos --password=$6$N6NYSM.MRWJ8nhnN$TDQu8MabkBBK.KfxQKWXFn5WoV3Bm6Q2L.UMTTfUaYhL8sykRuvItP38D.xQkF1bzT9PDZKWfUx7sdZoHq8uB1 --iscrypted --gecos="westos"
# Disk partitioning information
part swap --fstype="swap" --size=500
part / --fstype="xfs" --grow --size=1
part /boot --fstype="xfs" --size=500
%packages
@Base
lftp
%end
%post
touch /mnt/file{1..3}
%end
6.测试
对node4进行装机: