# # Copy the Install CDROM into the tftp server # # # Original File # ------------- # http://Linux-Boot.net/Boot/Network/PXE/Kernel/kernel.tftp.txt # # # # /etc/exports # ------------- # /tftpboot/Distro 192.168.1.1(ro) # # # # 01-Mar-05 amo Date-of-Birth # # # # Copy the pxeboot loader # ----------------------- # # # # http://Linux-Boot.net/Boot/Network/PXE/SysLinux/syslinux.For-PXE.txt # # cp /usr/local/src/syslinux/syslinux-3.07/pxelinux.0 /tftpboot # # # # Copy the kernel to tftp server # ------------------------------ # # # # but this is NOT a network boot image or NFS-boot image # # cp /boot/config-2.6.11 /tftpboot cp /boot/vmlinuz-2.6.11 /tftpboot cp /boot/System.map-2.6.11 /tftpboot cp /boot/initrd-2.6.11.gz /tftpboot # # # # ------------------------------------------------------ # Copy the boot Image from a Boot CD to the tftp server # ------------------------------------------------------ # # # # http://www.solarblue.net/docs/x31.htm # # mount rh-9-cdrom /mnt/cdrom cp -dpar /mnt/cdrom/images/pxeboot /tftpboot umount /mnt/cdrom # # # # # # http://www.davh.dk/archives/000013.html # # # mount /dev/cdrom /mnt/rh-8-cdrom # mount /mnt/rh-8-cdrom/images/bootnet.img -o loop bootnetdisk # cd bootnetdisk # cp -dpar splash.lss *.msg syslinux.cfg /tftpboot # cd ; umount bootnetdisk # # # ====================================== # Create /tftpboot/pxelinux.cfg/default # ====================================== # # # # http://Linux-Boot.net/Boot/Network/PXE/tftpboot/pxelinux.cfg/default # # # # # ========================================== # Rest of the TFTP boot Server Config files # ========================================== # # # # http://Linux-Boot.net/Boot/Network/PXE/tftpboot.Server-Howto.txt # # # # # End of file