1. 环境说明

  1. [root@test ~]# cat /etc/redhat-release
  2. CentOS release 6.9 (Final)
  3. [root@test ~]# uname -r
  4. 2.6.32-696.el6.x86_64
  5. [root@test ~]# getenforce
  6. Disabled
  7. [root@test ~]# /etc/init.d/iptables status
  8. iptables: Firewall is not running.
  9. [root@test ~]# ifconfig eth0|awk -F "[ :]+" 'NR==2 {print $4}'
  10. 10.0.0.250
  11. [root@test ~]# hostname
  12. test

2. 配置DHCP

2.1 安装dhcp

  1. yum -y install dhcp
  2. rpm -ql dhcp |grep "dhcpd.conf"

2.2 编写配置文件

  1. [root@test ~]# cat /etc/dhcp/dhcpd.conf
  2. #
  3. # DHCP Server Configuration file.
  4. # see /usr/share/doc/dhcp*/dhcpd.conf.sample
  5. # see 'man 5 dhcpd.conf'
  6. #
  7. subnet 10.0.0.0 netmask 255.255.255.0 {
  8. range 10.0.0.100 10.0.0.200;
  9. option subnet-mask 255.255.255.0;
  10. default-lease-time 21600;
  11. max-lease-time 43200;
  12. next-server 10.0.0.250;
  13. filename "/pxelinux.0";
  14. }

————————————————————————————————
# 注释

  1. range 10.0.0.100 10.0.0.200; # 可分配的起始IP-结束IP
  2. option subnet-mask 255.255.255.0; # 设定netmask
  3. default-lease-time 21600; # 设置默认的IP租用期限
  4. max-lease-time 43200; # 设置最大的IP租用期限
  5. next-server 10.0.0.250; # 告知客户端TFTP服务器的ip
  6. filename "/pxelinux.0"; # 告知客户端从TFTP根目录下载pxelinux.0文件

2.3 启动服务

  1. [root@test ~]# /etc/init.d/dhcpd start
  2. Starting dhcpd: [ OK ]
  3. [root@test ~]# netstat -tunlp|grep dhcp
  4. udp 0 0 0.0.0.0:67 0.0.0.0:* 4578/dhcpd

3. 安装TFTP服务

3.1 安装tftp服务

  1. [root@linux-node1 ~]# yum -y install tftp-server

3.2 编写xindetd下的配置文件

  1. [root@linux-node1 ~]# vim /etc/xinetd.d/tftp
  2. # default: off
  3. # description: The tftp server serves files using the trivial file transfer \
  4. # protocol. The tftp protocol is often used to boot diskless \
  5. # workstations, download configuration files to network-aware printers, \
  6. # and to start the installation process for some operating systems.
  7. service tftp
  8. {
  9. socket_type = dgram
  10. protocol = udp
  11. wait = yes
  12. user = root
  13. server = /usr/sbin/in.tftpd
  14. server_args = -s /var/lib/tftpboot # 指定目录,保持默认,不用修改
  15. disable = no # 由原来的yes改为no
  16. per_source = 11
  17. cps = 100 2
  18. flags = IPv4
  19. }

3.3 启动服务,让xinetd 管理

  1. [root@linux-node1 ~]# /etc/init.d/xinetd restart
  2. Stopping xinetd: [FAILED]
  3. Starting xinetd: [ OK ]

3.4 检查端口

  1. [root@linux-node1 ~]# netstat -tunlp|grep 69
  2. udp 0 0 0.0.0.0:69 0.0.0.0:* 1106/xinetd

4. 配置HTTP服务

4.1 安装nginx的依赖包(pcre-devel openssl-devel)

  1. yum install -y pcre-devel openssl-devel

4.2 下载nginx软件

  1. wget http://nginx.org/download/nginx-1.10.3.tar.gz

解压软件

  1. tar xf nginx-1.10.3.tar.gz

4.3 创建管理用户 www

  1. useradd -M -s /sbin/nologin www

4.4 nginx软件编译安装过程

1、配置软件,在软件的解压目录中

  1. [root@web01 nginx-1.10.3]# ./configure --prefix=/application/nginx-1.10.3 --user=www --group=www --with-http_stub_status_module --with-http_ssl_module

通过软件编译过程中的返回值是否正确,确认配置是否正确

  1. [root@web01 nginx-1.10.3]# echo $?
  2. 0

