Linux下使用Kickstart自动化安装平台架构

Posted 不帅可以,但是必须要骚气

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下使用Kickstart自动化安装平台架构相关的知识,希望对你有一定的参考价值。

PXE工作于Client/Server的网络模式。在启动过程中,终端要求服务器分配IP地址,再用TFTP协议下载一个自动启动软件包到内存中执行。

要使用kickstart安装平台,包括完整的架构为:Kickstart+DHCP+NFS+TFTP+PXE,从架构可以看出,大概需要安装的服务,例如dhcp,tftp,nfs,kickstart/pxe等。

1,安装常用软件

yum -y install  dhcp* nfs*   tftp*

2,启动tftp服务(跟telnet类似)

vi /etc/xinetd/tftp


# default: off
# description: 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 /var/lib/tftpboot
        disable                 = no
        per_source              = 11
        cps                     = 100 2
        flags                   = IPv4
}



#将里边的yes改为no,这个文件中的我已经改掉了

3,TFTP+PXE配置

要实现远程安装系统,首先需要在TFTP目录下指定PXE内核模块及相关参数。

配置如下:

#挂载景象    
 mount /dev/cdrom  /mnt/

#拷贝一个文件到这个目录/var/lib/tftpboot/,如果没有的话需要提前安装
find / -name "pxelinux.0"
yum -y install syslinux 
find / -name "pxelinux.0"
cp  /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/




  

 









以上是关于Linux下使用Kickstart自动化安装平台架构的主要内容,如果未能解决你的问题,请参考以下文章

PXE + Kickstart 操作系统自动安装

Centos7 实战Kickstart 批量系统部署

Centos 6.* 下搭建pxe+dhcp+nfs+kickstart

centos6 系统安装 system-config-kickstart 工具

解决PXE安装Linux系统时kickstart自动识别硬盘问题

linux基础学习第二十一天之自动化安装linux系统(kickstart)