kickstart文件

#version=DEVEL
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
#cdrom

url --url=http://192.168.137.130/pub/iso

# Use graphical install
#graphical

text

# Run the Setup Agent on first boot

firstboot --enable

ignoredisk --only-use=sda

# Keyboard layouts

keyboard --vckeymap=cn --xlayouts='cn'

# System language

lang zh_CN.UTF-8

# Network information

network  --bootproto=dhcp --device=ens33 --ipv6=auto --no-activate --onboot=yes

network  --hostname=centos7

# Root password

rootpw --iscrypted $6$NPp8cn9rg/B6BQvg$Vggld3Oa0d2fkAyaGU0UraYt8VayhrzRmmQ9Wc5cCHNaq3Uxy0xOc8rw2C47tNXBmVKFXErEP9mHUaqMyGJU31

# System services

services --disabled="chronyd"

# System timezone

timezone Asia/Shanghai --isUtc --nontp

# System bootloader configuration

bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda

#autopart --type=lvm

# Partition clearing information

clearpart --all --initlabel


part /boot --fstype="ext4" --size=500

part / --fstype="ext4" --grow

part swap --fstype="swap" --size=4096


%packages
@^minimal
@core
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

猜你喜欢

转载自blog.csdn.net/Helios32/article/details/117280133