2、编译软件

  1. [root@web01 nginx-1.10.3]# make

3、编译安装

  1. [root@web01 nginx-1.10.3]# make install

4.5 创建软连接

  1. [root@web01 application]# ln -s /application/nginx-1.10.3/ /application/nginx

4.6 修改nginx配置文件

添加一行配置,作用是显示目录里的所文件

  1. [root@test html]# vim ../conf/nginx.conf
  2. worker_processes 1;
  3. events {
  4. worker_connections 1024;
  5. }
  6. http {
  7. include mime.types;
  8. default_type application/octet-stream;
  9. sendfile on;
  10. keepalive_timeout 65;
  11. server {
  12. listen 80;
  13. server_name localhost;
  14. location / {
  15. autoindex on;
  16. root html;
  17. index index.html index.htm;
  18. }
  19. error_page 500 502 503 504 /50x.html;
  20. location = /50x.html {
  21. root html;
  22. }
  23. }
  24. }

4.7 启动程序

  1. [root@web01 application]# /application/nginx/sbin/nginx
  2. [root@web01 application]#

检查是否启动

  1. [root@web01 application]# ps -ef |grep nginx
  2. root 26548 1 0 20:13 ? 00:00:00 nginx: master process /application/nginx/sbin/nginx
  3. www 26549 26548 0 20:13 ? 00:00:00 nginx: worker process
  4. root 26551 23431 3 20:13 pts/0 00:00:00 grep --color=auto nginx

检查端口信息

  1. [root@web01 application]# netstat -lntup |grep 80
  2. tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 26548/nginx

5. 挂载光盘

5.1 删除默认的主页文件,创建挂载目录

  1. cd /application/nginx-1.10.3/html && \rm *.html
  2. mkdir -p /application/nginx-1.10.3/html/ios

5.2 挂载光盘

  1. mount /dev/cdrom /application/nginx-1.10.3/html/ios/

5.3 检查挂载信息

  1. [root@test html]# df -h
  2. Filesystem Size Used Avail Use% Mounted on
  3. /dev/sda3 19G 1.8G 16G 10% /
  4. tmpfs 238M 0 238M 0% /dev/shm
  5. /dev/sda1 190M 40M 141M 22% /boot
  6. /dev/sr0 3.7G 3.7G 0 100% /application/nginx-1.10.3/html/ios/

6. 配置支持PXE的启动程序

安装syslinux

  1. yum -y install syslinux

复制启动菜单程序文件

  1. [root@test ~]# cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/
  2. [root@test ~]# cp -a /application/nginx-1.10.3/html/isolinux/* /var/lib/tftpboot/
  3. [root@test ~]# ls /var/lib/tftpboot/
  4. boot.cat grub.conf isolinux.bin memtest splash.jpg vesamenu.c32
  5. boot.msg initrd.img isolinux.cfg pxelinux.0 TRANS.TBL vmlinuz

新建一个pxelinux.cfg目录,存放客户端的配置文件。

  1. mkdir -p /var/lib/tftpboot/pxelinux.cfg
  2. cp -a /application/nginx-1.10.3/html/isolinux/isolinux.cfg /var/lib/tftpboot/pxelinux.cfg/default

7. 创建一个新的虚拟机

