KickStart无人值守安装

PXE+DHCP+FTP+KickSsart

看完很多文档并动手安装,以下是我所理解的无人值守安装系统实现原理及过程:
执行PXE+KickStart 安装条件:1.DHCP服务器 2.TFTP服务器 3.KickStart 所生成的ks.cfg配置文件 4.一台存放系统安装文件的服务器,如NFS,HTTP,FTP等服务器 5.一个带有PXE支持网卡的主机
客户端支持PXE的电脑开机(预先打开网卡PXE功能,网络引导)pxe是一种引导方式---> DHCP给该PXE client分配一个IP地址,并指明tftp文件服务器 ---> 客户端会去tftp服务器上(/tftpboot 文件夹下面)下载到 pxelinux.0这样一个文件,并拿到pxelinux.cfg文件夹下的default配置文件 ---> 根据该配置文件加载内核等操作,同时该配置文件中可以指明ks.cfg文件的地址,这样实现全程无人值守安装!
1.tftp服务器配置
[root@localhost Server]# rpm -ivh tftp-server-*.rpm
[root@localhost ~]# cat /etc/xinetd.d/tftp
# default: off
# de.ion: The tftp server serves files using the trivial file transfer \
#       protocol.  The tftp protocol is often used to boot diskless \
#       workstations, download configuration files to network-aware printers, \
#       and to start the installation process for some operating systems.
service tftp
{
        socket_type             = dgram
        protocol                = udp
        wait                    = yes
        user                    = root
        server                  = /usr/sbin/in.tftpd
        server_args             = -s /tftpboot
         disable                 = no
        per_source              = 11
        cps                     = 100 2
        flags                   = IPv4
}
[root@localhost ~]# service xinetd restart
2.DHCP服务器配置
[root@localhost ~]#yum install dhcp*
[root@localhost ~]#cp /usr/share/doc/dhcp-3.*/dhcpd.conf.sample /etc/dhcpd.conf
[root@localhost ~]# cat /etc/dhcpd.conf
ddns-update-style interim;
ignore client-updates;
next-server 192.168.1.20;  #####PXE服务器IP地址
filename "pxelinux.0";
subnet 192.168.1.0 netmask 255.255.255.0 {
# --- default gateway
        option routers                  192.168.1.1;
        option subnet-mask              255.255.255.0;
#       option nis-domain               "domain.org";
#       option domain-name              "domain.org";
        option domain-name-servers      192.168.1.1;
        option time-offset              -18000; # Eastern Standard Time
#       option ntp-servers              192.168.1.1;
#       option netbios-name-servers     192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
#       option netbios-node-type 2;
        range dynamic-bootp 192.168.1.2 192.168.1.10;
        default-lease-time 21600;
        max-lease-time 43200;
 # we want the nameserver to appear at a fixed address
#       host ns {
#               next-server marvin.redhat.com;
#               hardware ethernet 12:34:56:78:AB:CD;
#               fixed-address 207.175.42.254;
#       }
}
[root@localhost ~]# /etc/init.d/dhcpd restart
3.准备相关文件
安装目录树,ks.cfg,initrd.img,pxelinux.0,pxelinux.cfg,vmlinuz
A--把安装目录树拷贝到一个共享目录中,例如,/var/ftp/pub下面,用ftp共享
[root@localhost ~]# yum install vsftpd
[root@localhost ~]# /etc/init.d/vsftpd restart
[root@localhost ~]# mount /dev/mount /mnt
[root@localhost ~]#  cp -rf /mnt/*  /var/ftp/pub
B--[root@localhost ~]#mkdir -p tftpboot
[root@localhost ~]# cp /usr/lib/syslinux/pxelinux.0 /tftpboot
[root@localhost ~]# cp /var/ftp/pub/images/pxeboot/{initrd.img,vmlinuz} /tftpboot
[root@localhost ~]# cp /var/ftp/pub/isolinux/*.msg  /tftpboot
[root@localhost ~]#mkdir /tftpboot/pxelinux.cfg
[root@localhost ~]# touch /tftpboot/pxelinux.cfg/default
[root@localhost ~]#cd /tftpboot/pxelinux.cfg
[root@localhost ~]# cp /var/ftp/pub/isolinux/isolinux.cfg  /tftpboot/pxelinux.cfg/default
4、配置KickStart
[root@localhost ~]#yum install system-config-kickstart
1在gnome环境下[root@localhost ~]#system-config-kickstart 对系统进行一些基本的配置如,选择时区,设置root密码,及安装选项
2下面选择ftp安装
3选择批量安装的分区信息,创建4个分区 /、/boot、/data、swap
4网络配置,使用静态分配地址
5软件包安装根据自己需求选择
6最后保存ks.cfg文件,把ks.cfg保存到/var/ftp/下( 修改ks.cfg文件添加一行 key --skip  一定要有这一行,用来跳过注册码输入的,不然会失败,本人在这里卡了好多次!)
7修改default文件内容:
[root@localhost ~]# cat /tftpboot/pxelinux.cfg/default
default linux
prompt 1
timeout 60
display boot.msg
label linux
  kernel vmlinuz
  append initrd=initrd.img text  ks=ftp://192.168.1.20/ks.cfg
6、关闭防火墙及SLinux
7、客户端引导安装

本文出自 “奔跑吧.少年” 博客,谢绝转载!

你可能感兴趣的:(kickstart,无人值守安装)