码迷,mamicode.com
首页 > 其他好文 > 详细

Centos 7 kickstart的脚本

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

标签:centos7 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


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

Centos 7 kickstart的脚本

标签:centos7 kickstart

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!