不要使用光盘,然后开机
KICKSTART无人值守安装 - 图1
  出现此界面说明上面的步骤都配置正确

  1. [root@test ~]# cat /var/lib/tftpboot/pxelinux.cfg/default
  2. default vesamenu.c32 # 默认加载一个菜单
  3. #prompt 1 # 开启会显示命令行'boot: '提示符。prompt值为0时则不提示,将会直接启动'default'参数中指定的内容。
  4. timeout 600 # timeout时间是引导时等待用户手动选择的时间,设为1可直接引导,单位为1/10秒。
  5. display boot.msg
  6. # 菜单背景图片、标题、颜色。
  7. menu background splash.jpg
  8. menu title Welcome to CentOS 6.9!
  9. menu color border 0 #ffffffff #00000000
  10. menu color sel 7 #ffffffff #ff000000
  11. menu color title 0 #ffffffff #00000000
  12. menu color tabmsg 0 #ffffffff #00000000
  13. menu color unsel 0 #ffffffff #00000000
  14. menu color hotsel 0 #ff000000 #ffffffff
  15. menu color hotkey 7 #ffffffff #ff000000
  16. menu color scrollbar 0 #ffffffff #00000000
  17. # label指定在boot:提示符下输入的关键字,比如boot:linux[ENTER],这个会启动label linux下标记的kernel和initrd.img文件。
  18. label linux # 一个标签就是前面图片的一行选项
  19. menu label ^Install or upgrade an existing system
  20. menu default
  21. kernel vmlinuz # 指定要启动的内核。同样要注意路径,默认是/tftpboot目录
  22. append initrd=initrd.img # 指定追加给内核的参数,initrd.img是一个最小的linux系统
  23. label vesa
  24. menu label Install system with ^basic video driver
  25. kernel vmlinuz
  26. append initrd=initrd.img nomodeset
  27. label rescue
  28. menu label ^Rescue installed system
  29. kernel vmlinuz
  30. append initrd=initrd.img rescue
  31. label local
  32. menu label Boot from ^local drive
  33. localboot 0xffff
  34. label memtest86
  35. menu label ^Memory test
  36. kernel memtest
  37. append -

8. 创建ks.cfg文件

通常,我们在安装操作系统的过程中,需要大量的和服务器交互操作,为了减少这个交互过程,kickstart就诞生了。使用这种kickstart,只需事先定义好一个Kickstart自动应答配置文件ks.cfg(通常存放在安装服务器上),并让安装程序知道该配置文件的位置,在安装过程中安装程序就可以自己从该文件中读取安装配置,这样就避免了在安装过程中多次的人机交互,从而实现无人值守的自动化安装。
生成kickstart配置文件的三种方法:
方法1、
   每安装好一台Centos机器,Centos安装程序都会创建一个kickstart配置文件,记录你的真实安装配置。
  如果你希望实现和某系统类似的安装,可以基于该系统的kickstart配置文件来生成你自己的kickstart配置文件。(生成的文件名字叫anaconda-ks.cfg位于/root/anaconda-ks.cfg)
方法2、
  Centos提供了一个图形化的kickstart配置工具。在任何一个安装好的Linux系统上运行该工具,就可以很容易地创建你自己的kickstart配置文件。
  kickstart配置工具命令为redhat-config-kickstart(RHEL3)或system-config-kickstart(RHEL4,RHEL5).网上有很多用CentOS桌面版生成ks文件的文章,如果有现成的系统就没什么可说。但没有现成的,也没有必要去用桌面版,命令行也很简单。
方法3、
  阅读kickstart配置文件的手册。用任何一个文本编辑器都可以创建你自己的kickstart配置文件。

ks.cfg文件详解

  1. 官网文档
  2. CentOS5 : http://www.centos.org/docs/5/html/Installation_Guide-en-US/s1-kickstart2-options.html
  3. CentOS6 : https://access.redhat.com/knowledge/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Installation_Guide/s1-kickstart2-options.html

官网自带中文版,选一下语言即可
ks.cfg文件组成大致分为3段

  • 命令段
    键盘类型,语言,安装方式等系统的配置,有必选项和可选项,如果缺少某项必选项,安装时会中断并提示用户选择此项的选项
  • 软件包段
    1. %packages
    2. @groupname:指定安装的包组
    3. package_name:指定安装的包
    4. -package_name:指定不安装的包

