首页 > 其他 > 详细

Centos 7 kickstart的脚本

时间:2016-07-29 19:22:16      阅读:364      评论:0      收藏:0      [点我收藏+]

主要就是格式问题

# 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


本文出自 “让我men共同成长” 博客,请务必保留此出处http://wujingfeng.blog.51cto.com/5725921/1831754

Centos 7 kickstart的脚本

原文:http://wujingfeng.blog.51cto.com/5725921/1831754

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!