display boot.msg
引用boot.msg,其配置文件为boot.cfg
menu background splash.jpg
menu title Welcome to CentOS 6.4!最上面显示的内容
menu color border 0 #ffffffff #00000000定义界面的颜色显示
menu color sel 7 #ffffffff #ff000000
定义选项
label linux
menu label ^Install or upgrade an existing system
menu default
kernel vmlinuz
append initrd=initrd.img ip=192.168.1.211 ks=cdrom:/ks.cfg
在这里指定了ks文件后,就自动使用ip进行网络启动安装了。
Basic Configuration:
Encrypt root password表示加密root的密码串
Target Architecture:表示平台
Reboot system after installation安装后的动作是重启,需要勾上。
Perform installation in text text mode (grphical is default)
安装界面默认使用图形界面,所以这个需要勾上。
Perform installlation in interactive mode使用交互式模式,不勾。
Install Method:安装源
HTTP Server:安装源的IP
HTTP Directory:目录
Boot Loader Options:引导选项
Install new boot loader安装新的bootloader,下面是使用旧的。
Use GRUB password:GRUB要不要加密。
Install boot loader on Master Boot Record(MBR)
将bootloader装入MBR中
Install boot loasder on first sector of the boot partition
将bootloader装入某一个分区中引导。
kernel parameters:crashkernel=auto rhgb quiet使用静默模式。
Partition Information定义分区
Network Configuration网络配置
Authentication认证,默认sha512就可以
pre
post这里不用指定#!/bin/bash
4,保存kickstart配置文件。
文件默认保存名字为ks.cfg
5,检查ks.cfg配置文件的错误。
# ksvalidator 2ks.cfg
kscfg配置文件详解:
命令段:
#platform=x86, AMD64, 或 Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled禁用防火墙
# Install OS instead of upgrade
install默认动作是安装
# Use network installation
url --url="ftp://1.0.0.12/centos/"使用FTP安装源
repo --name="CentOS" --baseurl="ftp://1.0.0.12/centos"
# Root password
rootpw --iscrypted $1$dpCtQEn6$pC3UGFPZEJJ5nVftiaScq0
# System authorization information
auth --useshadow --passalgo=sha512
# Use text mode install
text使用文本安装方式
# System keyboard
keyboard us使用美式英语键盘
# System language
lang zh_CN设置默认语言
# SELinux configuration
selinux --disabled禁用SELINUX
# Do not configure the X Window System
skipx
# Installation logging level
logging --level=info
# Reboot after installation
reboot安装完成时的动作
# System timezone
timezone Asia/Shanghai
# Network information
network --bootproto=static --device=eth0 --ip=1.0.0.7 --netmask=255.0.0.0 --onboot=on
# System bootloader configuration
bootloader --append="crashkernel=auto rhgb quiet" --location=mbr --driveorder="sda"
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel清空磁盘分区
# Disk partitioning information磁盘分区
part /boot --asprimary --fstype="ext4" --ondisk=sda --size=100
part / --asprimary --fstype="ext4" --ondisk=sda --size=20480
part swap --asprimary --fstype="swap" --ondisk=sda --size=500
脚本段:
%post
touch /tmp/abc.txt
%end
软件包段:
%packages
@base
@basic-desktop
@chinese-support
@core
@debugging
@desktop-debugging
@desktop-platform
@desktop-platform-devel
@development
@directory-client
@fonts
使用引导光盘引导后的选择:
点击两次"ESC"键,进入命令行模式,然后
linux ip=1.0.0.7 netmask=255.0.0.0 ks=ftp://1.0.0.12/pub/ks.cfg