在安装过程中默认安装的软件包,安装软件时会自动分析依赖关系。

  • 脚本段(可选)
    1. %pre:安装系统前执行的命令或脚本(由于只依赖于启动镜像,支持的命令很少)
    2. %post:安装系统后执行的命令或脚本(基本支持所有命令) | 关键字 | 含义 | | —- | —- | | install | 告知安装程序,这是一次全新安装,而不是升级upgrade。 | | url --url=" " | 通过FTPHTTP从远程服务器上的安装树中安装。
      url --url="http://10.0.0.7/CentOS-6.7/"
      url --url ftp://<username>:<password>@<server>/<dir> | | nfs | 从指定的NFS服务器安装。
      nfs --server=nfsserver.example.com --dir=/tmp/install-tree | | text | 使用文本模式安装。 | | lang | 设置在安装过程中使用的语言以及系统的缺省语言。lang en_US.UTF-8 | | keyboard | 设置系统键盘类型。keyboard us | | zerombr | 清除mbr引导信息。 | | bootloader | 系统引导相关配置。
      bootloader --location=mbr --driveorder=sda --append="crashkernel=auto rhgb quiet"
      --location=,指定引导记录被写入的位置.有效的值如下:mbr(缺省),partition(在包含内核的分区的第一个扇区安装引导装载程序)或none(不安装引导装载程序)。
      --driveorder,指定在BIOS引导顺序中居首的驱动器。
      --append=,指定内核参数.要指定多个参数,使用空格分隔它们。 | | network | 为通过网络的kickstart安装以及所安装的系统配置联网信息。
      network --bootproto=dhcp --device=eth0 --onboot=yes --noipv6 --hostname=CentOS6
      --bootproto=[dhcp/bootp/static]中的一种,缺省值是dhcpbootpdhcp被认为是相同的。
      static方法要求在kickstart文件里输入所有的网络信息。
      network --bootproto=static --ip=10.0.0.100 --netmask=255.255.255.0 --gateway=10.0.0.2 --nameserver=10.0.0.2
      请注意所有配置信息都必须在一行上指定,不能使用反斜线来换行。
      --ip=,要安装的机器的IP地址.
      --gateway=,IP地址格式的默认网关.
      --netmask=,安装的系统的子网掩码.
      --hostname=,安装的系统的主机名.
      --onboot=,是否在引导时启用该设备.
      --noipv6=,禁用此设备的IPv6.
      --nameserver=,配置dns解析. | | timezone | 设置系统时区。timezone --utc Asia/Shanghai | | authconfig | 系统认证信息。authconfig --enableshadow --passalgo=sha512
      设置密码加密方式为sha512 启用shadow文件。 | | rootpw | root密码 | | clearpart | 清空分区。clearpart --all --initlabel
      --all 从系统中清除所有分区,--initlable 初始化磁盘标签 | | part | 磁盘分区。
      part /boot --fstype=ext4 --asprimary --size=200
      part swap --size=1024
      part / --fstype=ext4 --grow --asprimary --size=200
      --fstype=,为分区设置文件系统类型.有效的类型为ext2,ext3,swapvfat
      --asprimary,强迫把分区分配为主分区,否则提示分区失败。
      --size=,以MB为单位的分区最小值.在此处指定一个整数值,如500.不要在数字后面加MB
      --grow,告诉分区使用所有可用空间(若有),或使用设置的最大值。 | | firstboot | 负责协助配置redhat一些重要的信息。
      firstboot --disable | | selinux | 关闭selinuxselinux --disabled | | firewall | 关闭防火墙。firewall --disabled | | logging | 设置日志级别。logging --level=info | | reboot | 设定安装完成后重启,此选项必须存在,不然kickstart显示一条消息,并等待用户按任意键后才重新引导,也可以选择halt关机。 |

9. 查看系统安装完成的anaconda-ks.cfg

  1. [root@test ~]# cat anaconda-ks.cfg
  2. # Kickstart file automatically generated by anaconda.
  3. #version=DEVEL
  4. install
  5. cdrom
  6. lang en_US.UTF-8
  7. keyboard us
  8. network --onboot no --device eth0 --bootproto dhcp --noipv6
  9. rootpw --iscrypted $6$.8PjXDBfzrUEFZte$IfTqwmdHXTJ6HD5/mYOuhuNMhVWaJI0xwyRMvOIrYkaEZduHVYuTEfjbgAqEuEsJii0wkBQvCVgF.KRG9ikwu0
  10. firewall --service=ssh
  11. authconfig --enableshadow --passalgo=sha512
  12. selinux --enforcing
  13. timezone Asia/Shanghai
  14. bootloader --location=mbr --driveorder=sda --append="crashkernel=auto rhgb quiet"
  15. # The following is the partition information you requested
  16. # Note that any partitions you deleted are not expressed
  17. # here so unless you clear all partitions first, this is
  18. # not guaranteed to work
  19. #clearpart --none
  20. #part /boot --fstype=ext4 --asprimary --size=200
  21. #part swap --asprimary --size=768
  22. #part / --fstype=ext4 --grow --asprimary --size=200
  23. repo --name="CentOS" --baseurl=cdrom:sr0 --cost=100
  24. %packages
  25. @base
  26. @compat-libraries
  27. @core
  28. @debugging
  29. @development
  30. @server-policy
  31. @workstation-policy
  32. python-dmidecode
  33. sgpio
  34. device-mapper-persistent-data
  35. systemtap-client

