How to Configure Kickstart Server Notes Printed

3
How to configure Kickstart Server Install & Configure PXE Boot Server with Kickstart 1] Install syslinux & tftp-server  [root@serv er ~]# yum install tftp-server 2] Enable syslinux at boot time [root@server ~]# vim /etc/xinetd.d/tftp edit the line no. 14 disable = no :wq 3] Start service [root@serv er ~]# service xinetd start [root@server ~]# chkconfig xientd on 4] Install FTP service [root@server ~]# yum install vsftpd 5] Start vsftpd [root@serv er ~]# service vsftpd start [root@server ~]# chkconfig vsftpd on 6] Install syslinux, require boot loader  [root@server ~]# yum install syslinux 7] Copy the needed files from syslinux to the tftpboot directory [root@server ~]# cp -rvp /usr/share/syslinux/{pxelinux.0,menu.c32,memdisk,mboot.c32,chain.c32} /var/lib/tftpboot/ 8] Create the directory for your PXE menus [root@server ~]# mkdir /var/lib/tftpboot/pxelinux.cfg 9] Create different directory for each PXE image [root@serv er ~]# mkdir p /var/lib/tftpboot/images/centos6 10] Mount CD/DVD and copy it to FTP public directory [root@server ~]# mount /dev/cdrom /mnt [root@server ~]# cp -rvp /mnt/* /var/ftp/pub/ [root@server ~]# umount /mnt 11] Copy vmlinuz and initrd.img from FTP public directory  [root@server ~]# cp -rvp /var/ftp/pub/images/pxeboot/{initrd.img,vmlinuz} /var/lib/tftpboot/images/centos6/ 12] Instal DHCP server  [root@server ~]# yum install dhcp

Transcript of How to Configure Kickstart Server Notes Printed

7/27/2019 How to Configure Kickstart Server Notes Printed

http://slidepdf.com/reader/full/how-to-configure-kickstart-server-notes-printed 1/3

7/27/2019 How to Configure Kickstart Server Notes Printed

http://slidepdf.com/reader/full/how-to-configure-kickstart-server-notes-printed 2/3

7/27/2019 How to Configure Kickstart Server Notes Printed

http://slidepdf.com/reader/full/how-to-configure-kickstart-server-notes-printed 3/3