# # Copy the Install CDROM into the tftp server # # # Original File # ------------- # http://Linux-Boot.net/Boot/Network/PXE/cdrom.tftp.txt # # # # /etc/exports # ------------- # /tftpboot/Distro 192.168.1.1(ro) # # # # 01-Mar-05 amo Date-of-Birth # # # # Copy just the boot Image 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 # # # # Copying the Entire Install CDs # ------------------------------ # mkdir /tftpboot/Distro # # mount CD1 cd /mnt/cdrom ; find . | cpio -dpmu /tftpboot/Distro cd ; umount /mnt/cdrom # mount CD2 cd /mnt/cdrom ; find . | cpio -dpmu /tftpboot/Distro cd ; umount /mnt/cdrom # mount CD3 cd /mnt/cdrom ; find . | cpio -dpmu /tftpboot/Distro cd ; umount /mnt/cdrom # # End of file