9.1 编写ks文件

  1. [root@test ~]# grub-crypt
  2. Password: 123456
  3. Retype password: 123465
  4. $6$OH3zrKw7ruG5mtIh$8bV2RhvoB72VCIXYY.2ROFi8AOLdI3lHGB.rkGDEhlqxTZduPE3VoJW2OIZRA1y9Gw4Zka461IBZ9VuIIaNqK.

创建ks文件存放目录

  1. [root@test ~]# mkdir /application/nginx-1.10.3/html/ks_config -p

ks文件内容

  1. [root@test ks_config]# cat /application/nginx-1.10.3/html/ks_config/CentOS-6.9-ks.cfg
  2. # Kickstart Configurator for CentOS 6.9 by hou zhaoshun
  3. install
  4. url --url="http://10.0.0.250/ios/"
  5. text
  6. lang en_US.UTF-8
  7. keyboard us
  8. zerombr
  9. bootloader --location=mbr --driveorder=sda --append="crashkernel=auto rhgb quiet"
  10. network --bootproto=dhcp --device=eth0 --onboot=yes --noipv6 --hostname=CentOS6
  11. timezone --utc Asia/Shanghai
  12. authconfig --enableshadow --passalgo=sha512
  13. rootpw --iscrypted $6$X20eRtuZhkHznTb4$dK0BJByOSAWSDD8jccLVFz0CscijS9ldMWwpoCw/ZEjYw2BTQYGWlgKsn945fFTjRC658UXjuocwJbAjVI5D6/
  14. clearpart --all --initlabel
  15. part /boot --fstype=ext4 --asprimary --size=200
  16. part swap --size=768
  17. part / --fstype=ext4 --grow --asprimary --size=200
  18. firstboot --disable
  19. selinux --disabled
  20. firewall --disabled
  21. logging --level=info
  22. reboot
  23. %packages
  24. @base
  25. @compat-libraries
  26. @debugging
  27. @development
  28. tree
  29. nmap
  30. sysstat
  31. lrzsz
  32. dos2unix
  33. telnet
  34. %post
  35. wget -O /tmp/optimization.sh http://10.0.0.250/ks_config/optimization.sh &>/dev/null
  36. /bin/sh /tmp/optimization.sh
  37. %end

