centos 安装时配置项通过指定kickstart文件实现自动安装
已安装的centos 在用户目录下有一个anaconda-ks.cfg,可以当自动部署文件
ks文件需要的配置项:
graphic / text 是图形安装还是文本,自动化安装不需要
firstboot --enable 相关参数配置好了重启
ignorrdisk --only-use=sda 多磁盘驱动器下,除了需要安装的磁盘其他的磁盘忽略
keyboard --vckeymap=us --xlayouts='us'
lang en_US.UTF-8
# Network information
network --bootproto=static --device=ens33 --ip=192.168.2.2 --netmask=255.255.255.0 --gateway=192.168.2.1 --nameserver=192.168.2.1 --ipv6=auto --no-activate
network --bootproto=dhcp --hostname=localhost.localdomain
# Use network installation
url --url="http://192.168.1.12/centos"
# Root password
rootpw --iscrypted $6$P5xqcztL1QayQjoQ$qWSYWiDSscpPH9Mtkx8IOxSUzUmqILF8RfXTL7ywCkD.g4wCFxfXAijge3tL4gejo7icna/tlRQIjU1k0AtuV.
# System services
services --disabled="chronyd"
# Do not configure the X Window System
skipx
# System timezone
timezone Asia/Shanghai --isUtc --nontp
# System bootloader configuration
bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=vda
# Partition clearing information
clearpart --none --initlabel --drives=sda 初始化硬盘,--dirves指定初始化的是哪个盘
下面是lvm分区;目前没有分区,--ondisk指定分区在哪个磁盘,part分区命令
part pv.01 --fstype="lvmpv" --ondisk=sda --size=8192
part /boot -fstype="xfs" --ondisk=sda --size=1024
volgroup centos --pesize=4096 pv.01
logvol swap --fstype="swap" --size=1024 --vgname=centos --name=swap
logvol / --fstype="xfs" --size=8192 --vgname=centos --name=root
下面需要安装的软件包
%packages
@^minimal
@core
kexec-tools
kexec-tools
%end
%addon com_redhat_kdump --enable --reserve-mb='auto'
%end
%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end
reboot 重启
标签:centos,--,192.168,sda,自动化,安装,size From: https://www.cnblogs.com/isFinite-rs/p/18378121