PXE 자동 설치 CentOS 7

원본 링크:http://blog.51cto.com/11434894/2436497
1.무인 서버 설치 소프트웨어 구축(PXE+DHCP+TFTP+Kickstart+FTP)IP:172.168.1.200
시스템 버 전:CentOS Linux release 7.4.1708(Core)
selinux,firewalld 닫 기
[root@localhost ~]# axel -n 100 http://mirror.nsc.liu.se/centos-store/7.4.1708/isos/x86_64/CentOS-7-x86_64-Minimal-1708.iso
[root@localhost ~]# mount CentOS-7-x86_64-Minimal-1708.iso /media/
[root@localhost ~]# yum -y install vsftpd tftp tftp-server xinetd system-config-kickstart syslinux
2.프로필 수정
[root@localhost ~]# vim /etc/xinetd.d/tftp
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 ~]# cp /usr/share/doc/dhcp-4.2.5/dhcpd.conf.example /etc/dhcp/dhcpd.conf
[root@localhost ~]# > /etc/dhcp/dhcpd.conf 
[root@localhost ~]# vim /etc/dhcp/dhcpd.conf
subnet 172.168.1.0 netmask 255.255.255.0 {
range 172.168.1.100 172.168.1.199;
option domain-name-servers 172.168.1.1;
option domain-name "internal.example.org";
option routers 172.168.1.1;
option broadcast-address 172.168.1.255;
default-lease-time 600;
max-lease-time 7200;
next-server 172.168.1.200;
filename "pxelinux.0";
}

3.tftp 공유 파일 설정
[root@localhost ~]# mkdir /tftpboot[root@localhost ~]# mkdir /tftpboot/pxelinux.cfg[root@localhost ~]# cp /usr/share/syslinux/pxelinux.0 /tftpboot/[root@localhost ~]# cp /media/images/pxeboot/initrd.img /tftpboot/[root@localhost ~]# cp /media/images/pxeboot/vmlinuz /tftpboot/[root@localhost ~]# cp /media/isolinux/isolinux.cfg /tftpboot/pxelinux.cfg/default
default 을 수정 하고 운영 체 제 를 설치 하 는 방식 과 ks.cfg 파일 경 로 를 지정 합 니 다.
1 default linux\#첫 줄 을 이렇게 바 꾸 었 습 니 다.
64 append initrd=initrd.img inst.repo=ftp://172.168.1.200/pub inst.ks=ftp://172.168.1.200/ks.cfg \#64 줄 을 이렇게 수정 합 니 다.
넷 째,무인 소프트웨어 패키지 설정
[root@localhost yum.repos.d]# pwd/etc/yum.repos.d
[root@localhost yum.repos.d]# vim server.repo
[centos7]       

name=my-centos7

baseurl=file:///var/ftp/pub

enabled=1

gpgcheck=0

[root@localhost ~]# cd /var/ftp/pub/
[root@localhost ~]# cp -r /media/* .
[root@localhost ~]# cp anaconda-ks.cfg /var/ftp/ks.cfg
[root@localhost ~]# egrep -v "^#|^$" /var/ftp/ks.cfg
[root@localhost ~]# systemctl enable vsftpd xinetd dhcpd[root@localhost ~]# systemctl restart vsftpd xinetd dhcpd

좋은 웹페이지 즐겨찾기