10. 编写开机优化脚本

  1. [root@test ks_config]# cat /application/nginx-1.10.3/html/ks_config/optimization.sh
  2. #!/bin/bash
  3. ##############################################################
  4. # File Name: /var/www/html/ks_config/optimization.sh
  5. # Version: V1.0
  6. # Author: houzhaoshun
  7. # Organization: blog.znix.top
  8. # Created Time : 2017-10-23
  9. # Description: Linux system initialization
  10. ##############################################################
  11. . /etc/init.d/functions
  12. Ip=10.0.0.250
  13. Port=80
  14. ConfigDir=ks_config
  15. # Judge Http server is ok?
  16. PortNum=`nmap $Ip -p $Port 2>/dev/null|grep open|wc -l`
  17. [ $PortNum -lt 1 ] && {
  18. echo "Http server is bad!"
  19. exit 1
  20. }
  21. # Defined result function
  22. function Msg(){
  23. if [ $? -eq 0 ];then
  24. action "$1" /bin/true
  25. else
  26. action "$1" /bin/false
  27. fi
  28. }
  29. # Defined IP function
  30. function ConfigIP(){
  31. Suffix=`ifconfig eth0|awk -F "[ .]+" 'NR==2 {print $6}'`
  32. cat >/etc/sysconfig/network-scripts/ifcfg-eth0 <<-END
  33. DEVICE=eth0
  34. TYPE=Ethernet
  35. ONBOOT=yes
  36. NM_CONTROLLED=yes
  37. BOOTPROTO=none
  38. IPADDR=10.0.0.$Suffix
  39. PREFIX=24
  40. GATEWAY=10.0.0.254
  41. DNS1=223.5.5.5
  42. DEFROUTE=yes
  43. IPV4_FAILURE_FATAL=yes
  44. IPV6INIT=no
  45. NAME="System eth0"
  46. END
  47. Msg "config eth0"
  48. }
  49. # Defined Yum source Functions
  50. function yum(){
  51. YumDir=/etc/yum.repos.d
  52. [ -f "$YumDir/CentOS-Base.repo" ] && cp $YumDir/CentOS-Base.repo{,.ori}
  53. wget -O $YumDir/CentOS-Base.repo http://$Ip:$Port/$ConfigDir/CentOS-Base.repo &>/dev/null &&\
  54. wget -O $YumDir/epel.repo http://$Ip:$Port/$ConfigDir/epel.repo &>/dev/null &&\
  55. Msg "YUM source"
  56. }
  57. # Defined Hide the system version number Functions
  58. function HideVersion(){
  59. [ -f "/etc/issue" ] && >/etc/issue
  60. Msg "Hide issue"
  61. [ -f "/etc/issue.net" ] && > /etc/issue.net
  62. Msg "Hide issue.net"
  63. }
  64. # Defined OPEN FILES Functions
  65. function openfiles(){
  66. [ -f "/etc/security/limits.conf" ] && {
  67. echo '* - nofile 65535' >> /etc/security/limits.conf
  68. Msg "open files"
  69. }
  70. }
  71. # Defined Kernel parameters Functions
  72. function kernel(){
  73. KernelDir=/etc
  74. [ -f "$KernelDir/sysctl.conf" ] && /bin/mv $KernelDir/sysctl.conf{,.ori}
  75. wget -O $KernelDir/sysctl.conf http://$Ip:$Port/$ConfigDir/sysctl.conf &>/dev/null
  76. Msg "Kernel config"
  77. }
  78. # Defined System Startup Services Functions
  79. function boot(){
  80. for oldboy in `chkconfig --list|grep "3:on"|awk '{print $1}'|grep -vE "crond|network|rsyslog|sshd|sysstat"`
  81. do
  82. chkconfig $oldboy off
  83. done
  84. Msg "BOOT config"
  85. }
  86. # Defined Time Synchronization Functions
  87. function Time(){
  88. echo "#time sync by houzhaoshun at $(date +%F)" >>/var/spool/cron/root
  89. echo '*/5 * * * * /usr/sbin/ntpdate time.nist.gov &>/dev/null' >>/var/spool/cron/root
  90. Msg "Time Synchronization"
  91. }
  92. # Defined main Functions
  93. function main(){
  94. ConfigIP
  95. yum
  96. HideVersion
  97. openfiles
  98. kernel
  99. boot
  100. Time
  101. }
  102. main
  103. # rz上传CentOS-Base.repo、epel.repo、sysctl.conf

11. 整合编辑default配置文件

  1. [root@test ks_config]# cat /var/lib/tftpboot/pxelinux.cfg/default
  2. default ks
  3. prompt 0
  4. timeout 600
  5. display boot.msg
  6. menu background splash.jpg
  7. menu title Welcome to CentOS 6.9!
  8. menu color border 0 #ffffffff #00000000
  9. menu color sel 7 #ffffffff #ff000000
  10. menu color title 0 #ffffffff #00000000
  11. menu color tabmsg 0 #ffffffff #00000000
  12. menu color unsel 0 #ffffffff #00000000
  13. menu color hotsel 0 #ff000000 #ffffffff
  14. menu color hotkey 7 #ffffffff #ff000000
  15. menu color scrollbar 0 #ffffffff #00000000
  16. label linux
  17. menu label ^Install or upgrade an existing system
  18. menu default
  19. kernel vmlinuz
  20. append initrd=initrd.img
  21. label vesa
  22. menu label Install system with ^basic video driver
  23. kernel vmlinuz
  24. append initrd=initrd.img nomodeset
  25. label rescue
  26. menu label ^Rescue installed system
  27. kernel vmlinuz
  28. append initrd=initrd.img rescue
  29. label local
  30. menu label Boot from ^local drive
  31. localboot 0xffff
  32. label memtest86
  33. menu label ^Memory test
  34. kernel memtest
  35. append -
  36. label ks
  37. kernel vmlinuz
  38. append initrd=initrd.img ks=http://10.0.0.250/ks_config/CentOS-6.9-ks.cfg

11. 以上操作完成后将之前创建的虚拟机重启

然后你就可以取喝杯茶,等他一会就ok了