Centos 7 kickstart的脚本

主要就是格式问题

# Install OS instead of upgrade

install

# Keyboard layouts

keyboard 'us'# Reboot after installation

reboot

# Root password

rootpw dhgate123

# System timezone

timezone Africa/Abidjan

# Use network installation

url --url=http://172.16.200.200/cobbler/ks_mirror/CentOS_7_x86_64

# System language

lang en_US

# Firewall configuration

firewall --disabled

# Network information

network --bootproto=dhcp --device=eth0

# System authorization information

auth --useshadow --passalgo=sha512

# Use graphical install

firstboot --disable

# SELinux configuration

selinux --disabled


# System bootloader configuration

bootloader --location=mbr

# Clear the Master Boot Record

zerombr

# Partition clearing information

clearpart --all --initlabel

# Disk partitioning information

part / --asprimary --fstype="ext4" --size=10240 --grow

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

part swap --size=16000


%packages

@core

%end

%post

yum install wget -y

%end

相关文章

文章浏览阅读903次。4.清除缓存目录(/var/cache/yum)下的软件...
文章浏览阅读1.5k次。Python 是一种高级解释性编程语言,已被...
文章浏览阅读2.6k次。打开终端或控制台,以root或具有sudo权...
文章浏览阅读744次,点赞24次,收藏26次。目标:通过AppSrv为...
文章浏览阅读1.1w次,点赞8次,收藏26次。chmod命令来自于英...
文章浏览阅读1.2k次。yum源的URL地址,本例中是文件系统的路...