利用kickstart图形界面生成相应的kickstart.cfg文件

安装 Kickstart 软件

进入系统桌面,使用 command 安装kickstart软件

yum install system-config-kickstart

进入软件配置相应文件

利用kickstart图形界面生成相应的kickstart.cfg文件_第1张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第2张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第3张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第4张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第5张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第6张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第7张图片
image.png
利用kickstart图形界面生成相应的kickstart.cfg文件_第8张图片
image.png

采用硬盘安装的kickstart.cfg文件

#platform=x86, AMD64, 或 Intel EM64T
#version=DEVEL
# Install OS instead of upgrade
install
# Keyboard layouts
keyboard 'us'
# Root password
rootpw --iscrypted $1$x7WnizHL$lyQtOkow/sh2fYFk3LGNG/
# System timezone
timezone Asia/Shanghai
# System language
lang en_US
# Firewall configuration
firewall --disabled
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use graphical install
graphical
# Use hard drive installation media
harddrive --dir=/mnt --partition=sda
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx

# Network information
network  --bootproto=dhcp --device=eth0
# Reboot after installation
reboot
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --asprimary --fstype="xfs" --size=500
part / --asprimary --fstype="xfs" --grow --size=1

采用http方式安装的配置文件

#platform=x86, AMD64, 或 Intel EM64T
#version=DEVEL
# Install OS instead of upgrade
install
# Keyboard layouts
keyboard 'us'
# Root password
rootpw --iscrypted $1$TjakpGzz$Kfx8GocFqs9sQgfrnBjxu1
# System timezone
timezone Asia/Shanghai
# Use network installation
url --url="http://9.110.187.140/cdrom"
# System language
lang en_US
# Firewall configuration
firewall --disabled
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use graphical install
graphical
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx

# Network information
network  --bootproto=dhcp --device=eth0
# Reboot after installation
reboot
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --asprimary --fstype="xfs" --size=500
part / --asprimary --fstype="xfs" --grow --size=1

你可能感兴趣的:(利用kickstart图形界面生成相应的kickstart.cfg文件)