码迷,mamicode.com
首页 > Web开发 > 详细

测试环境-虚拟机_web.ks

时间:2016-05-26 19:11:21      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:cobbler

#platform=x86, AMD64,Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled										#是否启动iptables:不启动
# Install OS instead of upgrade
install													#安装全新的linux系统
# Use network installation
url --url="http://192.168.80.10/cobbler/ks_mirror/CentOS6.5-x86_64"		#URL地址
# Root password
rootpw --iscrypted $default_password_crypted			#root密码设置:使用setting配置文件中openssl加密的密码
# System authorization information
auth  --useshadow  --passalgo=sha512					#使用屏蔽口令,加密方式Sha512
# Use text mode install
text													#在文本模式下执行kickstart
# System keyboard
keyboard us												#使用英文键盘
# System language
lang zh_CN												#语言中文
# SELinux configuration
selinux --disabled										#是否启动selinux:不启动
# Do not configure the X Window System
skipx													#不配置X Window系统
# Installation logging level
logging --level=info									#这个命令控制安装过程中anaconda的错误日志,级别info
# Reboot after installation
reboot													#安装完系统后是否重启:重启
# System timezone
timezone  Asia/Shanghai									#时区:上海
# Network information
network  --bootproto=dhcp --device=eth0 --onboot=on		#网络配置,默认启动,eth0,dhcp分配IP地址
# System bootloader configuration
bootloader --location=mbr								#安装新引导装载程序,在主引导记录MBR上安装引导装载程序
# Clear the Master Boot Record	
zerombr													#清除主引导记录
# Partition clearing information
clearpart --all --initlabel								#删除系统上所有分区并根据不同体系结构把磁盘标签初始化为缺省设置
#
unsupported_hardware									#跳过Unsupported Hardware Detected提示菜单
#Disk partitioning information
part /boot --fstype="ext4" --size=200
part swap --size=4096
part / --fstype="ext4" --size=16000
part pv.01 --size=1 --grow
volgroup vg_opt pv.01
logvol /opt --vgname=vg_opt --size=1 --grow --name=lv_opt

%packages
@base
vim
gcc
gcc-c++
make
cmake
openssl-devel
lrzsz
ntp
%end

%post
echo -e "* soft nproc 65535\n* hard nproc 65535\n* soft nofile 65535\n* hard nofile 65535" >> /etc/security/limits.conf
echo ‘*/5 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1‘ > /var/spool/cron/root
%end


本文出自 “八英里” 博客,谢绝转载!

测试环境-虚拟机_web.ks

标签:cobbler

原文地址:http://5921271.blog.51cto.com/5911271/1783528

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